Work on test fixtures:
authorymh <ymh.work@gmail.com>
Tue, 07 Jun 2016 01:16:31 +0200
changeset 173 cf7b221238fd
parent 172 660570f13537
child 177 5e93f5e5f8f9
Work on test fixtures: - get rid both on bo and front of 2 fixtures files for documents - correct dl_fixtures to reflect this - upgrade mirage from 0.1.13 to 0.2.0 - download new version of documents fixtures including geo information
cms/app-client/.jshintrc
cms/app-client/app/mirage/config.js
cms/app-client/app/mirage/fixtures/bnf.js
cms/app-client/app/mirage/fixtures/details_documents.js
cms/app-client/app/mirage/fixtures/discourses.js
cms/app-client/app/mirage/fixtures/documents.js
cms/app-client/app/mirage/fixtures/languages.js
cms/app-client/app/mirage/fixtures/lexvo.js
cms/app-client/app/mirage/fixtures/themes.js
cms/app-client/app/mirage/fixtures/transcripts.js
cms/app-client/bower.json
cms/app-client/ember-cli-build.js
cms/app-client/mirage/config.js
cms/app-client/mirage/fixtures/bnfs.js
cms/app-client/mirage/fixtures/discourses.js
cms/app-client/mirage/fixtures/documents.js
cms/app-client/mirage/fixtures/languages.js
cms/app-client/mirage/fixtures/lexvos.js
cms/app-client/mirage/fixtures/themes.js
cms/app-client/mirage/fixtures/transcripts.js
cms/app-client/mirage/models/bnf.js
cms/app-client/mirage/models/discourse.js
cms/app-client/mirage/models/document.js
cms/app-client/mirage/models/language.js
cms/app-client/mirage/models/lexvo.js
cms/app-client/mirage/models/theme.js
cms/app-client/mirage/models/transcript.js
cms/app-client/mirage/serializers/application.js
cms/app-client/mirage/serializers/application.js.old
cms/app-client/mirage/serializers/discourse.js
cms/app-client/mirage/serializers/language.js
cms/app-client/mirage/serializers/sparse-document.js
cms/app-client/mirage/serializers/theme.js
cms/app-client/package.json
cms/app-client/tests/.jshintrc
cms/app-client/tests/helpers/destroy-app.js
common/corpus-common-addon/lib/commands/dl-fixtures.js
server/bo_client/server/fixtures/details_documents.js
server/bo_client/server/fixtures/documents.js
server/bo_client/server/index.js
server/bo_client/server/mocks/documents.js
--- a/cms/app-client/.jshintrc	Tue Jun 07 01:11:44 2016 +0200
+++ b/cms/app-client/.jshintrc	Tue Jun 07 01:16:31 2016 +0200
@@ -1,5 +1,6 @@
 {
   "predef": [
+    "server",
     "document",
     "window",
     "-Promise"
--- a/cms/app-client/app/mirage/config.js	Tue Jun 07 01:11:44 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,168 +0,0 @@
-import ENV from 'app-client/config/environment';
-import _ from 'lodash/lodash';
-import * as constants from 'corpus-common-addon/utils/constants';
-
-export default function() {
-
-    // These comments are here to help you get started. Feel free to delete them.
-
-    /*
-      Config (with defaults).
-
-      Note: these only affect routes defined *after* them!
-    */
-    // this.urlPrefix = '';    // make this `http://localhost:8080`, for example, if your API is on a different server
-    // this.namespace = '';    // make this `api`, for example, if your API is namespaced
-    this.namespace = ENV.baseURL.replace(/\/$/,'')+'/api/v1';
-    // this.timing = 400;      // delay for each request, automatically set to 0 during testing
-
-    this.get('/documents');
-    this.get('/documents/:id', function(db, request) {
-        var docId = decodeURIComponent(request.params.id);
-
-        return {
-            'document': db.details_documents.find(docId)
-        };
-    });
-
-    this.get('/documents/:id/transcript', function(db, request) {
-        var docId = decodeURIComponent(request.params.id);
-
-        return db.transcripts.find(docId).transcript;
-    });
-
-
-    this.get('/languages', function(db) {
-        var res = {};
-        _.each(db.languages, function(lang) {
-            res[lang.id] = lang.count;
-        });
-        return res;
-    });
-
-    this.get('/themes', function(db) {
-        var res = {};
-        _.each(db.themes, function(theme) {
-            res[theme.id] = {'label': theme.label, 'count': theme.count};
-        });
-        return res;
-    });
-
-    this.get('/discourses', function(db) {
-        var res = {};
-        _.each(db.discourses, function(discourse) {
-            res[discourse.id] = {'label': discourse.label, 'count': discourse.count};
-        });
-        return res;
-    });
-
-    this.get('/lexvo/:ids', function(db, request) {
-        var langIds = decodeURIComponent(request.params.ids);
-        var resMap = _.reduce(langIds.split(','), function(res, id) {
-            var fullId = id;
-            if(!_.startsWith(fullId, constants.LEXVO_BASE_URL)) {
-                fullId = constants.LEXVO_BASE_URL + id;
-            }
-            var lexvoRes = db.lexvo.find(fullId);
-            res[id] = lexvoRes?lexvoRes.name:null;
-            return res;
-        }, {});
-
-        return {
-            'lexvoids': resMap
-        };
-
-    });
-
-    this.get('/bnf/:ids', function(db, request) {
-
-        var bnfIds = decodeURIComponent(request.params.ids);
-        var resMap = _.reduce(bnfIds.split(','), function(res, id) {
-            var fullId = id;
-            if(_.startsWith(fullId, constants.BNF_BASE_URL)) {
-                fullId = fullId.slice(constants.BNF_BASE_URL.length);
-            } else if (_.startsWith(fullId, constants.BNF_ARK_BASE_URL)) {
-                fullId = fullId.slice(constants.BNF_ARK_BASE_URL.length);
-            } else if (!_.startsWith(fullId, constants.BNF_ARK_BASE_ID)) {
-                fullId = constants.BNF_ARK_BASE_ID + fullId;
-            }
-            var bnfRes = db.lexvo.find(fullId);
-            res[fullId] = bnfRes?bnfRes.label:null;
-            return res;
-        }, {});
-
-        return {
-            'bnfids': resMap
-        };
-
-    });
-
-    /*
-      Route shorthand cheatsheet
-    */
-    /*
-      GET shorthands
-
-      // Collections
-      this.get('/contacts');
-      this.get('/contacts', 'users');
-      this.get('/contacts', ['contacts', 'addresses']);
-
-      // Single objects
-      this.get('/contacts/:id');
-      this.get('/contacts/:id', 'user');
-      this.get('/contacts/:id', ['contact', 'addresses']);
-    */
-
-    /*
-      POST shorthands
-
-      this.post('/contacts');
-      this.post('/contacts', 'user'); // specify the type of resource to be created
-    */
-
-    /*
-      PUT shorthands
-
-      this.put('/contacts/:id');
-      this.put('/contacts/:id', 'user'); // specify the type of resource to be updated
-    */
-
-    /*
-      DELETE shorthands
-
-      this.del('/contacts/:id');
-      this.del('/contacts/:id', 'user'); // specify the type of resource to be deleted
-
-      // Single object + related resources. Make sure parent resource is first.
-      this.del('/contacts/:id', ['contact', 'addresses']);
-    */
-
-    /*
-      Function fallback. Manipulate data in the db via
-
-      - db.{collection}
-      - db.{collection}.find(id)
-      - db.{collection}.where(query)
-      - db.{collection}.update(target, attrs)
-      - db.{collection}.remove(target)
-
-      // Example: return a single object with related models
-      this.get('/contacts/:id', function(db, request) {
-      var contactId = +request.params.id;
-
-      return {
-      contact: db.contacts.find(contactId),
-      addresses: db.addresses.where({contact_id: contactId})
-      };
-      });
-
-    */
-}
-
-/*
-  You can optionally export a config that is only loaded during tests
-  export function testConfig() {
-
-  }
-*/
--- a/cms/app-client/app/mirage/fixtures/bnf.js	Tue Jun 07 01:11:44 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,6 +0,0 @@
-export default {
-  "ark:/12148/cb11965628b": "frères et soeurs",
-  "ark:/12148/cb11946662b": "parents et enfants",
-  "ark:/12148/cb119766112": "miséricorde",
-  "ark:/12148/cb11970755h": "repentir"
-};
--- a/cms/app-client/app/mirage/fixtures/details_documents.js	Tue Jun 07 01:11:44 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,3996 +0,0 @@
-export default [
-  {
-    "id": "11280.100/crdo-UVE_MOCIKA_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-UVE_MOCIKA_SOUND",
-    "title": "The two hermit crabs and the coconut crab",
-    "language": "http://lexvo.org/id/iso639-3/uve",
-    "modified": "2002-02-20",
-    "issued": "2010-10-23T00:08:27+02:00",
-    "publishers": [
-      "Laboratoire de langues et civilisations à tradition orale"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56614135",
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56614135",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Idakote, Félicien",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11958119h",
-      "http://ark.bnf.fr/ark:/12148/cb11953067w",
-      "http://lexvo.org/id/iso639-3/uve",
-      {
-        "value": "Fagauvea",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/moyse-faurie/uve/crdo-UVE_MOCIKA.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144187_MOCIKA_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144187_MOCIKA_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT2M35S",
-        "extent_ms": 155000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144187.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144187.wav",
-        "format": "audio/x-wav",
-        "extent": "PT2M35S",
-        "extent_ms": 155000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144187_MOCIKA_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144187_MOCIKA_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT2M35S",
-        "extent_ms": 155000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-CFPP2000_11_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-CFPP2000_11_SOUND",
-    "title": "Entretien de Louise Liotard et de Jeane Mallet 1",
-    "language": "http://lexvo.org/id/iso639-3/fra",
-    "modified": "2013-04-23T21:40:30+02:00",
-    "issued": "2013-04-23T21:40:30+02:00",
-    "publishers": [
-      "Langage et langues : description, théorisation, transmission"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/93752300",
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Pires, Mat",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": "Liotard, Louise",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/responder"
-      },
-      {
-        "name": "Mallet, Jeane",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/responder"
-      },
-      {
-        "name": "Verlinde, Agnès",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb12042429k",
-      "http://ark.bnf.fr/ark:/12148/cb12099148r",
-      "http://ark.bnf.fr/ark:/12148/cb13318415c",
-      {
-        "value": "anthropological_linguistics",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      {
-        "value": "phonetics",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/fra",
-      "http://ark.bnf.fr/ark:/12148/cb11948031w",
-      "http://ark.bnf.fr/ark:/12148/cb119344654",
-      "http://ark.bnf.fr/ark:/12148/cb122187674",
-      "http://ark.bnf.fr/ark:/12148/cb119336256",
-      "http://ark.bnf.fr/ark:/12148/cb13319003h",
-      {
-        "value": "general_linguistics",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://ark.bnf.fr/ark:/12148/cb13318355b",
-      "http://ark.bnf.fr/ark:/12148/cb12477289d",
-      {
-        "value": "text_and_corpus_linguistics",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      {
-        "value": "Français",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11940030m",
-      "http://ark.bnf.fr/ark:/12148/cb11974557m",
-      "http://ark.bnf.fr/ark:/12148/cb122368540",
-      {
-        "value": "phonology",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      {
-        "value": "semantics",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      {
-        "value": "sociolinguistics",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      {
-        "value": "syntax",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      {
-        "value": "typology",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://ark.bnf.fr/ark:/12148/cb119418302",
-      "http://ark.bnf.fr/ark:/12148/cb124795302",
-      {
-        "value": "applied_linguistics",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      {
-        "value": "discourse_analysis",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      {
-        "value": "historical_linguistics",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      {
-        "value": "language_documentation",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      {
-        "value": "morphology",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://ark.bnf.fr/ark:/12148/cb16971902d",
-      "http://ark.bnf.fr/ark:/12148/cb118967018",
-      "http://ark.bnf.fr/ark:/12148/cb11933911b",
-      "http://ark.bnf.fr/ark:/12148/cb11935295r",
-      "http://ark.bnf.fr/ark:/12148/cb119586741",
-      "http://ark.bnf.fr/ark:/12148/cb11962186d",
-      "http://ark.bnf.fr/ark:/12148/cb11978864p",
-      "http://ark.bnf.fr/ark:/12148/cb120114798",
-      "http://ark.bnf.fr/ark:/12148/cb12128999b",
-      "http://ark.bnf.fr/ark:/12148/cb13515252n"
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/cfpp2000/fra/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_transcriber"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/masters/344490.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/344490.wav",
-        "format": "audio/x-wav",
-        "extent": "PT45M52S",
-        "extent_ms": 2752000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/cfpp2000/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/cfpp2000/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT45M52S",
-        "extent_ms": 2752000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/cfpp2000/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.wav": {
-        "url": "http://cocoon.huma-num.fr/data/cfpp2000/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.wav",
-        "format": "audio/x-wav",
-        "extent": "PT45M52S",
-        "extent_ms": 2752000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-FRA_PK_IV_10_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-FRA_PK_IV_10_SOUND",
-    "title": "Le jour des petits (B)",
-    "language": "http://lexvo.org/id/iso639-3/fra",
-    "modified": "2007-11-06",
-    "issued": "2010-10-27T10:41:51+02:00",
-    "publishers": [
-      "Université Bordeaux III"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/14996188",
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "00",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": "01",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": "04",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": "111",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "29",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "33",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "41",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "60",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "le directeur",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "100",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "104",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "28",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "34",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "35",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "43",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "50",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "53",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": "31",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/participant"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/14996188",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "06",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "07",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "09",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "10",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "111",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "33",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "37",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "39",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "40",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "41",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "48",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "32",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "4M",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "11",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "14",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "35",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "44",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "46",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      "http://lexvo.org/id/iso639-3/fra",
-      "http://ark.bnf.fr/ark:/12148/cb119328694",
-      "http://ark.bnf.fr/ark:/12148/cb11936442z",
-      "http://ark.bnf.fr/ark:/12148/cb119767449",
-      {
-        "value": "Français",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb16140050j"
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/ploog/fra/crdo-FRA_PK_IV_09.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/145183_IV_10_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/145183_IV_10_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT13M41S",
-        "extent_ms": 821000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/145183.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/145183.wav",
-        "format": "audio/x-wav",
-        "extent": "PT13M41S",
-        "extent_ms": 821000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/145183_IV_10_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/145183_IV_10_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT13M41S",
-        "extent_ms": 821000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-FSL-CUC023_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-FSL-CUC023_SOUND",
-    "title": "Corpus LS-Colin sur plusieurs genres discursifs (Josette Bouchauveau et Henri Attia)",
-    "language": "http://lexvo.org/id/iso639-3/fra",
-    "modified": "2008-06-14",
-    "issued": "2015-02-03T21:13:34+01:00",
-    "publishers": [
-      "Structures formelles du langage",
-      "Centre d'analyses et de mathématiques sociales",
-      "Institut de recherche en informatique de Toulouse",
-      "Laboratoire d'Informatique pour la Mécanique et les Sciences de l'Ingénieur"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/197871692",
-        "role": "http://www.language-archives.org/OLAC/1.1/annotator"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/202009521",
-        "role": "http://www.language-archives.org/OLAC/1.1/compiler"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/74053259",
-        "role": "http://www.language-archives.org/OLAC/1.1/compiler"
-      },
-      {
-        "name": "Fiore, Sonia",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/compiler"
-      },
-      {
-        "name": "Fiore, Sonia",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/74053259",
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/74053259",
-        "role": "http://www.language-archives.org/OLAC/1.1/developer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/207122465",
-        "role": "http://www.language-archives.org/OLAC/1.1/developer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/197871692",
-        "role": "http://www.language-archives.org/OLAC/1.1/developer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/15630709",
-        "role": "http://www.language-archives.org/OLAC/1.1/developer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/202186280",
-        "role": "http://www.language-archives.org/OLAC/1.1/developer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/208930530",
-        "role": "http://www.language-archives.org/OLAC/1.1/developer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/310748152",
-        "role": "http://www.language-archives.org/OLAC/1.1/developer"
-      },
-      {
-        "name": "Choisier, Annick",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/developer"
-      },
-      {
-        "name": "Collet, Christophe",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/developer"
-      },
-      {
-        "name": "Dalle, Patrice",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/developer"
-      },
-      {
-        "name": "Jausions, Guillemette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/developer"
-      },
-      {
-        "name": "Lenseigne, Boris",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/developer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/74053259",
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/207122465",
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/197871692",
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/15630709",
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/202186280",
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/208930530",
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Choisier, Annick",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Collet, Christophe",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Dalle, Patrice",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Jausions, Guillemette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "LS-Colin",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Lenseigne, Boris",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Institut national des jeunes sourds",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/recorder"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/310748152",
-        "role": "http://www.language-archives.org/OLAC/1.1/recorder"
-      },
-      {
-        "name": "Attia, Henri",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Bouchauveau, Josette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/197871692",
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/197871692",
-        "role": "http://www.language-archives.org/OLAC/1.1/translator"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11932194d",
-      "http://ark.bnf.fr/ark:/12148/cb11931819b",
-      "http://ark.bnf.fr/ark:/12148/cb11932889r",
-      "http://lexvo.org/id/iso639-3/fsl",
-      {
-        "value": "Langue des signes française",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb119328694",
-      "http://ark.bnf.fr/ark:/12148/cb119677899",
-      "http://ark.bnf.fr/ark:/12148/cb12477289d",
-      "http://ark.bnf.fr/ark:/12148/cb133190265",
-      "http://ark.bnf.fr/ark:/12148/cb137450433"
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/cuxac/fsl/crdo-FSL-CUC023.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/cuxac/CUC023_low.mp4": {
-        "url": "http://cocoon.huma-num.fr/data/cuxac/CUC023_low.mp4",
-        "format": "video/mp4",
-        "extent": "PT27M08S",
-        "extent_ms": 1628000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/cuxac/masters/CUC023.mp4": {
-        "url": "http://cocoon.huma-num.fr/data/cuxac/masters/CUC023.mp4",
-        "format": "video/mp4",
-        "extent": "PT27M08S",
-        "extent_ms": 1628000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/cuxac/CUC023_low.ogg": {
-        "url": "http://cocoon.huma-num.fr/data/cuxac/CUC023_low.ogg",
-        "format": "video/ogg",
-        "extent": "PT27M08S",
-        "extent_ms": 1628000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND",
-    "title": "Tale of the hen and the rooster",
-    "language": "http://lexvo.org/id/iso639-3/fra",
-    "modified": "2004-12-09",
-    "issued": "2010-10-26T19:21:17+02:00",
-    "publishers": [
-      "Laboratoire de langues et civilisations à tradition orale"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/10920079",
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Phadom, Willion",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Typologie et universaux linguistiques",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/sponsor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/10920079",
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      },
-      {
-        "name": "Phadom, Willion",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/10920079",
-        "role": "http://www.language-archives.org/OLAC/1.1/translator"
-      },
-      {
-        "name": "Phadom, Willion",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/translator"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11936442z",
-      "http://lexvo.org/id/iso639-3/nee",
-      {
-        "value": "Nêlêmwa",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb119591110",
-      "http://ark.bnf.fr/ark:/12148/cb119759480"
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/bril/nee/crdo-NEE_KHIAAK_KO_AK.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/145138_KHIAAK_KO_AK_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/145138_KHIAAK_KO_AK_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT1M30S",
-        "extent_ms": 90000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/145138.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/145138.wav",
-        "format": "audio/x-wav",
-        "extent": "PT1M30S",
-        "extent_ms": 90000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/145138_KHIAAK_KO_AK_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/145138_KHIAAK_KO_AK_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT1M30S",
-        "extent_ms": 90000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-ESLO1_ENT_047",
-    "uri": "https://hdl.handle.net/11280.100/crdo-ESLO1_ENT_047",
-    "title": "ESLO1: entretien 047",
-    "language": "http://lexvo.org/id/iso639-3/fra",
-    "modified": "2014-11-04",
-    "issued": "2014-12-05T15:05:08+01:00",
-    "publishers": [
-      "Laboratoire Ligérien de Linguistique"
-    ],
-    "contributors": [
-      {
-        "name": "Laboratoire Ligérien de Linguistique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/200058210",
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/39685504",
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Sée-Gross, Catherine",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/200058210",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/39685504",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Sée-Gross, Catherine",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "BX11",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "047INC1",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "047INC2",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Baude, Marion",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://lexvo.org/id/iso639-3/fra",
-      "http://ark.bnf.fr/ark:/12148/cb135052099",
-      {
-        "value": "text_and_corpus_linguistics",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      {
-        "value": "Français",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11931498c",
-      "http://ark.bnf.fr/ark:/12148/cb11935508t",
-      "http://ark.bnf.fr/ark:/12148/cb13318380j",
-      "http://ark.bnf.fr/ark:/12148/cb11972068d",
-      "http://ark.bnf.fr/ark:/12148/cb119321514",
-      "http://ark.bnf.fr/ark:/12148/cb11967308c"
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/eslo/ESLO1_ENT_047_C.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_transcriber"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/eslo/ESLO1_ENT_047.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/eslo/ESLO1_ENT_047.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT1H2M59S",
-        "extent_ms": 3779000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/eslo/masters/ESLO1_ENT_047.wav": {
-        "url": "http://cocoon.huma-num.fr/data/eslo/masters/ESLO1_ENT_047.wav",
-        "format": "audio/x-wav",
-        "extent": "PT1H2M59S",
-        "extent_ms": 3779000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/eslo/ESLO1_ENT_047_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/eslo/ESLO1_ENT_047_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT1H2M59S",
-        "extent_ms": 3779000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-CAYCHAX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-CAYCHAX_SOUND",
-    "title": "ALLOc : Caychax : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:16:38+02:00",
-    "issued": "2010-10-25T18:16:38+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Alazet, Pierre",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-CAYCHAX.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144792_09-CAYCHAX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144792_09-CAYCHAX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M18S",
-        "extent_ms": 198000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144792.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144792.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M18S",
-        "extent_ms": 198000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144792_09-CAYCHAX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144792_09-CAYCHAX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT03M18S",
-        "extent_ms": 198000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-DUN_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-DUN_SOUND",
-    "title": "ALLOc : Dun : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:18:23+02:00",
-    "issued": "2010-10-25T18:18:23+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Tricoire, Raymonde",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-DUN.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144793_09-DUN_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144793_09-DUN_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M07S",
-        "extent_ms": 187000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144793.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144793.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M07S",
-        "extent_ms": 187000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144793_09-DUN_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144793_09-DUN_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT03M07S",
-        "extent_ms": 187000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND",
-    "title": "ALLOc : La Bastide-de-Lordat : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:20:08+02:00",
-    "issued": "2010-10-25T18:20:08+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Roumieu, Berthe",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-LABASTIDE-DE-LORDAT.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144794_09-LABASTIDE-DE-LORDAT_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144794_09-LABASTIDE-DE-LORDAT_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M46S",
-        "extent_ms": 166000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144794.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144794.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M46S",
-        "extent_ms": 166000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144794_09-LABASTIDE-DE-LORDAT_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144794_09-LABASTIDE-DE-LORDAT_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M46S",
-        "extent_ms": 166000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-LOUBENS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-LOUBENS_SOUND",
-    "title": "ALLOc : Loubens : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:21:23+02:00",
-    "issued": "2010-10-25T18:21:23+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Faure, Antoinette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-LOUBENS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144795_09-LOUBENS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144795_09-LOUBENS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M28S",
-        "extent_ms": 148000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144795.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144795.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M28S",
-        "extent_ms": 148000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144795_09-LOUBENS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144795_09-LOUBENS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M28S",
-        "extent_ms": 148000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-MERENS-LES-VALS_SOUND",
-    "title": "ALLOc : Mérens-les-Vals : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:22:24+02:00",
-    "issued": "2010-10-25T18:22:24+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Laurens, François",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-MERENS-LES-VALS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144796_09-MERENS-LES-VALS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144796_09-MERENS-LES-VALS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M45S",
-        "extent_ms": 165000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144796.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144796.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M45S",
-        "extent_ms": 165000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144796_09-MERENS-LES-VALS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144796_09-MERENS-LES-VALS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M45S",
-        "extent_ms": 165000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-MONTSEGUR_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-MONTSEGUR_SOUND",
-    "title": "ALLOc : Montségur : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:23:14+02:00",
-    "issued": "2010-10-25T18:23:14+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Couquet, Marius",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-MONTSEGUR.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144797_09-MONTSEGUR_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144797_09-MONTSEGUR_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M50S",
-        "extent_ms": 170000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144797.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144797.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M50S",
-        "extent_ms": 170000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144797_09-MONTSEGUR_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144797_09-MONTSEGUR_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M50S",
-        "extent_ms": 170000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-PRAYOLS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-PRAYOLS_SOUND",
-    "title": "ALLOc : Prayols : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:24:06+02:00",
-    "issued": "2010-10-25T18:24:06+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Laguerre, Aimé",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-PRAYOLS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144798_09-PRAYOLS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144798_09-PRAYOLS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M02S",
-        "extent_ms": 182000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144798.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144798.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M02S",
-        "extent_ms": 182000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144798_09-PRAYOLS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144798_09-PRAYOLS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT03M02S",
-        "extent_ms": 182000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-QUERIGUT_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-QUERIGUT_SOUND",
-    "title": "ALLOc : Quérigut : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:24:56+02:00",
-    "issued": "2010-10-25T18:24:56+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Tichadou, Joseph",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-QUERIGUT.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144799_09-QUERIGUT_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144799_09-QUERIGUT_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M51S",
-        "extent_ms": 171000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144799.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144799.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M51S",
-        "extent_ms": 171000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144799_09-QUERIGUT_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144799_09-QUERIGUT_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M51S",
-        "extent_ms": 171000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-SIGUER_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-SIGUER_SOUND",
-    "title": "ALLOc : Siguer : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:25:51+02:00",
-    "issued": "2010-10-25T18:25:51+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Caujolle, Joseph",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-SIGUER.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144800_09-SIGUER_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144800_09-SIGUER_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M57S",
-        "extent_ms": 177000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144800.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144800.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M57S",
-        "extent_ms": 177000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144800_09-SIGUER_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144800_09-SIGUER_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M57S",
-        "extent_ms": 177000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND",
-    "title": "ALLOc : Saint-Martin-d'Oydes : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:26:22+02:00",
-    "issued": "2010-10-25T18:26:22+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Ferriès, Marcel",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-ST-MARTIN-D-OYDES.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144801_09-ST-MARTIN-D-OYDES_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144801_09-ST-MARTIN-D-OYDES_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M05S",
-        "extent_ms": 185000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144801.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144801.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M05S",
-        "extent_ms": 185000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144801_09-ST-MARTIN-D-OYDES_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144801_09-ST-MARTIN-D-OYDES_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT03M05S",
-        "extent_ms": 185000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-SURBA_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-SURBA_SOUND",
-    "title": "ALLOc : Surba : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:26:42+02:00",
-    "issued": "2010-10-25T18:26:42+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Roques, Camille",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-SURBA.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144802_09-SURBA_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144802_09-SURBA_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M39S",
-        "extent_ms": 159000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144802.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144802.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M39S",
-        "extent_ms": 159000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144802_09-SURBA_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144802_09-SURBA_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M39S",
-        "extent_ms": 159000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-GRAMAZIE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-GRAMAZIE_SOUND",
-    "title": "ALLOc : Gramazie : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:27:39+02:00",
-    "issued": "2010-10-25T18:27:39+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Léger, Clémence",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "De Lorenzo, Linda",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-GRAMAZIE.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144803_11-GRAMAZIE_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144803_11-GRAMAZIE_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M27S",
-        "extent_ms": 147000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144803.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144803.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M27S",
-        "extent_ms": 147000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144803_11-GRAMAZIE_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144803_11-GRAMAZIE_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M27S",
-        "extent_ms": 147000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-MOLLEVILLE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-MOLLEVILLE_SOUND",
-    "title": "ALLOc : Molleville : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:28:06+02:00",
-    "issued": "2010-10-25T18:28:06+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Cathala, Auguste",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "De Lorenzo, Linda",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-MOLLEVILLE.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144804_11-MOLLEVILLE_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144804_11-MOLLEVILLE_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M53S",
-        "extent_ms": 173000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144804.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144804.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M53S",
-        "extent_ms": 173000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144804_11-MOLLEVILLE_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144804_11-MOLLEVILLE_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M53S",
-        "extent_ms": 173000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-PUIVERT_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-PUIVERT_SOUND",
-    "title": "ALLOc : Puivert : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:28:40+02:00",
-    "issued": "2010-10-25T18:28:40+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Maugard, Marie",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "De Lorenzo, Linda",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-PUIVERT.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144805_11-PUIVERT_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144805_11-PUIVERT_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M35S",
-        "extent_ms": 155000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144805.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144805.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M35S",
-        "extent_ms": 155000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144805_11-PUIVERT_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144805_11-PUIVERT_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M35S",
-        "extent_ms": 155000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-RIBOUISSE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-RIBOUISSE_SOUND",
-    "title": "ALLOc : Ribouisse : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:29:32+02:00",
-    "issued": "2010-10-25T18:29:32+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Dournès, Lucien",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "De Lorenzo, Linda",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-RIBOUISSE.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144806_11-RIBOUISSE_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144806_11-RIBOUISSE_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M11S",
-        "extent_ms": 191000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144806.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144806.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M11S",
-        "extent_ms": 191000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144806_11-RIBOUISSE_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144806_11-RIBOUISSE_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT03M11S",
-        "extent_ms": 191000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND",
-    "title": "ALLOc : Sonnac-sur-l'Hers : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:29:56+02:00",
-    "issued": "2010-10-25T18:29:56+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Dumons, Marcellin",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "De Lorenzo, Linda",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112"
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-SONNAC-SUR-L-HERS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144807_11-SONNAC-SUR-L-HERS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144807_11-SONNAC-SUR-L-HERS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M27S",
-        "extent_ms": 147000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144807.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144807.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M27S",
-        "extent_ms": 147000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144807_11-SONNAC-SUR-L-HERS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144807_11-SONNAC-SUR-L-HERS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M27S",
-        "extent_ms": 147000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND",
-    "title": "ALLOc : Saint-Martin-Lalande : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:30:27+02:00",
-    "issued": "2010-10-25T18:30:27+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Hugonnet, Pierre",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "De Lorenzo, Linda",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-ST-MARTIN-LALANDE.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144808_11-ST-MARTIN-LALANDE_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144808_11-ST-MARTIN-LALANDE_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01M59S",
-        "extent_ms": 119000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144808.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144808.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01M59S",
-        "extent_ms": 119000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144808_11-ST-MARTIN-LALANDE_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144808_11-ST-MARTIN-LALANDE_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT01M59S",
-        "extent_ms": 119000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-AUZITS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-AUZITS_SOUND",
-    "title": "ALLOc : Auzits : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:31:22+02:00",
-    "issued": "2010-10-25T18:31:22+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Constans, André",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Bosc, Marie-Sophie",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-AUZITS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144810_12-AUZITS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144810_12-AUZITS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M19S",
-        "extent_ms": 199000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144810.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144810.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M19S",
-        "extent_ms": 199000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144810_12-AUZITS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144810_12-AUZITS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT03M19S",
-        "extent_ms": 199000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-JOUELS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-JOUELS_SOUND",
-    "title": "ALLOc : Jouels : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:31:21+02:00",
-    "issued": "2010-10-25T18:31:21+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Bayol, Maria",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Bosc, Marie-Sophie",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-JOUELS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144809_12-JOUELS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144809_12-JOUELS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M33S",
-        "extent_ms": 153000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144809.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144809.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M33S",
-        "extent_ms": 153000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144809_12-JOUELS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144809_12-JOUELS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M33S",
-        "extent_ms": 153000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-LACASSAGNE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-LACASSAGNE_SOUND",
-    "title": "ALLOc : Lacassagne : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:31:43+02:00",
-    "issued": "2010-10-25T18:31:43+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Andrieu, Honoré",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Bosc, Marie-Sophie",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-LACASSAGNE.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144811_12-LACASSAGNE_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144811_12-LACASSAGNE_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M52S",
-        "extent_ms": 172000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144811.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144811.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M52S",
-        "extent_ms": 172000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144811_12-LACASSAGNE_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144811_12-LACASSAGNE_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M52S",
-        "extent_ms": 172000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-LANUEJOULS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-LANUEJOULS_SOUND",
-    "title": "ALLOc : Lanuéjouls : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:32:16+02:00",
-    "issued": "2010-10-25T18:32:16+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Garric, Raymond",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Bosc, Marie-Sophie",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-LANUEJOULS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144812_12-LANUEJOULS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144812_12-LANUEJOULS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M34S",
-        "extent_ms": 154000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144812.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144812.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M34S",
-        "extent_ms": 154000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144812_12-LANUEJOULS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144812_12-LANUEJOULS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M34S",
-        "extent_ms": 154000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC1LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC1LEX_SOUND",
-    "title": "ALLOc : Marnac",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:33:17+02:00",
-    "issued": "2010-10-25T18:33:17+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/17256845",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Gibily, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Rouchy, Armand",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144813_12-MARNAC1LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144813_12-MARNAC1LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H05M27S",
-        "extent_ms": 3927000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144813.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144813.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H05M27S",
-        "extent_ms": 3927000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144813_12-MARNAC1LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144813_12-MARNAC1LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT01H05M27S",
-        "extent_ms": 3927000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC2LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC2LEX_SOUND",
-    "title": "ALLOc : Marnac-2",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:33:43+02:00",
-    "issued": "2010-10-25T18:33:43+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/17256845",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Gibily, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Rouchy, Armand",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144814_12-MARNAC2LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144814_12-MARNAC2LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H08M08S",
-        "extent_ms": 7688000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144814.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144814.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H08M08S",
-        "extent_ms": 7688000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144814_12-MARNAC2LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144814_12-MARNAC2LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02H08M08S",
-        "extent_ms": 7688000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC3LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC3LEX_SOUND",
-    "title": "ALLOc : Marnac-3",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:33:51+02:00",
-    "issued": "2010-10-25T18:33:51+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/17256845",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Gibily, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Rouchy, Armand",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144815_12-MARNAC3LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144815_12-MARNAC3LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H56M35S",
-        "extent_ms": 6995000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144815.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144815.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H56M35S",
-        "extent_ms": 6995000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144815_12-MARNAC3LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144815_12-MARNAC3LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT01H56M35S",
-        "extent_ms": 6995000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC4MORPHO_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC4MORPHO_SOUND",
-    "title": "ALLOc : Marnac-4",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:34:19+02:00",
-    "issued": "2010-10-25T18:34:19+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/17256845",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Gibily, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Rouchy, Armand",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144816_12-MARNAC4MORPHO_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144816_12-MARNAC4MORPHO_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT11M23S",
-        "extent_ms": 683000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144816.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144816.wav",
-        "format": "audio/x-wav",
-        "extent": "PT11M23S",
-        "extent_ms": 683000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144816_12-MARNAC4MORPHO_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144816_12-MARNAC4MORPHO_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT11M23S",
-        "extent_ms": 683000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC5MORPHO_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC5MORPHO_SOUND",
-    "title": "ALLOc : Marnac-5",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:35:45+02:00",
-    "issued": "2010-10-25T18:35:45+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/17256845",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Gibily, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Rouchy, Armand",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "morphology",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144817_12-MARNAC5MORPHO_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144817_12-MARNAC5MORPHO_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H02M25S",
-        "extent_ms": 3745000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144817.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144817.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H02M25S",
-        "extent_ms": 3745000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144817_12-MARNAC5MORPHO_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144817_12-MARNAC5MORPHO_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT01H02M25S",
-        "extent_ms": 3745000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN1LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN1LEX_SOUND",
-    "title": "ALLOc : Mayran",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:36:22+02:00",
-    "issued": "2010-10-25T18:36:22+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Boutary Jeannette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Boutary Simon",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Lacombe Ruben",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Clément",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Léa",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Pierre",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144818_12-MAYRAN1LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144818_12-MAYRAN1LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H26M21S",
-        "extent_ms": 5181000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144818.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144818.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H26M21S",
-        "extent_ms": 5181000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144818_12-MAYRAN1LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144818_12-MAYRAN1LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT01H26M21S",
-        "extent_ms": 5181000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN2LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN2LEX_SOUND",
-    "title": "ALLOc : Mayran",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:36:52+02:00",
-    "issued": "2010-10-25T18:36:52+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Boutary Jeannette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Boutary Simon",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Lacombe Ruben",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Clément",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Léa",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Pierre",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144819_12-MAYRAN2LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144819_12-MAYRAN2LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H06M51S",
-        "extent_ms": 7611000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144819.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144819.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H06M51S",
-        "extent_ms": 7611000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144819_12-MAYRAN2LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144819_12-MAYRAN2LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02H06M51S",
-        "extent_ms": 7611000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN3LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN3LEX_SOUND",
-    "title": "ALLOc : Mayran-3",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:36:54+02:00",
-    "issued": "2010-10-25T18:36:54+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Boutary Jeannette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Boutary Simon",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Lacombe Ruben",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Clément",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Léa",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Pierre",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144820_12-MAYRAN3LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144820_12-MAYRAN3LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H06M57S",
-        "extent_ms": 7617000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144820.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144820.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H06M57S",
-        "extent_ms": 7617000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144820_12-MAYRAN3LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144820_12-MAYRAN3LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02H06M57S",
-        "extent_ms": 7617000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN4LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN4LEX_SOUND",
-    "title": "ALLOc : Mayran-4",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:37:07+02:00",
-    "issued": "2010-10-25T18:37:07+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Boutary Jeannette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Boutary Simon",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Lacombe Ruben",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Clément",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Léa",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Pierre",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144821_12-MAYRAN4LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144821_12-MAYRAN4LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H06M55S",
-        "extent_ms": 7615000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144821.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144821.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H06M55S",
-        "extent_ms": 7615000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144821_12-MAYRAN4LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144821_12-MAYRAN4LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02H06M55S",
-        "extent_ms": 7615000,
-        "master": false
-      }
-    }
-  }
-];
\ No newline at end of file
--- a/cms/app-client/app/mirage/fixtures/discourses.js	Tue Jun 07 01:11:44 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,102 +0,0 @@
-export default [
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12481481z",
-    "count": 2524,
-    "label": "dialogue"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932135w",
-    "count": 1882,
-    "label": "entretiens"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11955657q",
-    "count": 857,
-    "label": "lecture à haute voix"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119317924",
-    "count": 653,
-    "label": "conversation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119829234",
-    "count": 629,
-    "label": "questionnaires"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11937212q",
-    "count": 343,
-    "label": "narration"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11946100d",
-    "count": 228,
-    "label": "paradigme (épistémologie)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119341539",
-    "count": 222,
-    "label": "discussion"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11976851v",
-    "count": 219,
-    "label": "récits personnels"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936159v",
-    "count": 110,
-    "label": "contes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13319048g",
-    "count": 68,
-    "label": "chansons"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11949715t",
-    "count": 43,
-    "label": "réunions"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119783362",
-    "count": 36,
-    "label": "bavardage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931724n",
-    "count": 23,
-    "label": "congrès et conférences"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11957378b",
-    "count": 12,
-    "label": "musique instrumentale"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119834877",
-    "count": 11,
-    "label": "récitation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12083158d",
-    "count": 11,
-    "label": "argumentation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11948542x",
-    "count": 7,
-    "label": "discours"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120502737",
-    "count": 2,
-    "label": "enquêtes linguistiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11953414d",
-    "count": 1,
-    "label": "fables"
-  }
-];
\ No newline at end of file
--- a/cms/app-client/app/mirage/fixtures/documents.js	Tue Jun 07 01:11:44 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,290 +0,0 @@
-export default [
-  {
-    "id": "11280.100/crdo-UVE_MOCIKA_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-UVE_MOCIKA_SOUND",
-    "title": "The two hermit crabs and the coconut crab",
-    "language": "http://lexvo.org/id/iso639-3/uve",
-    "modified": "2002-02-20",
-    "issued": "2010-10-23T00:08:27+02:00"
-  },
-  {
-    "id": "11280.100/crdo-CFPP2000_11_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-CFPP2000_11_SOUND",
-    "title": "Entretien de Louise Liotard et de Jeane Mallet 1",
-    "language": "http://lexvo.org/id/iso639-3/fra",
-    "modified": "2013-04-23T21:40:30+02:00",
-    "issued": "2013-04-23T21:40:30+02:00"
-  },
-  {
-    "id": "11280.100/crdo-FRA_PK_IV_10_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-FRA_PK_IV_10_SOUND",
-    "title": "Le jour des petits (B)",
-    "language": "http://lexvo.org/id/iso639-3/fra",
-    "modified": "2007-11-06",
-    "issued": "2010-10-27T10:41:51+02:00"
-  },
-  {
-    "id": "11280.100/crdo-FSL-CUC023_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-FSL-CUC023_SOUND",
-    "title": "Corpus LS-Colin sur plusieurs genres discursifs (Josette Bouchauveau et Henri Attia)",
-    "language": "http://lexvo.org/id/iso639-3/fra",
-    "modified": "2008-06-14",
-    "issued": "2015-02-03T21:13:34+01:00"
-  },
-  {
-    "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND",
-    "title": "Tale of the hen and the rooster",
-    "language": "http://lexvo.org/id/iso639-3/fra",
-    "modified": "2004-12-09",
-    "issued": "2010-10-26T19:21:17+02:00"
-  },
-  {
-    "id": "11280.100/crdo-ESLO1_ENT_047",
-    "uri": "https://hdl.handle.net/11280.100/crdo-ESLO1_ENT_047",
-    "title": "ESLO1: entretien 047",
-    "language": "http://lexvo.org/id/iso639-3/fra",
-    "modified": "2014-11-04",
-    "issued": "2014-12-05T15:05:08+01:00"
-  },
-  {
-    "id": "11280.100/crdo-09-CAYCHAX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-CAYCHAX_SOUND",
-    "title": "ALLOc : Caychax : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:16:38+02:00",
-    "issued": "2010-10-25T18:16:38+02:00"
-  },
-  {
-    "id": "11280.100/crdo-09-DUN_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-DUN_SOUND",
-    "title": "ALLOc : Dun : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:18:23+02:00",
-    "issued": "2010-10-25T18:18:23+02:00"
-  },
-  {
-    "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND",
-    "title": "ALLOc : La Bastide-de-Lordat : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:20:08+02:00",
-    "issued": "2010-10-25T18:20:08+02:00"
-  },
-  {
-    "id": "11280.100/crdo-09-LOUBENS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-LOUBENS_SOUND",
-    "title": "ALLOc : Loubens : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:21:23+02:00",
-    "issued": "2010-10-25T18:21:23+02:00"
-  },
-  {
-    "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-MERENS-LES-VALS_SOUND",
-    "title": "ALLOc : Mérens-les-Vals : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:22:24+02:00",
-    "issued": "2010-10-25T18:22:24+02:00"
-  },
-  {
-    "id": "11280.100/crdo-09-MONTSEGUR_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-MONTSEGUR_SOUND",
-    "title": "ALLOc : Montségur : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:23:14+02:00",
-    "issued": "2010-10-25T18:23:14+02:00"
-  },
-  {
-    "id": "11280.100/crdo-09-PRAYOLS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-PRAYOLS_SOUND",
-    "title": "ALLOc : Prayols : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:24:06+02:00",
-    "issued": "2010-10-25T18:24:06+02:00"
-  },
-  {
-    "id": "11280.100/crdo-09-QUERIGUT_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-QUERIGUT_SOUND",
-    "title": "ALLOc : Quérigut : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:24:56+02:00",
-    "issued": "2010-10-25T18:24:56+02:00"
-  },
-  {
-    "id": "11280.100/crdo-09-SIGUER_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-SIGUER_SOUND",
-    "title": "ALLOc : Siguer : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:25:51+02:00",
-    "issued": "2010-10-25T18:25:51+02:00"
-  },
-  {
-    "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND",
-    "title": "ALLOc : Saint-Martin-d'Oydes : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:26:22+02:00",
-    "issued": "2010-10-25T18:26:22+02:00"
-  },
-  {
-    "id": "11280.100/crdo-09-SURBA_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-SURBA_SOUND",
-    "title": "ALLOc : Surba : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:26:42+02:00",
-    "issued": "2010-10-25T18:26:42+02:00"
-  },
-  {
-    "id": "11280.100/crdo-11-GRAMAZIE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-GRAMAZIE_SOUND",
-    "title": "ALLOc : Gramazie : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:27:39+02:00",
-    "issued": "2010-10-25T18:27:39+02:00"
-  },
-  {
-    "id": "11280.100/crdo-11-MOLLEVILLE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-MOLLEVILLE_SOUND",
-    "title": "ALLOc : Molleville : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:28:06+02:00",
-    "issued": "2010-10-25T18:28:06+02:00"
-  },
-  {
-    "id": "11280.100/crdo-11-PUIVERT_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-PUIVERT_SOUND",
-    "title": "ALLOc : Puivert : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:28:40+02:00",
-    "issued": "2010-10-25T18:28:40+02:00"
-  },
-  {
-    "id": "11280.100/crdo-11-RIBOUISSE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-RIBOUISSE_SOUND",
-    "title": "ALLOc : Ribouisse : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:29:32+02:00",
-    "issued": "2010-10-25T18:29:32+02:00"
-  },
-  {
-    "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND",
-    "title": "ALLOc : Sonnac-sur-l'Hers : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:29:56+02:00",
-    "issued": "2010-10-25T18:29:56+02:00"
-  },
-  {
-    "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND",
-    "title": "ALLOc : Saint-Martin-Lalande : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:30:27+02:00",
-    "issued": "2010-10-25T18:30:27+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-AUZITS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-AUZITS_SOUND",
-    "title": "ALLOc : Auzits : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:31:22+02:00",
-    "issued": "2010-10-25T18:31:22+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-JOUELS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-JOUELS_SOUND",
-    "title": "ALLOc : Jouels : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:31:21+02:00",
-    "issued": "2010-10-25T18:31:21+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-LACASSAGNE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-LACASSAGNE_SOUND",
-    "title": "ALLOc : Lacassagne : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:31:43+02:00",
-    "issued": "2010-10-25T18:31:43+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-LANUEJOULS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-LANUEJOULS_SOUND",
-    "title": "ALLOc : Lanuéjouls : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:32:16+02:00",
-    "issued": "2010-10-25T18:32:16+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC1LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC1LEX_SOUND",
-    "title": "ALLOc : Marnac",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:33:17+02:00",
-    "issued": "2010-10-25T18:33:17+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC2LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC2LEX_SOUND",
-    "title": "ALLOc : Marnac-2",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:33:43+02:00",
-    "issued": "2010-10-25T18:33:43+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC3LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC3LEX_SOUND",
-    "title": "ALLOc : Marnac-3",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:33:51+02:00",
-    "issued": "2010-10-25T18:33:51+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC4MORPHO_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC4MORPHO_SOUND",
-    "title": "ALLOc : Marnac-4",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:34:19+02:00",
-    "issued": "2010-10-25T18:34:19+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC5MORPHO_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC5MORPHO_SOUND",
-    "title": "ALLOc : Marnac-5",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:35:45+02:00",
-    "issued": "2010-10-25T18:35:45+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN1LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN1LEX_SOUND",
-    "title": "ALLOc : Mayran",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:36:22+02:00",
-    "issued": "2010-10-25T18:36:22+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN2LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN2LEX_SOUND",
-    "title": "ALLOc : Mayran",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:36:52+02:00",
-    "issued": "2010-10-25T18:36:52+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN3LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN3LEX_SOUND",
-    "title": "ALLOc : Mayran-3",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:36:54+02:00",
-    "issued": "2010-10-25T18:36:54+02:00"
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN4LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN4LEX_SOUND",
-    "title": "ALLOc : Mayran-4",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:37:07+02:00",
-    "issued": "2010-10-25T18:37:07+02:00"
-  }
-];
\ No newline at end of file
--- a/cms/app-client/app/mirage/fixtures/languages.js	Tue Jun 07 01:11:44 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,43 +0,0 @@
-export default [
-  { 'id': "http://lexvo.org/id/iso639-3/fra", 'count': 1559 },
-  { 'id': "http://lexvo.org/id/iso639-3/gsw", 'count': 851 },
-  { 'id': "http://lexvo.org/id/iso639-3/bre", 'count': 403 },
-  { 'id': "http://lexvo.org/id/iso639-3/oci", 'count': 344 },
-  { 'id': "http://lexvo.org/id/iso639-3/djk", 'count': 93 },
-  { 'id': "http://lexvo.org/id/iso639-3/lad", 'count': 77 },
-  { 'id': "http://lexvo.org/id/iso639-3/pcd", 'count': 75 },
-  { 'id': "http://lexvo.org/id/iso639-3/frp", 'count': 60 },
-  { 'id': "http://lexvo.org/id/iso639-3/und", 'count': 45 },
-  { 'id': "http://lexvo.org/id/iso639-3/cos", 'count': 40 },
-  { 'id': "http://lexvo.org/id/iso639-3/fsl", 'count': 40 },
-  { 'id': "http://lexvo.org/id/iso639-3/rcf", 'count': 32 },
-  { 'id': "http://lexvo.org/id/iso639-3/fud", 'count': 23 },
-  { 'id': "http://lexvo.org/id/iso639-3/wls", 'count': 20 },
-  { 'id': "http://lexvo.org/id/iso639-3/lsy", 'count': 18 },
-  { 'id': "http://lexvo.org/id/iso639-3/gcf", 'count': 15 },
-  { 'id': "http://lexvo.org/id/iso639-3/nem", 'count': 15 },
-  { 'id': "http://lexvo.org/id/iso639-3/uve", 'count': 13 },
-  { 'id': "http://lexvo.org/id/iso639-3/ane", 'count': 12 },
-  { 'id': "http://lexvo.org/id/iso639-3/axx", 'count': 9 },
-  { 'id': "http://lexvo.org/id/iso639-3/cam", 'count': 9 },
-  { 'id': "http://lexvo.org/id/iso639-3/eng", 'count': 8 },
-  { 'id': "http://lexvo.org/id/iso639-3/iai", 'count': 8 },
-  { 'id': "http://lexvo.org/id/iso639-3/kab", 'count': 8 },
-  { 'id': "http://lexvo.org/id/iso639-3/plu", 'count': 6 },
-  { 'id': "http://lexvo.org/id/iso639-3/bwa", 'count': 4 },
-  { 'id': "http://lexvo.org/id/iso639-3/car", 'count': 4 },
-  { 'id': "http://lexvo.org/id/iso639-3/gcr", 'count': 4 },
-  { 'id': "http://lexvo.org/id/iso639-3/nee", 'count': 4 },
-  { 'id': "http://lexvo.org/id/iso639-3/ell", 'count': 3 },
-  { 'id': "http://lexvo.org/id/iso639-3/deu", 'count': 2 },
-  { 'id': "http://lexvo.org/id/iso639-3/dhv", 'count': 2 },
-  { 'id': "http://lexvo.org/id/iso639-3/nen", 'count': 2 },
-  { 'id': "http://lexvo.org/id/iso639-3/spa", 'count': 2 },
-  { 'id': "http://lexvo.org/id/iso639-3/srn", 'count': 2 },
-  { 'id': "http://lexvo.org/id/iso639-3/swb", 'count': 2 },
-  { 'id': "http://lexvo.org/id/iso639-3/tur", 'count': 2 },
-  { 'id': "http://lexvo.org/id/iso639-3/aji", 'count': 1 },
-  { 'id': "http://lexvo.org/id/iso639-3/ita", 'count': 1 },
-  { 'id': "http://lexvo.org/id/iso639-3/kdk", 'count': 1 },
-  { 'id': "http://lexvo.org/id/iso639-3/nua", 'count': 1 }
-];
--- a/cms/app-client/app/mirage/fixtures/lexvo.js	Tue Jun 07 01:11:44 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,43 +0,0 @@
-export default [
-    { 'id': "http://lexvo.org/id/iso639-3/fra", 'name': "français" },
-    { 'id': "http://lexvo.org/id/iso639-3/gsw", 'name': "alémanique" },
-    { 'id': "http://lexvo.org/id/iso639-3/oci", 'name': "occitan" },
-    { 'id': "http://lexvo.org/id/iso639-3/bre", 'name': "breton" },
-    { 'id': "http://lexvo.org/id/iso639-3/djk", 'name': "ndjuka" },
-    { 'id': "http://lexvo.org/id/iso639-3/lad", 'name': "ladino" },
-    { 'id': "http://lexvo.org/id/iso639-3/pcd", 'name': "picard" },
-    { 'id': "http://lexvo.org/id/iso639-3/frp", 'name': "arpitan" },
-    { 'id': "http://lexvo.org/id/iso639-3/und", 'name': "indéterminé" },
-    { 'id': "http://lexvo.org/id/iso639-3/cos", 'name': "corse" },
-    { 'id': "http://lexvo.org/id/iso639-3/fsl", 'name': "langue des signes française" },
-    { 'id': "http://lexvo.org/id/iso639-3/rcf", 'name': "créole réunionnais" },
-    { 'id': "http://lexvo.org/id/iso639-3/fud", 'name': "futunien" },
-    { 'id': "http://lexvo.org/id/iso639-3/wls", 'name': "wallisien" },
-    { 'id': "http://lexvo.org/id/iso639-3/lsy", 'name': "mauritian sign language" },
-    { 'id': "http://lexvo.org/id/iso639-3/gcf", 'name': "guadeloupean creole french" },
-    { 'id': "http://lexvo.org/id/iso639-3/nem", 'name': "nemi" },
-    { 'id': "http://lexvo.org/id/iso639-3/uve", 'name': "fagauvea" },
-    { 'id': "http://lexvo.org/id/iso639-3/ane", 'name': "xârâcùù" },
-    { 'id': "http://lexvo.org/id/iso639-3/axx", 'name': "xaragure" },
-    { 'id': "http://lexvo.org/id/iso639-3/cam", 'name': "cèmuhî" },
-    { 'id': "http://lexvo.org/id/iso639-3/eng", 'name': "anglais" },
-    { 'id': "http://lexvo.org/id/iso639-3/iai", 'name': "iaai" },
-    { 'id': "http://lexvo.org/id/iso639-3/kab", 'name': "kabyle" },
-    { 'id': "http://lexvo.org/id/iso639-3/plu", 'name': "palikur" },
-    { 'id': "http://lexvo.org/id/iso639-3/bwa", 'name': "bwatoo" },
-    { 'id': "http://lexvo.org/id/iso639-3/car", 'name': "karib" },
-    { 'id': "http://lexvo.org/id/iso639-3/gcr", 'name': "créole guyanais" },
-    { 'id': "http://lexvo.org/id/iso639-3/nee", 'name': "nêlêmwa-nixumwak" },
-    { 'id': "http://lexvo.org/id/iso639-3/ell", 'name': "grec" },
-    { 'id': "http://lexvo.org/id/iso639-3/deu", 'name': "allemand" },
-    { 'id': "http://lexvo.org/id/iso639-3/dhv", 'name': "drehu" },
-    { 'id': "http://lexvo.org/id/iso639-3/nen", 'name': "nengone" },
-    { 'id': "http://lexvo.org/id/iso639-3/spa", 'name': "espagnol" },
-    { 'id': "http://lexvo.org/id/iso639-3/srn", 'name': "sranan" },
-    { 'id': "http://lexvo.org/id/iso639-3/swb", 'name': "mahorais" },
-    { 'id': "http://lexvo.org/id/iso639-3/tur", 'name': "turc" },
-    { 'id': "http://lexvo.org/id/iso639-3/aji", 'name': "ajië" },
-    { 'id': "http://lexvo.org/id/iso639-3/ita", 'name': "italien" },
-    { 'id': "http://lexvo.org/id/iso639-3/kdk", 'name': "numee" },
-    { 'id': "http://lexvo.org/id/iso639-3/nua", 'name': "yuaga" }
-];
--- a/cms/app-client/app/mirage/fixtures/themes.js	Tue Jun 07 01:11:44 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4597 +0,0 @@
-export default [
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318415c",
-    "count": 1468,
-    "label": "professions"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119339867",
-    "count": 1113,
-    "label": "famille"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb16604691s",
-    "count": 1102,
-    "label": "travail non rémunéré"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932889r",
-    "count": 1019,
-    "label": "oiseaux"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932496x",
-    "count": 1013,
-    "label": "météorologie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933145f",
-    "count": 1004,
-    "label": "plantes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11930908q",
-    "count": 996,
-    "label": "animaux sauvages"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934786x",
-    "count": 996,
-    "label": "arbres"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931793g",
-    "count": 993,
-    "label": "corps humain"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934882t",
-    "count": 992,
-    "label": "homme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11946662b",
-    "count": 952,
-    "label": "parents et enfants"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931819b",
-    "count": 824,
-    "label": "cuisine"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11965628b",
-    "count": 709,
-    "label": "frères et soeurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11963568t",
-    "count": 663,
-    "label": "religion"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11948031w",
-    "count": 657,
-    "label": "écoles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133188907",
-    "count": 640,
-    "label": "sports"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318351z",
-    "count": 633,
-    "label": "jeux"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11963612g",
-    "count": 618,
-    "label": "vêtements"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11945860z",
-    "count": 610,
-    "label": "santé"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11958830z",
-    "count": 606,
-    "label": "maladies"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119763597",
-    "count": 605,
-    "label": "boissons"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13162676c",
-    "count": 596,
-    "label": "habitations"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119345700",
-    "count": 593,
-    "label": "église catholique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11944168j",
-    "count": 592,
-    "label": "hygiène"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11964747n",
-    "count": 591,
-    "label": "aliments"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119813953",
-    "count": 591,
-    "label": "relief (géographie)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb14447846f",
-    "count": 591,
-    "label": "pièces (architecture)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119310581",
-    "count": 589,
-    "label": "bijoux"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933785b",
-    "count": 589,
-    "label": "vie intellectuelle"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11956938h",
-    "count": 589,
-    "label": "ustensiles de cuisine"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12011791z",
-    "count": 589,
-    "label": "espace"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13162680m",
-    "count": 589,
-    "label": "meubles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11937931x",
-    "count": 574,
-    "label": "perception spatiale"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934798x",
-    "count": 536,
-    "label": "agriculture"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119328694",
-    "count": 513,
-    "label": "animaux"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119375503",
-    "count": 456,
-    "label": "enseignants"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11957099g",
-    "count": 436,
-    "label": "grands-parents et enfants"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11971232q",
-    "count": 415,
-    "label": "fruits"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936442z",
-    "count": 413,
-    "label": "poules"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11940832h",
-    "count": 413,
-    "label": "pigeons"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119759480",
-    "count": 407,
-    "label": "coq"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11961551m",
-    "count": 406,
-    "label": "calendriers"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11930905p",
-    "count": 404,
-    "label": "animaux domestiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119384533",
-    "count": 403,
-    "label": "mesure"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119384564",
-    "count": 403,
-    "label": "outils"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11950185c",
-    "count": 403,
-    "label": "exploitations agricoles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11993757b",
-    "count": 403,
-    "label": "quatre éléments (philosophie)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133189074",
-    "count": 403,
-    "label": "temps"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119591726",
-    "count": 309,
-    "label": "langues"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11970755h",
-    "count": 228,
-    "label": "repentir"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119766112",
-    "count": 228,
-    "label": "miséricorde"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936549n",
-    "count": 221,
-    "label": "multilinguisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11935375d",
-    "count": 218,
-    "label": "français (langue)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318335q",
-    "count": 218,
-    "label": "couple"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133183540",
-    "count": 208,
-    "label": "livres et lecture"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119458243",
-    "count": 202,
-    "label": "relations humaines"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932194d",
-    "count": 201,
-    "label": "linguistique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933029x",
-    "count": 197,
-    "label": "parole"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11978921p",
-    "count": 196,
-    "label": "enfance et jeunesse"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119759527",
-    "count": 194,
-    "label": "accents et accentuation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119481497",
-    "count": 191,
-    "label": "variation linguistique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12099148r",
-    "count": 187,
-    "label": "attitudes linguistiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931564b",
-    "count": 179,
-    "label": "géographie linguistique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119392962",
-    "count": 179,
-    "label": "analyse linguistique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119757609",
-    "count": 179,
-    "label": "régionalismes (linguistique)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11975806s",
-    "count": 176,
-    "label": "pensée politique et sociale"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11947332t",
-    "count": 174,
-    "label": "langage et statut social"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318491g",
-    "count": 173,
-    "label": "acculturation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931472p",
-    "count": 172,
-    "label": "français (langue) -- usage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933281k",
-    "count": 172,
-    "label": "sociolinguistique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119756721",
-    "count": 172,
-    "label": "allemand (langue)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12148936v",
-    "count": 172,
-    "label": "langues menacées"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12042429k",
-    "count": 171,
-    "label": "dialectes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12289036m",
-    "count": 171,
-    "label": "linguistique descriptive"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934740m",
-    "count": 170,
-    "label": "alsacien (dialecte)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11935986q",
-    "count": 170,
-    "label": "dialectologie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12032030g",
-    "count": 170,
-    "label": "idéologie et langage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932512b",
-    "count": 166,
-    "label": "moeurs et coutumes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119344654",
-    "count": 156,
-    "label": "fêtes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931498c",
-    "count": 125,
-    "label": "femmes -- travail"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934124q",
-    "count": 124,
-    "label": "classes sociales"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11943508j",
-    "count": 118,
-    "label": "france -- 1968 (journées de mai)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932417s",
-    "count": 117,
-    "label": "mariage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb135052099",
-    "count": 114,
-    "label": "loisirs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933804s",
-    "count": 111,
-    "label": "viticulture"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931821w",
-    "count": 99,
-    "label": "cuisine (oeufs)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb122187674",
-    "count": 99,
-    "label": "guerre mondiale (1939-1945) -- récits personnels"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11939659z",
-    "count": 97,
-    "label": "sorcellerie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318591r",
-    "count": 97,
-    "label": "artisanat"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11935399d",
-    "count": 92,
-    "label": "tabac"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119348746",
-    "count": 87,
-    "label": "fromage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb166872169",
-    "count": 86,
-    "label": "fromagers (personnes)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119440626",
-    "count": 85,
-    "label": "bouchers"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11948339g",
-    "count": 85,
-    "label": "travailleurs forestiers"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11967261j",
-    "count": 85,
-    "label": "houblon"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119768259",
-    "count": 85,
-    "label": "chanvre"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb123257909",
-    "count": 85,
-    "label": "façons culturales"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13162695n",
-    "count": 83,
-    "label": "vocabulaire"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318355b",
-    "count": 78,
-    "label": "logement"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11935508t",
-    "count": 70,
-    "label": "latin (langue)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119361486",
-    "count": 62,
-    "label": "comportement humain"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934463f",
-    "count": 53,
-    "label": "enseignement"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb126532730",
-    "count": 53,
-    "label": "voyages"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11940294d",
-    "count": 51,
-    "label": "bourgeoisie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932931q",
-    "count": 46,
-    "label": "paris (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119404970",
-    "count": 46,
-    "label": "rites et cérémonies"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13319003h",
-    "count": 42,
-    "label": "quartiers (urbanisme)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119605176",
-    "count": 38,
-    "label": "sourds"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12648912q",
-    "count": 38,
-    "label": "surdité"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11963511v",
-    "count": 37,
-    "label": "langues -- étude et enseignement"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119677899",
-    "count": 35,
-    "label": "argent (monnaie)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12074030s",
-    "count": 35,
-    "label": "centres médico-psycho-pédagogiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133183660",
-    "count": 35,
-    "label": "musique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12226093g",
-    "count": 34,
-    "label": "langue des signes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318380j",
-    "count": 33,
-    "label": "syndicats"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318549z",
-    "count": 33,
-    "label": "vacances"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936326f",
-    "count": 32,
-    "label": "écriture"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11944279g",
-    "count": 31,
-    "label": "pêche"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119325308",
-    "count": 30,
-    "label": "mort"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119336256",
-    "count": 30,
-    "label": "transports urbains"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11949006x",
-    "count": 30,
-    "label": "écoles privées"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11939974p",
-    "count": 29,
-    "label": "enseignement supérieur"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119410943",
-    "count": 27,
-    "label": "évasions"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb14408233v",
-    "count": 27,
-    "label": "perspective temporelle"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11930996t",
-    "count": 26,
-    "label": "automobiles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931355t",
-    "count": 26,
-    "label": "enfants en difficulté d'apprentissage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12098726v",
-    "count": 25,
-    "label": "produits du terroir"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931683w",
-    "count": 24,
-    "label": "cafés"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931755x",
-    "count": 24,
-    "label": "communication visuelle"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931841h",
-    "count": 23,
-    "label": "danse"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932997n",
-    "count": 23,
-    "label": "produits agricoles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119336465",
-    "count": 23,
-    "label": "télévision"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119418302",
-    "count": 23,
-    "label": "crises économiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133183409",
-    "count": 23,
-    "label": "émigration et immigration"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11971502m",
-    "count": 22,
-    "label": "commerce"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119767371",
-    "count": 22,
-    "label": "information"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133188384",
-    "count": 22,
-    "label": "clans"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933488j",
-    "count": 21,
-    "label": "sologne (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11950170b",
-    "count": 21,
-    "label": "employés de bureau"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931247x",
-    "count": 20,
-    "label": "enfants inadaptés -- éducation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11974557m",
-    "count": 20,
-    "label": "voisinage (relations humaines)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb122368540",
-    "count": 20,
-    "label": "immigrés"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb135540729",
-    "count": 20,
-    "label": "activités culturelles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119324184",
-    "count": 19,
-    "label": "rites et cérémonies du mariage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11939893p",
-    "count": 19,
-    "label": "centres culturels"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119481048",
-    "count": 19,
-    "label": "habitations à loyer modéré"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119511608",
-    "count": 19,
-    "label": "solidarité"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11951701d",
-    "count": 19,
-    "label": "comportement verbal"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11978392j",
-    "count": 19,
-    "label": "petits commerces"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb123041695",
-    "count": 19,
-    "label": "guerre mondiale (1939-1945) -- récits personnels juifs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318396x",
-    "count": 19,
-    "label": "vol (droit)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318436b",
-    "count": 19,
-    "label": "guerre"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13545003h",
-    "count": 19,
-    "label": "système électoral"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb118771917",
-    "count": 18,
-    "label": "maison de la culture. orléans"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11958962v",
-    "count": 18,
-    "label": "naissance"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb122954766",
-    "count": 18,
-    "label": "grèves et lock-out -- france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb124795302",
-    "count": 17,
-    "label": "magasins d'alimentation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133190265",
-    "count": 17,
-    "label": "sécurité"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13319048g",
-    "count": 17,
-    "label": "chansons"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11940030m",
-    "count": 16,
-    "label": "multiculturalisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13171475f",
-    "count": 16,
-    "label": "débuts professionnels"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133192210",
-    "count": 16,
-    "label": "sans-abri"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb16971902d",
-    "count": 16,
-    "label": "squares"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932762f",
-    "count": 15,
-    "label": "restaurants"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119361188",
-    "count": 15,
-    "label": "cinéma"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11938756z",
-    "count": 15,
-    "label": "noël"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11938827n",
-    "count": 15,
-    "label": "français (langue) -- étude et enseignement"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119619197",
-    "count": 15,
-    "label": "istanbul (turquie)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13162854m",
-    "count": 15,
-    "label": "bicyclettes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11939093g",
-    "count": 14,
-    "label": "guerre mondiale (1914-1918)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11939426f",
-    "count": 14,
-    "label": "cinémas"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12295700s",
-    "count": 14,
-    "label": "grève générale (france. - 1968)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12524773t",
-    "count": 14,
-    "label": "fêtes religieuses -- christianisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931803z",
-    "count": 13,
-    "label": "couture"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931827z",
-    "count": 13,
-    "label": "culture"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11945486j",
-    "count": 13,
-    "label": "jeanne d'arc (sainte, 1412-1431)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119500644",
-    "count": 13,
-    "label": "chômage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11972068d",
-    "count": 13,
-    "label": "ouvriers qualifiés"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120105768",
-    "count": 13,
-    "label": "juifs espagnols"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933895x",
-    "count": 12,
-    "label": "pain"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11944214w",
-    "count": 12,
-    "label": "olivier -- cultures"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11966857q",
-    "count": 12,
-    "label": "enfants -- mort"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12337059x",
-    "count": 12,
-    "label": "internet"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12477289d",
-    "count": 12,
-    "label": "violence urbaine"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12647843g",
-    "count": 12,
-    "label": "service militaire obligatoire"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133408542",
-    "count": 12,
-    "label": "communisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15846779q",
-    "count": 12,
-    "label": "conflit (sociologie)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933779d",
-    "count": 11,
-    "label": "vidéo"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11941579k",
-    "count": 11,
-    "label": "shoah"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119582998",
-    "count": 11,
-    "label": "usines"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11996115g",
-    "count": 11,
-    "label": "guerre mondiale (1939-1945)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb121235840",
-    "count": 11,
-    "label": "âges de la vie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb125326978",
-    "count": 11,
-    "label": "salonique (vilayet)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318322c",
-    "count": 11,
-    "label": "associations"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133183273",
-    "count": 11,
-    "label": "cannibalisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133190710",
-    "count": 11,
-    "label": "patrimoine culturel"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119325757",
-    "count": 10,
-    "label": "mythe"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119344952",
-    "count": 10,
-    "label": "marchés"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11935376r",
-    "count": 10,
-    "label": "formation professionnelle"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119418186",
-    "count": 10,
-    "label": "angleterre (gb)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11953067w",
-    "count": 10,
-    "label": "animaux aquatiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11954249r",
-    "count": 10,
-    "label": "ouvriers non qualifiés"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11955218q",
-    "count": 10,
-    "label": "éducation familiale"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11970707n",
-    "count": 10,
-    "label": "prophéties"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318614k",
-    "count": 10,
-    "label": "spectacles et divertissements"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119311589",
-    "count": 9,
-    "label": "chasse"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119337991",
-    "count": 9,
-    "label": "violence"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119342360",
-    "count": 9,
-    "label": "impôt"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119365307",
-    "count": 9,
-    "label": "enseignement -- réforme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936663g",
-    "count": 9,
-    "label": "taxe sur la valeur ajoutée"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11952208p",
-    "count": 9,
-    "label": "cours d'eau"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12185052q",
-    "count": 9,
-    "label": "vin de corse"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318422n",
-    "count": 9,
-    "label": "tourisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb161974375",
-    "count": 9,
-    "label": "prières"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119310779",
-    "count": 8,
-    "label": "bretagne (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932434c",
-    "count": 8,
-    "label": "mathématiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119387230",
-    "count": 8,
-    "label": "commerçants"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119569104",
-    "count": 8,
-    "label": "éducation à la citoyenneté"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119572542",
-    "count": 8,
-    "label": "paris (france) -- arrondissement (11e)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11961945s",
-    "count": 8,
-    "label": "loiret (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11975896k",
-    "count": 8,
-    "label": "poisson"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb125694464",
-    "count": 8,
-    "label": "mondialisation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb131627112",
-    "count": 8,
-    "label": "éducation physique et sportive"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133199526",
-    "count": 8,
-    "label": "sécurité urbaine"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb118621011",
-    "count": 7,
-    "label": "confédération générale du travail. france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11930867z",
-    "count": 7,
-    "label": "allemagne"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933161p",
-    "count": 7,
-    "label": "poésie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934371s",
-    "count": 7,
-    "label": "pieds-noirs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936161d",
-    "count": 7,
-    "label": "coquillages"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11937010g",
-    "count": 7,
-    "label": "somme (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119382735",
-    "count": 7,
-    "label": "banlieues"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11958119h",
-    "count": 7,
-    "label": "crabes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11965068x",
-    "count": 7,
-    "label": "tonalité"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11974022k",
-    "count": 7,
-    "label": "france (sud)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119766650",
-    "count": 7,
-    "label": "magasins"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119771604",
-    "count": 7,
-    "label": "couture (profession)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11977219z",
-    "count": 7,
-    "label": "blanchissage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12000217q",
-    "count": 7,
-    "label": "corbie (somme)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12321349s",
-    "count": 7,
-    "label": "algériens d'origine française"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb126494713",
-    "count": 7,
-    "label": "scouts"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13319064q",
-    "count": 7,
-    "label": "science politique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13320451h",
-    "count": 7,
-    "label": "communautarisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb162311145",
-    "count": 7,
-    "label": "coexistence religieuse"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11865551d",
-    "count": 6,
-    "label": "société nationale des chemins de fer français"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931346v",
-    "count": 6,
-    "label": "élevage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119319544",
-    "count": 6,
-    "label": "éducation sexuelle de la jeunesse"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932942c",
-    "count": 6,
-    "label": "peinture"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933049j",
-    "count": 6,
-    "label": "pédagogie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934299w",
-    "count": 6,
-    "label": "lyon (rhône)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934328n",
-    "count": 6,
-    "label": "sécurité sociale"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936934q",
-    "count": 6,
-    "label": "stations de radio"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119391943",
-    "count": 6,
-    "label": "infirmières"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119449720",
-    "count": 6,
-    "label": "français (langue) -- emprunts anglais"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11948327g",
-    "count": 6,
-    "label": "tours (indre-et-loire)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119485240",
-    "count": 6,
-    "label": "diable"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11953342c",
-    "count": 6,
-    "label": "veuves"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11975580c",
-    "count": 6,
-    "label": "paris (france) -- arrondissement (07e)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11975823c",
-    "count": 6,
-    "label": "incendies"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb123083581",
-    "count": 6,
-    "label": "décentralisation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15011194r",
-    "count": 6,
-    "label": "référendum -- france -- 1969"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119242719",
-    "count": 5,
-    "label": "roger secrétain (1902-1982)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11930860j",
-    "count": 5,
-    "label": "algérie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931491z",
-    "count": 5,
-    "label": "rites et cérémonies funéraires"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931904k",
-    "count": 5,
-    "label": "drogues et jeunesse"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932966c",
-    "count": 5,
-    "label": "zones piétonnières"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119341779",
-    "count": 5,
-    "label": "eure-et-loir (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119377452",
-    "count": 5,
-    "label": "équipements collectifs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11937783m",
-    "count": 5,
-    "label": "camping"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119541302",
-    "count": 5,
-    "label": "guerre mondiale (1939-1945) -- juifs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119549815",
-    "count": 5,
-    "label": "pauvreté"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119596539",
-    "count": 5,
-    "label": "colonisation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119757144",
-    "count": 5,
-    "label": "coiffeurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119767449",
-    "count": 5,
-    "label": "punition"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119793082",
-    "count": 5,
-    "label": "trahison"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12123592m",
-    "count": 5,
-    "label": "diffusion des langues"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12243616c",
-    "count": 5,
-    "label": "librairies"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12565961f",
-    "count": 5,
-    "label": "oiseaux des villes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12647612n",
-    "count": 5,
-    "label": "socialisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb126996694",
-    "count": 5,
-    "label": "embourgeoisement (urbanisme)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133190025",
-    "count": 5,
-    "label": "organisation communautaire"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb137450433",
-    "count": 5,
-    "label": "11 septembre 2001, attentats du (états-unis)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15058414m",
-    "count": 5,
-    "label": "promenade"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15071919f",
-    "count": 5,
-    "label": "voiles islamiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb118667814",
-    "count": 4,
-    "label": "parti communiste français"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11872237h",
-    "count": 4,
-    "label": "confédération française démocratique du travail"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11877881v",
-    "count": 4,
-    "label": "parti communiste français. fédération. loiret"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11930969x",
-    "count": 4,
-    "label": "art et technologie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931584z",
-    "count": 4,
-    "label": "grande-bretagne"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119317924",
-    "count": 4,
-    "label": "conversation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119318734",
-    "count": 4,
-    "label": "devinettes et énigmes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119323045",
-    "count": 4,
-    "label": "londres (gb)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932357r",
-    "count": 4,
-    "label": "miel"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119327315",
-    "count": 4,
-    "label": "récits de voyages"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932823t",
-    "count": 4,
-    "label": "pollution"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933633t",
-    "count": 4,
-    "label": "tsiganes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119338054",
-    "count": 4,
-    "label": "vitraux"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11935295r",
-    "count": 4,
-    "label": "français (langue) -- argot"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11935691g",
-    "count": 4,
-    "label": "architecture -- 1945-...."
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936608b",
-    "count": 4,
-    "label": "beauce (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119387339",
-    "count": 4,
-    "label": "voix"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11940388r",
-    "count": 4,
-    "label": "guerre mondiale (1939-1945) -- mouvements de résistance"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11941357q",
-    "count": 4,
-    "label": "boulangerie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11946657r",
-    "count": 4,
-    "label": "suicide"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119466610",
-    "count": 4,
-    "label": "enfants maltraités"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119480207",
-    "count": 4,
-    "label": "communauté européenne"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11948337s",
-    "count": 4,
-    "label": "travail à la chaîne"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119498409",
-    "count": 4,
-    "label": "assurance"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11950204t",
-    "count": 4,
-    "label": "fromage de chèvre"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11952801x",
-    "count": 4,
-    "label": "or -- mines et extraction"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11954068g",
-    "count": 4,
-    "label": "colonies de vacances"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119544108",
-    "count": 4,
-    "label": "paris (france) -- arrondissement (12e)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119577235",
-    "count": 4,
-    "label": "guerre mondiale (1939-1945) -- prisonniers et prisons"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119586741",
-    "count": 4,
-    "label": "bombardement aérien"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11961917j",
-    "count": 4,
-    "label": "izmir (turquie)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11963747d",
-    "count": 4,
-    "label": "france. armée -- officiers"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11972018v",
-    "count": 4,
-    "label": "industriels"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11977269h",
-    "count": 4,
-    "label": "bénédiction et malédiction"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11978815g",
-    "count": 4,
-    "label": "brebis"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12124561k",
-    "count": 4,
-    "label": "chouettes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12226069m",
-    "count": 4,
-    "label": "sorcières"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb122375025",
-    "count": 4,
-    "label": "fromage fermier"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12288500r",
-    "count": 4,
-    "label": "chèvres"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12385680z",
-    "count": 4,
-    "label": "vendanges"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12530315s",
-    "count": 4,
-    "label": "halloween"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318425p",
-    "count": 4,
-    "label": "prisons"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318536m",
-    "count": 4,
-    "label": "aide sociale"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133186168",
-    "count": 4,
-    "label": "vie chrétienne"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318683d",
-    "count": 4,
-    "label": "coût et niveau de la vie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13319685b",
-    "count": 4,
-    "label": "bandes de jeunes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb150979822",
-    "count": 4,
-    "label": "campagne"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb157175606",
-    "count": 4,
-    "label": "facebook (site web)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb16278021p",
-    "count": 4,
-    "label": "économie rurale"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11865411w",
-    "count": 3,
-    "label": "régie nationale des usines renault"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931511r",
-    "count": 3,
-    "label": "français (langue) -- langue parlée"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119321514",
-    "count": 3,
-    "label": "jardinage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932327t",
-    "count": 3,
-    "label": "marins"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119323463",
-    "count": 3,
-    "label": "menuiserie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119324273",
-    "count": 3,
-    "label": "marseille (bouches-du-rhône)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119324858",
-    "count": 3,
-    "label": "mères et enfants"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119328810",
-    "count": 3,
-    "label": "mer"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119339460",
-    "count": 3,
-    "label": "orthophonie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119340264",
-    "count": 3,
-    "label": "agriculteurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119340353",
-    "count": 3,
-    "label": "allocations familiales"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119340771",
-    "count": 3,
-    "label": "banques -- personnel"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934289k",
-    "count": 3,
-    "label": "haute-loire (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119342914",
-    "count": 3,
-    "label": "lorraine (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934482q",
-    "count": 3,
-    "label": "transports ferroviaires"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934650n",
-    "count": 3,
-    "label": "généalogie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11935237k",
-    "count": 3,
-    "label": "professeurs des écoles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936410b",
-    "count": 3,
-    "label": "abattoirs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11938499d",
-    "count": 3,
-    "label": "antisémitisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11940160t",
-    "count": 3,
-    "label": "nancy (meurthe-et-moselle)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119401913",
-    "count": 3,
-    "label": "ordinateurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11940288g",
-    "count": 3,
-    "label": "blois (loir-et-cher)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11941361z",
-    "count": 3,
-    "label": "boucherie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11944034z",
-    "count": 3,
-    "label": "examens"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11946074p",
-    "count": 3,
-    "label": "mères et filles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119511352",
-    "count": 3,
-    "label": "secrétaires"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11952108d",
-    "count": 3,
-    "label": "pithiviers (loiret)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11954983v",
-    "count": 3,
-    "label": "personnel -- formation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11956986c",
-    "count": 3,
-    "label": null
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11958196z",
-    "count": 3,
-    "label": "gien (loiret)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119589307",
-    "count": 3,
-    "label": "montreuil (seine-saint-denis)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119623519",
-    "count": 3,
-    "label": "techniciens"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119638648",
-    "count": 3,
-    "label": "meung-sur-loire (loiret)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119654937",
-    "count": 3,
-    "label": "adoption"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11967821z",
-    "count": 3,
-    "label": "baux"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11970701k",
-    "count": 3,
-    "label": "professions libérales"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11974329t",
-    "count": 3,
-    "label": "employées de maison"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11974536n",
-    "count": 3,
-    "label": "bénévolat"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11974602m",
-    "count": 3,
-    "label": "plovdiv (bulgarie)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11976292s",
-    "count": 3,
-    "label": "récolte"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11976379v",
-    "count": 3,
-    "label": "travaux publics"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11976726c",
-    "count": 3,
-    "label": "taxis"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119771170",
-    "count": 3,
-    "label": "eau salée"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11978307g",
-    "count": 3,
-    "label": "mendicité"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119800177",
-    "count": 3,
-    "label": "eau en agriculture"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119814403",
-    "count": 3,
-    "label": "yom kippour"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119914064",
-    "count": 3,
-    "label": "normandie (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120009467",
-    "count": 3,
-    "label": "ogres"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120119936",
-    "count": 3,
-    "label": "écoles françaises"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12013374r",
-    "count": 3,
-    "label": "voyants"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12015793m",
-    "count": 3,
-    "label": "écrivains de langue française"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12061855d",
-    "count": 3,
-    "label": "camescopes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12488505t",
-    "count": 3,
-    "label": "fours à pain"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12527794h",
-    "count": 3,
-    "label": "nourrissons -- mort"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb129081931",
-    "count": 3,
-    "label": null
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318313d",
-    "count": 3,
-    "label": "diffusion de la culture"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318710g",
-    "count": 3,
-    "label": "personnel -- mutations"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133198220",
-    "count": 3,
-    "label": "français d'origine italienne"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133308289",
-    "count": 3,
-    "label": "buses (oiseaux)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb146080778",
-    "count": 3,
-    "label": "réseau des bibliothèques d'orléans"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15120286j",
-    "count": 3,
-    "label": "figement (linguistique)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb16231330z",
-    "count": 3,
-    "label": "viande -- industrie et commerce"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb16578930n",
-    "count": 3,
-    "label": "buralistes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb118630835",
-    "count": 2,
-    "label": "chambre de commerce et d'industrie. loiret"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11863754h",
-    "count": 2,
-    "label": "france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11868475v",
-    "count": 2,
-    "label": "électricité de france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb118736982",
-    "count": 2,
-    "label": "bibliothèque municipale. orléans"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb118967018",
-    "count": 2,
-    "label": "jacques chirac"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119085187",
-    "count": 2,
-    "label": "roman jakobson (1896-1982)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11918933f",
-    "count": 2,
-    "label": "charles péguy (1873-1914)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931270f",
-    "count": 2,
-    "label": "esclavage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119312786",
-    "count": 2,
-    "label": "espagne"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119313712",
-    "count": 2,
-    "label": "états-unis"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119314971",
-    "count": 2,
-    "label": "femmes -- conditions sociales"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931600c",
-    "count": 2,
-    "label": "grèce"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931650x",
-    "count": 2,
-    "label": "aube (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931724n",
-    "count": 2,
-    "label": "congrès et conférences"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931736n",
-    "count": 2,
-    "label": "côtes-d'armor (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119319993",
-    "count": 2,
-    "label": "handicapés"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932059m",
-    "count": 2,
-    "label": "hôpitaux -- administration"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119321456",
-    "count": 2,
-    "label": "italie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932605b",
-    "count": 2,
-    "label": "navigation à voile"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933068t",
-    "count": 2,
-    "label": "perception"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933091b",
-    "count": 2,
-    "label": "pharmacie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933113t",
-    "count": 2,
-    "label": "photographie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119335713",
-    "count": 2,
-    "label": "les sables-d'olonne (vendée)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119336345",
-    "count": 2,
-    "label": "tunisie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933740c",
-    "count": 2,
-    "label": "urbanisation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933749g",
-    "count": 2,
-    "label": "vendée (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933752c",
-    "count": 2,
-    "label": "vie urbaine"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934132b",
-    "count": 2,
-    "label": "comptables"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119341539",
-    "count": 2,
-    "label": "discussion"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119342000",
-    "count": 2,
-    "label": "gauche (science politique)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934249b",
-    "count": 2,
-    "label": "israël"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119353831",
-    "count": 2,
-    "label": "laine"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119362234",
-    "count": 2,
-    "label": "dessin"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936822f",
-    "count": 2,
-    "label": "américains"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936922q",
-    "count": 2,
-    "label": "génie civil"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11937007k",
-    "count": 2,
-    "label": "service national"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11937473g",
-    "count": 2,
-    "label": "mobilité sociale"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119384444",
-    "count": 2,
-    "label": "horloges et montres"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119402874",
-    "count": 2,
-    "label": "bourges (cher)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11940600b",
-    "count": 2,
-    "label": "sentiments"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11941483j",
-    "count": 2,
-    "label": "éducation des enfants"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11941781p",
-    "count": 2,
-    "label": "paris (france) -- arrondissement (14e)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11941849g",
-    "count": 2,
-    "label": "france -- 1789-1799 (révolution)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11941871n",
-    "count": 2,
-    "label": "charbon"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11942845b",
-    "count": 2,
-    "label": "amiens (somme)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119440192",
-    "count": 2,
-    "label": "différences entre sexes en éducation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11945306s",
-    "count": 2,
-    "label": "baccalauréat"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11946068r",
-    "count": 2,
-    "label": "mariage interethnique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119468261",
-    "count": 2,
-    "label": "maïs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11949556v",
-    "count": 2,
-    "label": "goût de la lecture"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11949715t",
-    "count": 2,
-    "label": "réunions"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11950793n",
-    "count": 2,
-    "label": "limoges (haute-vienne)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119508185",
-    "count": 2,
-    "label": "mécaniciens"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11951017v",
-    "count": 2,
-    "label": "immobilier"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11951076c",
-    "count": 2,
-    "label": "propriétaires et locataires"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11953073t",
-    "count": 2,
-    "label": "abeilles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119540674",
-    "count": 2,
-    "label": "climat"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11954213r",
-    "count": 2,
-    "label": "kibboutz"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11954492f",
-    "count": 2,
-    "label": "montargis (loiret)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11955551c",
-    "count": 2,
-    "label": "orléans (loiret)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11957060f",
-    "count": 2,
-    "label": "écoles publiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119591110",
-    "count": 2,
-    "label": "couleurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11959251h",
-    "count": 2,
-    "label": "éducation politique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11959660k",
-    "count": 2,
-    "label": "conducteurs de camion"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119618298",
-    "count": 2,
-    "label": "huile d'olive"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11961986c",
-    "count": 2,
-    "label": "lyon (rhône) -- quartier de la guillotière"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11962186d",
-    "count": 2,
-    "label": "saint-ouen (seine-saint-denis)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11963165p",
-    "count": 2,
-    "label": "auvergne (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119632727",
-    "count": 2,
-    "label": "châteauroux (indre)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11963528k",
-    "count": 2,
-    "label": "lycées"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119654681",
-    "count": 2,
-    "label": "porc (viande)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11967308c",
-    "count": 2,
-    "label": "peintres en batiment"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119694084",
-    "count": 2,
-    "label": "chauffage urbain"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11970756v",
-    "count": 2,
-    "label": "représentants de commerce"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119719032",
-    "count": 2,
-    "label": "dactylos"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11973173h",
-    "count": 2,
-    "label": "alliances"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11973335h",
-    "count": 2,
-    "label": "caravaning"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11973645n",
-    "count": 2,
-    "label": "entreprises familiales"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119755079",
-    "count": 2,
-    "label": "olivet (loiret)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11975581q",
-    "count": 2,
-    "label": "paris (france) -- arrondissement (09e)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11975907d",
-    "count": 2,
-    "label": "fonctionnaires"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11976138q",
-    "count": 2,
-    "label": "mouches"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11976333j",
-    "count": 2,
-    "label": "soleil"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11977699j",
-    "count": 2,
-    "label": "chimie agricole"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11978298b",
-    "count": 2,
-    "label": "classes mixtes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119783529",
-    "count": 2,
-    "label": "cours du soir"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119783707",
-    "count": 2,
-    "label": "contremaîtres"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119789372",
-    "count": 2,
-    "label": "accidents de la route"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11979408b",
-    "count": 2,
-    "label": "aristocratie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11980836q",
-    "count": 2,
-    "label": "pistes cyclables"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11981770v",
-    "count": 2,
-    "label": "odeurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11982150t",
-    "count": 2,
-    "label": "troubles d'articulation de la parole -- chez l'enfant"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12017858v",
-    "count": 2,
-    "label": "lavoirs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12037761w",
-    "count": 2,
-    "label": "transports routiers -- personnel"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12046403v",
-    "count": 2,
-    "label": "examens médicaux"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120573736",
-    "count": 2,
-    "label": "yves montand (1921-1991)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12098253c",
-    "count": 2,
-    "label": "corbeaux (oiseaux)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12112242s",
-    "count": 2,
-    "label": "chimie -- étude et enseignement"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb121155321",
-    "count": 2,
-    "label": "science"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12124288s",
-    "count": 2,
-    "label": "langues de spécialité"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12128999b",
-    "count": 2,
-    "label": "guerre mondiale (1939-1945) -- destruction et pillage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12155471g",
-    "count": 2,
-    "label": "union des démocrates pour la république. france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12185533t",
-    "count": 2,
-    "label": "guerre mondiale (1939-1945) -- yougoslavie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12293358h",
-    "count": 2,
-    "label": "fonctionnaires -- mutations"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12301991t",
-    "count": 2,
-    "label": "médailles religieuses"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12335243m",
-    "count": 2,
-    "label": "pêche à pied"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb123389182",
-    "count": 2,
-    "label": "relations orthophoniste-patient"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12377846m",
-    "count": 2,
-    "label": "verre -- fabrication"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12403330m",
-    "count": 2,
-    "label": "roman francophone"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12416255m",
-    "count": 2,
-    "label": "niveaux de langue"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12481481z",
-    "count": 2,
-    "label": "dialogue"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12521983z",
-    "count": 2,
-    "label": "victimes d'accidents de la route"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12571870c",
-    "count": 2,
-    "label": "émancipation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb125736186",
-    "count": 2,
-    "label": "bibliothèque nationale de france -- site françois mitterrand"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb131591696",
-    "count": 2,
-    "label": null
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13162689q",
-    "count": 2,
-    "label": "théâtre"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13162693z",
-    "count": 2,
-    "label": "urbanisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb131742539",
-    "count": 2,
-    "label": "transgression"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318444z",
-    "count": 2,
-    "label": "archéologie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318488k",
-    "count": 2,
-    "label": "participation politique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb145972507",
-    "count": 2,
-    "label": "français d'origine portugaise"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15224737v",
-    "count": 2,
-    "label": null
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb152383059",
-    "count": 2,
-    "label": "république démocratique allemande (1949-1990)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15576505q",
-    "count": 2,
-    "label": "meubles -- reproduction"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15617066q",
-    "count": 2,
-    "label": "métiers de l'alimentation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15762937m",
-    "count": 2,
-    "label": "louannec (côtes-d'armor)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb16648129s",
-    "count": 2,
-    "label": "entraide familiale"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb166943491",
-    "count": 2,
-    "label": "annette poulard (1851-1931)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb16776116r",
-    "count": 2,
-    "label": "tics de langage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11385890p",
-    "count": 1,
-    "label": "bourse du travail. orléans"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb118631169",
-    "count": 1,
-    "label": "charbonnages de france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11863482x",
-    "count": 1,
-    "label": "arts et métiers paristech"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb118640733",
-    "count": 1,
-    "label": "france. ministère des affaires étrangères (1588-2007)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11865077q",
-    "count": 1,
-    "label": "nations unies. commission économique pour l'europe"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb118663753",
-    "count": 1,
-    "label": "ibm france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb118668415",
-    "count": 1,
-    "label": "parti  radical. france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11869542d",
-    "count": 1,
-    "label": "force ouvrière. france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11871323v",
-    "count": 1,
-    "label": "assurances générales de france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11872745h",
-    "count": 1,
-    "label": "gaz de france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb118746342",
-    "count": 1,
-    "label": "centre régional de documentation pédagogique. orléans"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11874885h",
-    "count": 1,
-    "label": "etablissement chenesseau"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11878733z",
-    "count": 1,
-    "label": "sanctuaires notre-dame de lourdes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11879709b",
-    "count": 1,
-    "label": "confédération générale du travail. union départementale. france. loiret"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb118908880",
-    "count": 1,
-    "label": "jean-jacques becker"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11893806j",
-    "count": 1,
-    "label": "georges brassens (1921-1981)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11894455w",
-    "count": 1,
-    "label": "annabel buffet (1928-2005)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11897013k",
-    "count": 1,
-    "label": "georges clemenceau (1841-1929)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11897143s",
-    "count": 1,
-    "label": "jean cocteau (1889-1963)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11904345m",
-    "count": 1,
-    "label": "charles de gaulle (1890-1970)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11904577s",
-    "count": 1,
-    "label": "maurice genevoix (1890-1980)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119049291",
-    "count": 1,
-    "label": "guillaume gillet (1912-1987)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119115569",
-    "count": 1,
-    "label": "le corbusier (1887-1965)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11916320z",
-    "count": 1,
-    "label": "françois mitterrand (1916-1996)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11916599s",
-    "count": 1,
-    "label": "michel de montaigne (1533-1592)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119207126",
-    "count": 1,
-    "label": "marcel proust (1871-1922)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11921205s",
-    "count": 1,
-    "label": "benoît xvi (pape)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11923735k",
-    "count": 1,
-    "label": "jean-paul sartre (1905-1980)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11925722q",
-    "count": 1,
-    "label": "pierre sudreau (1919-2012)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11930875k",
-    "count": 1,
-    "label": "amérique du nord"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119308987",
-    "count": 1,
-    "label": "anglais (langue)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119310790",
-    "count": 1,
-    "label": "bridge (jeu)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931081j",
-    "count": 1,
-    "label": "brocante"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119311318",
-    "count": 1,
-    "label": "massif central (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931145z",
-    "count": 1,
-    "label": "champignons"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931150j",
-    "count": 1,
-    "label": "chansons paillardes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119311767",
-    "count": 1,
-    "label": "cheveux"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119312368",
-    "count": 1,
-    "label": "alpes (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931286t",
-    "count": 1,
-    "label": "esthéticiennes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931301w",
-    "count": 1,
-    "label": "europe"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931381c",
-    "count": 1,
-    "label": "faim"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119314286",
-    "count": 1,
-    "label": "football"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119314344",
-    "count": 1,
-    "label": "énergie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931547r",
-    "count": 1,
-    "label": "gastronomie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931670j",
-    "count": 1,
-    "label": "travail du bois"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931776w",
-    "count": 1,
-    "label": "conseils de classe"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931807b",
-    "count": 1,
-    "label": "création"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119318180",
-    "count": 1,
-    "label": "cuir -- industrie et commerce"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931919m",
-    "count": 1,
-    "label": "échec scolaire"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931928k",
-    "count": 1,
-    "label": "écoles maternelles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11931991b",
-    "count": 1,
-    "label": "fourmis"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119320348",
-    "count": 1,
-    "label": "homosexualité"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932114x",
-    "count": 1,
-    "label": "ingénieurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119321932",
-    "count": 1,
-    "label": "limousin (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119322088",
-    "count": 1,
-    "label": "lot (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932248h",
-    "count": 1,
-    "label": "librairie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119323850",
-    "count": 1,
-    "label": "maçonnerie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932462m",
-    "count": 1,
-    "label": "médecins"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932465n",
-    "count": 1,
-    "label": "médicaments"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932541x",
-    "count": 1,
-    "label": "mots-croisés"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119326923",
-    "count": 1,
-    "label": "quincaillerie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119327168",
-    "count": 1,
-    "label": "radio"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119327404",
-    "count": 1,
-    "label": "réincarnation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119328454",
-    "count": 1,
-    "label": "portugal"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119329202",
-    "count": 1,
-    "label": "orientation professionnelle"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932963b",
-    "count": 1,
-    "label": "picardie (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11932978c",
-    "count": 1,
-    "label": "poitiers (vienne)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933038w",
-    "count": 1,
-    "label": "pâtisserie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119330397",
-    "count": 1,
-    "label": "pâtissiers"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933188q",
-    "count": 1,
-    "label": "savoie (france. - région)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933202f",
-    "count": 1,
-    "label": "son -- enregistrement et reproduction"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933241b",
-    "count": 1,
-    "label": "sculpture"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119332671",
-    "count": 1,
-    "label": "sexualité (psychologie)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933332n",
-    "count": 1,
-    "label": "suisse"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119334020",
-    "count": 1,
-    "label": "bruxelles (belgique)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933435z",
-    "count": 1,
-    "label": "corse (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933455k",
-    "count": 1,
-    "label": "dauphiné (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119334667",
-    "count": 1,
-    "label": "tourcoing (nord)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933623h",
-    "count": 1,
-    "label": "transports publics"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119337004",
-    "count": 1,
-    "label": "transports aériens"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933725g",
-    "count": 1,
-    "label": "tsigane (langue)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933777q",
-    "count": 1,
-    "label": "vêtements -- industrie et commerce"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933827f",
-    "count": 1,
-    "label": "yougoslavie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11933911b",
-    "count": 1,
-    "label": "aménagement du territoire"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934015g",
-    "count": 1,
-    "label": "absentéisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934027g",
-    "count": 1,
-    "label": "agriculture -- outillage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934099b",
-    "count": 1,
-    "label": "cadres (personnel)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934114d",
-    "count": 1,
-    "label": "charente (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119342062",
-    "count": 1,
-    "label": "grenoble (isère)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934262j",
-    "count": 1,
-    "label": "journalistes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119343666",
-    "count": 1,
-    "label": "maroc"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119344445",
-    "count": 1,
-    "label": "histoire"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119346394",
-    "count": 1,
-    "label": "royalistes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11934758p",
-    "count": 1,
-    "label": "art"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119352367",
-    "count": 1,
-    "label": "hyères (var)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11935270d",
-    "count": 1,
-    "label": "saint-tropez (var)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119352932",
-    "count": 1,
-    "label": "éducation interculturelle"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11935294d",
-    "count": 1,
-    "label": "enseignement professionnel"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119353502",
-    "count": 1,
-    "label": "ethnolinguistique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11935543b",
-    "count": 1,
-    "label": "éducation sexuelle"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11935656z",
-    "count": 1,
-    "label": "pyrénées (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119360614",
-    "count": 1,
-    "label": "capitalisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119361544",
-    "count": 1,
-    "label": "construction"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936159v",
-    "count": 1,
-    "label": "contes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936459p",
-    "count": 1,
-    "label": "tabagisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936609p",
-    "count": 1,
-    "label": "chartres (eure-et-loir)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119368422",
-    "count": 1,
-    "label": "philosophie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11936865q",
-    "count": 1,
-    "label": "jardins"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119369999",
-    "count": 1,
-    "label": "cannes (alpes-maritimes)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119370365",
-    "count": 1,
-    "label": "constantine (algérie)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119370396",
-    "count": 1,
-    "label": "côte d'azur (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119374248",
-    "count": 1,
-    "label": "vignerons"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119374902",
-    "count": 1,
-    "label": "le havre (seine-maritime)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11937609x",
-    "count": 1,
-    "label": "ronchamp (haute-saône) -- chapelle notre-dame-du-haut"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11937714s",
-    "count": 1,
-    "label": "sarthe (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119377859",
-    "count": 1,
-    "label": "chirurgiens"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11937957m",
-    "count": 1,
-    "label": "chambord (loir-et-cher)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119379804",
-    "count": 1,
-    "label": "paris (france) -- arrondissement (13e)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11938130m",
-    "count": 1,
-    "label": "new york (n.y.)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11938398s",
-    "count": 1,
-    "label": "régulation des naissances"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11939096h",
-    "count": 1,
-    "label": "guerre mondiale (1939-1945) -- campagnes et batailles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11939598k",
-    "count": 1,
-    "label": "loire (france. - cours d'eau)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11939872q",
-    "count": 1,
-    "label": "haute-vienne (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11940130w",
-    "count": 1,
-    "label": "moulins (allier)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119401390",
-    "count": 1,
-    "label": "maires"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11940201k",
-    "count": 1,
-    "label": "poitou (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11940247w",
-    "count": 1,
-    "label": "pèlerins et pèlerinages"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119406021",
-    "count": 1,
-    "label": "langues vivantes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11941069w",
-    "count": 1,
-    "label": "hautes-alpes (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11941332c",
-    "count": 1,
-    "label": "cuisine -- étude et enseignement"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11941760q",
-    "count": 1,
-    "label": "gers (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119417674",
-    "count": 1,
-    "label": "isère (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11941814t",
-    "count": 1,
-    "label": "achats"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119423825",
-    "count": 1,
-    "label": "renouveau liturgique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11942581c",
-    "count": 1,
-    "label": "bruit"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11943509w",
-    "count": 1,
-    "label": "france -- 1969-1974 (g. pompidou)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11944014b",
-    "count": 1,
-    "label": "décorateurs d'intérieurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119440506",
-    "count": 1,
-    "label": "araignées"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11944213j",
-    "count": 1,
-    "label": "olivier"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11944282c",
-    "count": 1,
-    "label": "scoliose"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119451214",
-    "count": 1,
-    "label": "montrichard (loir-et-cher)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11945352z",
-    "count": 1,
-    "label": "bibliothèques privées"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11945612j",
-    "count": 1,
-    "label": "paris (france) -- arrondissement (05e)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11945613w",
-    "count": 1,
-    "label": "paris (france) -- arrondissement (19e)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119460213",
-    "count": 1,
-    "label": "fauconnerie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11946290g",
-    "count": 1,
-    "label": "anciens combattants"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11946819r",
-    "count": 1,
-    "label": "motocyclisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11947019s",
-    "count": 1,
-    "label": "vision"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119472107",
-    "count": 1,
-    "label": "cloches d'église et de beffroi"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11947338w",
-    "count": 1,
-    "label": "langues germaniques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11947686k",
-    "count": 1,
-    "label": "loir-et-cher (france)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11948482w",
-    "count": 1,
-    "label": "clergé -- formation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11948542x",
-    "count": 1,
-    "label": "discours"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11948606b",
-    "count": 1,
-    "label": "manuels d'enseignement"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11948944q",
-    "count": 1,
-    "label": "individualisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11949454w",
-    "count": 1,
-    "label": "homme -- attitude et mouvement"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11950024w",
-    "count": 1,
-    "label": "sports d'hiver"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11950042t",
-    "count": 1,
-    "label": "assurance-automobiles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11950174q",
-    "count": 1,
-    "label": "entreprises"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11950215g",
-    "count": 1,
-    "label": "horaires de travail"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11950687f",
-    "count": 1,
-    "label": "dieppe (seine-maritime)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11950813f",
-    "count": 1,
-    "label": "matières premières"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11951191j",
-    "count": 1,
-    "label": "tonneliers"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11951206r",
-    "count": 1,
-    "label": "travail précaire"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11951221n",
-    "count": 1,
-    "label": "vendeurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11951293h",
-    "count": 1,
-    "label": "clichy (hauts-de-seine)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11951389j",
-    "count": 1,
-    "label": "fréjus (var)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11951696n",
-    "count": 1,
-    "label": "âge"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119522676",
-    "count": 1,
-    "label": "étudiants -- activité politique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119540852",
-    "count": 1,
-    "label": "électriciens"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11954092b",
-    "count": 1,
-    "label": "femmes pilotes (aéronautique)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119542201",
-    "count": 1,
-    "label": "loyers"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11954918d",
-    "count": 1,
-    "label": "jargeau (loiret)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119551607",
-    "count": 1,
-    "label": "programmes d'études"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11955293g",
-    "count": 1,
-    "label": "eucharistie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11955527h",
-    "count": 1,
-    "label": "montluçon (allier)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11955560b",
-    "count": 1,
-    "label": "paris (france) -- arrondissement (20e)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11955657q",
-    "count": 1,
-    "label": "lecture à haute voix"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11956470m",
-    "count": 1,
-    "label": "tel-aviv (israël)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119564980",
-    "count": 1,
-    "label": "toulouse (haute-garonne)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119569673",
-    "count": 1,
-    "label": "communautés religieuses"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11957025x",
-    "count": 1,
-    "label": "chorales"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11957674s",
-    "count": 1,
-    "label": "saumur (maine-et-loire)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119581185",
-    "count": 1,
-    "label": "paris hippiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11958298x",
-    "count": 1,
-    "label": "touvre (charente)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11958847p",
-    "count": 1,
-    "label": "le mans (sarthe)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11959092j",
-    "count": 1,
-    "label": "chansons enfantines"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11959095k",
-    "count": 1,
-    "label": "chant -- étude et enseignement"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11959539g",
-    "count": 1,
-    "label": "âge au mariage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11959627r",
-    "count": 1,
-    "label": "catholicisme social"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119600630",
-    "count": 1,
-    "label": "autobiographie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11960281g",
-    "count": 1,
-    "label": "les herbiers (vendée)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119605025",
-    "count": 1,
-    "label": "restaurateurs (alimentation)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11960806c",
-    "count": 1,
-    "label": "anglais"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119609148",
-    "count": 1,
-    "label": "côte basque (pyrénées-atlantiques)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11961098w",
-    "count": 1,
-    "label": "groupes de travail"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119617128",
-    "count": 1,
-    "label": "masseurs-kinésithérapeutes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11961915v",
-    "count": 1,
-    "label": "ivry-sur-seine (val-de-marne)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119619402",
-    "count": 1,
-    "label": "logement -- allocations"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119621314",
-    "count": 1,
-    "label": "saint-brieuc (côtes-d'armor)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119623383",
-    "count": 1,
-    "label": "suresnes (hauts-de-seine)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11962572t",
-    "count": 1,
-    "label": "vêtements de femme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11963468j",
-    "count": 1,
-    "label": "ennui"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119635486",
-    "count": 1,
-    "label": "pataouète (argot)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11963687c",
-    "count": 1,
-    "label": "états-unis -- 1969-1981"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119637164",
-    "count": 1,
-    "label": "exposition internationale (1958 ; bruxelles)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119637880",
-    "count": 1,
-    "label": "henri désiré landru (1869-1922)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119643090",
-    "count": 1,
-    "label": "paris (france) -- arrondissement (03e)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11964738p",
-    "count": 1,
-    "label": "aides-soignants"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11965064j",
-    "count": 1,
-    "label": "histoire économique -- 1945-1973"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11965283c",
-    "count": 1,
-    "label": "hirondelles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11965418g",
-    "count": 1,
-    "label": "châtaignes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11965576x",
-    "count": 1,
-    "label": "dieux"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11965888r",
-    "count": 1,
-    "label": "biologie -- étude et enseignement"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119667830",
-    "count": 1,
-    "label": "vie militaire"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11966814f",
-    "count": 1,
-    "label": "bougies"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11967072n",
-    "count": 1,
-    "label": "maroquinerie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11967406z",
-    "count": 1,
-    "label": "musées de sciences naturelles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11969128x",
-    "count": 1,
-    "label": "tailleurs de pierre"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119696180",
-    "count": 1,
-    "label": "saint-jean-de-braye (loiret)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119713173",
-    "count": 1,
-    "label": "inondations"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11971535k",
-    "count": 1,
-    "label": "travail manuel"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119715378",
-    "count": 1,
-    "label": "travailleurs agricoles"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11971580d",
-    "count": 1,
-    "label": "veuves de guerre"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11972069r",
-    "count": 1,
-    "label": "mouton -- élevage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119732713",
-    "count": 1,
-    "label": "moustiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11973413g",
-    "count": 1,
-    "label": "civisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11973438t",
-    "count": 1,
-    "label": "congés payés"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11973473b",
-    "count": 1,
-    "label": "coutras (gironde)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119747722",
-    "count": 1,
-    "label": "vandalisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11975045g",
-    "count": 1,
-    "label": "prêtres mariés"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119755822",
-    "count": 1,
-    "label": "paris (france) -- arrondissement (10e)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11975583d",
-    "count": 1,
-    "label": "paris (france) -- arrondissement (18e)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119759000",
-    "count": 1,
-    "label": "puits"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11975974j",
-    "count": 1,
-    "label": "papes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11975977k",
-    "count": 1,
-    "label": "marie, sainte vierge"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11976024r",
-    "count": 1,
-    "label": "argot"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119763833",
-    "count": 1,
-    "label": "génie hydraulique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11976851v",
-    "count": 1,
-    "label": "récits personnels"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11977062j",
-    "count": 1,
-    "label": "virginité"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119774332",
-    "count": 1,
-    "label": "bordeaux (gironde)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11977450n",
-    "count": 1,
-    "label": "heures supplémentaires"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119775309",
-    "count": 1,
-    "label": "manèges (attractions)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11978061f",
-    "count": 1,
-    "label": "professeurs de musique"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119781533",
-    "count": 1,
-    "label": "poulpes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11978522x",
-    "count": 1,
-    "label": "écho"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11978864p",
-    "count": 1,
-    "label": "enfants trouvés"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11978915r",
-    "count": 1,
-    "label": "recrutement et engagement"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119790354",
-    "count": 1,
-    "label": "vêtements de travail"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11979806r",
-    "count": 1,
-    "label": "semaine sainte"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119801285",
-    "count": 1,
-    "label": "art -- reproduction"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11980216f",
-    "count": 1,
-    "label": "travail à temps partiel"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11980238r",
-    "count": 1,
-    "label": "arrestation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11980944m",
-    "count": 1,
-    "label": "cinéma russe"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11982278g",
-    "count": 1,
-    "label": "veufs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119824452",
-    "count": 1,
-    "label": "repos hebdomadaire"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11982633m",
-    "count": 1,
-    "label": "second marché (bourse)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11982688w",
-    "count": 1,
-    "label": "extorsion"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119829234",
-    "count": 1,
-    "label": "questionnaires"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119829939",
-    "count": 1,
-    "label": "nice (alpes-maritimes)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119834308",
-    "count": 1,
-    "label": "snobisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11985689z",
-    "count": 1,
-    "label": "programmeurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11991374b",
-    "count": 1,
-    "label": "vierzon (cher)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11991946r",
-    "count": 1,
-    "label": "orphelins"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119922102",
-    "count": 1,
-    "label": "ophtalmologistes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11993583b",
-    "count": 1,
-    "label": "melun (seine-et-marne)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb119962717",
-    "count": 1,
-    "label": "individu et société"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb11998943d",
-    "count": 1,
-    "label": "société des établissements rivierre-casalis. orléans"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12004178m",
-    "count": 1,
-    "label": "dimanche des rameaux"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120053354",
-    "count": 1,
-    "label": "élisabeth (reine des belges, 1876-1965)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120064887",
-    "count": 1,
-    "label": "tortues"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12008245w",
-    "count": 1,
-    "label": "napoléon ier (empereur des français, 1769-1821)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12008914j",
-    "count": 1,
-    "label": "cinéma américain"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12009606b",
-    "count": 1,
-    "label": "france. armée -- mobilisation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120114798",
-    "count": 1,
-    "label": "maroilles (nord)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12012569g",
-    "count": 1,
-    "label": "france -- moeurs et coutumes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120242142",
-    "count": 1,
-    "label": "dessinateurs (dessin technique)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12039450w",
-    "count": 1,
-    "label": "charcutiers"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12047712w",
-    "count": 1,
-    "label": "éducation à la citoyenneté (enseignement secondaire)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120479175",
-    "count": 1,
-    "label": "banquiers -- responsabilité professionnelle"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12048389m",
-    "count": 1,
-    "label": "routes à péage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12048551g",
-    "count": 1,
-    "label": "argentins"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120502737",
-    "count": 1,
-    "label": "enquêtes linguistiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120504059",
-    "count": 1,
-    "label": "libraires"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12061273p",
-    "count": 1,
-    "label": "soif"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12067079n",
-    "count": 1,
-    "label": "caisse nationale d'assurances vieillesse des professions artisanales. france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120677787",
-    "count": 1,
-    "label": "pagures"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb120694886",
-    "count": 1,
-    "label": "états-unis -- civilisation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12076269v",
-    "count": 1,
-    "label": "communauté européenne du charbon et de l'acier"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12084772v",
-    "count": 1,
-    "label": "chambre de métiers et de l'artisanat. loiret"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12085942q",
-    "count": 1,
-    "label": "bijouteries"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12098358c",
-    "count": 1,
-    "label": "professeurs d'art"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12115104p",
-    "count": 1,
-    "label": "prix -- fixation"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12116181c",
-    "count": 1,
-    "label": "professeurs d'anglais"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12121110v",
-    "count": 1,
-    "label": "sarajevo (bosnie-herzégovine)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12121896b",
-    "count": 1,
-    "label": "cocotier"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb121251502",
-    "count": 1,
-    "label": "séjours linguistiques"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb121318073",
-    "count": 1,
-    "label": "chèvre domestique -- élevage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb121403159",
-    "count": 1,
-    "label": "phénomènes de mode"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12146670q",
-    "count": 1,
-    "label": "personnel de la petite enfance"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12150589m",
-    "count": 1,
-    "label": "le kremlin-bicêtre (val-de-marne)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12166104z",
-    "count": 1,
-    "label": "employées de bureau"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb121670801",
-    "count": 1,
-    "label": "femmes -- associations"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12178219z",
-    "count": 1,
-    "label": "union nationale des étudiants de france (1907-1971)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12223381k",
-    "count": 1,
-    "label": "groupes d'âge"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12229007s",
-    "count": 1,
-    "label": "baby-sitters"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb122432199",
-    "count": 1,
-    "label": "étude et enseignement -- locuteurs de l'anglais"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb122714504",
-    "count": 1,
-    "label": "danielle mitterrand (1924-2011)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12271499g",
-    "count": 1,
-    "label": "développement durable"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12272270f",
-    "count": 1,
-    "label": "office de tourisme. orléans"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12287252x",
-    "count": 1,
-    "label": "verrues"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12312465b",
-    "count": 1,
-    "label": "épicerie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb123209465",
-    "count": 1,
-    "label": "dessinateurs de mode"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12321700j",
-    "count": 1,
-    "label": "jumeaux siamois"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12356562c",
-    "count": 1,
-    "label": "landes-le-gaulois (loir-et-cher)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb123930445",
-    "count": 1,
-    "label": "paris (france) -- 1918 (bombardement)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12403502x",
-    "count": 1,
-    "label": "bursa (turquie)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12428502j",
-    "count": 1,
-    "label": "football -- équipes sportives"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12432140r",
-    "count": 1,
-    "label": "hydrocorises"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12461250q",
-    "count": 1,
-    "label": "louveteaux"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb124795066",
-    "count": 1,
-    "label": "roussettes (mammifères)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12482939s",
-    "count": 1,
-    "label": "théâtre municipal. orléans"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb124844883",
-    "count": 1,
-    "label": "istanbul (turquie) -- quartier de balat"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12493640m",
-    "count": 1,
-    "label": "centre démocrate. france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb124953570",
-    "count": 1,
-    "label": "pompistes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12502303n",
-    "count": 1,
-    "label": "constructions provisoires"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12523870t",
-    "count": 1,
-    "label": "charrons"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb125270321",
-    "count": 1,
-    "label": "perte de poids"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12531784z",
-    "count": 1,
-    "label": "jupes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb125644118",
-    "count": 1,
-    "label": "chantecoq (loiret)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb126474979",
-    "count": 1,
-    "label": null
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb126480514",
-    "count": 1,
-    "label": "anticléricalisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb12650268p",
-    "count": 1,
-    "label": "ornithologie"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb126515662",
-    "count": 1,
-    "label": "médecine militaire"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13091689x",
-    "count": 1,
-    "label": "boris vian (1920-1959)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb131629824",
-    "count": 1,
-    "label": "militantisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13164910r",
-    "count": 1,
-    "label": "randonnées"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13167793f",
-    "count": 1,
-    "label": "orcines (puy-de-dôme)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb131790320",
-    "count": 1,
-    "label": "barricades"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13187831k",
-    "count": 1,
-    "label": "parti radical de gauche. france"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb131913538",
-    "count": 1,
-    "label": "lettres modernes (enseignement supérieur)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318308t",
-    "count": 1,
-    "label": "action sociale"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318449p",
-    "count": 1,
-    "label": "bricolage"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318455m",
-    "count": 1,
-    "label": "artistes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133185598",
-    "count": 1,
-    "label": "féodalité"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318572g",
-    "count": 1,
-    "label": "archives"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318587h",
-    "count": 1,
-    "label": "gaulois"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13318665g",
-    "count": 1,
-    "label": "produits agricoles -- commerce"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133190819",
-    "count": 1,
-    "label": "vents"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13319099c",
-    "count": 1,
-    "label": "tabous"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13319142p",
-    "count": 1,
-    "label": "meurtre"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb133192032",
-    "count": 1,
-    "label": "génie urbain"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13340879d",
-    "count": 1,
-    "label": "décrets, arrêtés, etc."
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13340904s",
-    "count": 1,
-    "label": "manutentionnaires"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13505219m",
-    "count": 1,
-    "label": "enquêtes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13507537v",
-    "count": 1,
-    "label": "parfumeurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13514405f",
-    "count": 1,
-    "label": "sports -- accidents"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13515252n",
-    "count": 1,
-    "label": "derrick, stephan (personnage fictif)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13528896v",
-    "count": 1,
-    "label": "couvreurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13540001m",
-    "count": 1,
-    "label": "royan (charente-maritime) -- église notre-dame de royan"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb135610498",
-    "count": 1,
-    "label": "modération"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13563102c",
-    "count": 1,
-    "label": "chefs scouts"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13774498v",
-    "count": 1,
-    "label": "aide humanitaire"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb138917527",
-    "count": 1,
-    "label": "bourvil (1917-1970)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13897767q",
-    "count": 1,
-    "label": "georges moustaki (1934-2013)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb13901310h",
-    "count": 1,
-    "label": "iannis xenakis (1922-2001)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb14244317d",
-    "count": 1,
-    "label": null
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb14401280p",
-    "count": 1,
-    "label": "france -- 1945-1975"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb14454978t",
-    "count": 1,
-    "label": "détention des mineurs"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb14487700p",
-    "count": 1,
-    "label": "puéricultrices"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb14490310d",
-    "count": 1,
-    "label": "laferté-sur-aube (haute-marne)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb144958371",
-    "count": 1,
-    "label": "traductrices"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb144983121",
-    "count": 1,
-    "label": "arbres de mai"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb14525534w",
-    "count": 1,
-    "label": "pourim"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb14579131r",
-    "count": 1,
-    "label": "orléans (loiret) -- hôtel de ville"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb146372745",
-    "count": 1,
-    "label": "enseignants spécialisés"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb150152762",
-    "count": 1,
-    "label": "soutien scolaire"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15021514k",
-    "count": 1,
-    "label": "théâtre d'orléans"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb150294058",
-    "count": 1,
-    "label": "antiaméricanisme"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb152246514",
-    "count": 1,
-    "label": null
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15238306n",
-    "count": 1,
-    "label": "république fédérale d' allemagne (1949-1990)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb152891756",
-    "count": 1,
-    "label": "région limousin (france; 1955-)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb152891934",
-    "count": 1,
-    "label": "région lorraine (france; 1955-)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15602033b",
-    "count": 1,
-    "label": "istanbul (turquie) -- quartier de hasköy"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15613183m",
-    "count": 1,
-    "label": "buvettes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb15916158n",
-    "count": 1,
-    "label": "expositions"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb16140050j",
-    "count": 1,
-    "label": "cendrillon (conte)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb16221703z",
-    "count": 1,
-    "label": "mouvements séparatistes"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb162220367",
-    "count": 1,
-    "label": "génération internet"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb16513680x",
-    "count": 1,
-    "label": "surpoids"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb166113516",
-    "count": 1,
-    "label": "henri duvillard (1910-2001)"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb166674529",
-    "count": 1,
-    "label": "familles ouvrières"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb166852682",
-    "count": 1,
-    "label": "forces armées -- troupes étrangères"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb16743077b",
-    "count": 1,
-    "label": "artisanat d'art"
-  },
-  {
-    "id": "http://ark.bnf.fr/ark:/12148/cb16928757s",
-    "count": 1,
-    "label": "communisme municipal"
-  }
-];
\ No newline at end of file
--- a/cms/app-client/app/mirage/fixtures/transcripts.js	Tue Jun 07 01:11:44 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,105836 +0,0 @@
-export default [
-  {
-    "id": "11280.100/crdo-UVE_MOCIKA_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:50+00:00",
-        "dc:modified": "2016-06-01T23:47:50+00:00",
-        "dc:title": [
-          {
-            "@language": "fr",
-            "@value": "Les deux bernard-l'hermite et le crabe de cocotier"
-          },
-          {
-            "@language": "en",
-            "@value": "The two hermit crabs and the coconut crab"
-          }
-        ]
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144187_MOCIKA_22km.wav",
-          "meta": {
-            "dc:duration": 155000,
-            "dc:title": [
-              {
-                "@language": "fr",
-                "@value": "Les deux bernard-l'hermite et le crabe de cocotier"
-              },
-              {
-                "@language": "en",
-                "@value": "The two hermit crabs and the coconut crab"
-              }
-            ],
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144187.wav",
-          "meta": {
-            "dc:duration": 155000,
-            "dc:title": [
-              {
-                "@language": "fr",
-                "@value": "Les deux bernard-l'hermite et le crabe de cocotier"
-              },
-              {
-                "@language": "en",
-                "@value": "The two hermit crabs and the coconut crab"
-              }
-            ],
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144187_MOCIKA_44k.mp3",
-          "meta": {
-            "dc:duration": 155000,
-            "dc:title": [
-              {
-                "@language": "fr",
-                "@value": "Les deux bernard-l'hermite et le crabe de cocotier"
-              },
-              {
-                "@language": "en",
-                "@value": "The two hermit crabs and the coconut crab"
-              }
-            ],
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a001",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Awe, go de fai mocika tahi a fai mocika numai mai lalo fatu, tahi na numai mai lalo i tafa tai. ",
-              "transl": {
-                "@value": "Voilà, c'est une histoire de bernard-l'hermite ; l'un d'eux sort de dessous une pierre; un autre arrive du bord de mer.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Awe",
-                  "transl": {
-                    "@value": "ainsi",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "go",
-                  "transl": {
-                    "@value": "c'est",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mocika",
-                  "transl": {
-                    "@value": "bernard-l'hermite",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tahi",
-                  "transl": {
-                    "@value": "un",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "a",
-                  "transl": {
-                    "@value": "de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mocika",
-                  "transl": {
-                    "@value": "bernard-l'hermite",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "numai",
-                  "transl": {
-                    "@value": "venir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mai",
-                  "transl": {
-                    "@value": "venant de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lalo",
-                  "transl": {
-                    "@value": "sous",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fatu",
-                  "transl": {
-                    "@value": "pierre",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tahi",
-                  "transl": {
-                    "@value": "un",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "na",
-                  "transl": {
-                    "@value": "passé",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "numai",
-                  "transl": {
-                    "@value": "venir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mai",
-                  "transl": {
-                    "@value": "venant de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lalo",
-                  "transl": {
-                    "@value": "en bas",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tafa",
-                  "transl": {
-                    "@value": "côté",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tai",
-                  "transl": {
-                    "@value": "bord de mer",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 0,
-          "end": 13200.1
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a002",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Na gilaa hano hale ikoo, na gilaa seke i dina i lalo gi tahi a matua naa gono o tunu alili ma tunu wajia. ",
-              "transl": {
-                "@value": "Ils s'en vont par là-bas, ils croisent un vieux en train de griller des trocas et des nérites.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Na",
-                  "transl": {
-                    "@value": "passé",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hale",
-                  "transl": {
-                    "@value": "vers",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ikoo",
-                  "transl": {
-                    "@value": "là-bas",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "na",
-                  "transl": {
-                    "@value": "passé",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "seke",
-                  "transl": {
-                    "@value": "arriver",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "dina",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lalo",
-                  "transl": {
-                    "@value": "en bas",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gi",
-                  "transl": {
-                    "@value": "vers",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tahi",
-                  "transl": {
-                    "@value": "un",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "a",
-                  "transl": {
-                    "@value": "de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "matua",
-                  "transl": {
-                    "@value": "vieux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "naa",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gono",
-                  "transl": {
-                    "@value": "encore en train",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "pour",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tunu",
-                  "transl": {
-                    "@value": "griller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "alili",
-                  "transl": {
-                    "@value": "troca",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ma",
-                  "transl": {
-                    "@value": "et",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tunu",
-                  "transl": {
-                    "@value": "griller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "wajia",
-                  "transl": {
-                    "@value": "nérite",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 13200.1,
-          "end": 20780
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a003",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Lua fai tauavanga matua la de tunu alili ma de wajia o laku. ",
-              "transl": {
-                "@value": "En fait, il s'agit d'un vieux couple de bernard-l'hermite qui grille des trocas et des nérites puis jette les coquilles vides.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Lua",
-                  "transl": {
-                    "@value": "deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tauavanga",
-                  "transl": {
-                    "@value": "couple d'époux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "matua",
-                  "transl": {
-                    "@value": "vieux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "la",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tunu",
-                  "transl": {
-                    "@value": "griller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "alili",
-                  "transl": {
-                    "@value": "troca",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ma",
-                  "transl": {
-                    "@value": "et",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "wajia",
-                  "transl": {
-                    "@value": "nérite",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "et",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "laku",
-                  "transl": {
-                    "@value": "jeter",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 20780,
-          "end": 24120
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a004",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Laku naa malaa kete gi tai. ",
-              "transl": {
-                "@value": "Le couple jette les coquilles vers la mer.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Laku",
-                  "transl": {
-                    "@value": "jeter",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "naa",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "malaa",
-                  "transl": {
-                    "@value": "les",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "kete",
-                  "transl": {
-                    "@value": "coquille",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gi",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tai",
-                  "transl": {
-                    "@value": "mer",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 24120,
-          "end": 26599.9
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a005",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Gilaa de tele mai uta, gilaa de munea penei \"hee, la i tai lava dola fai mai titi e tahi hoku. ",
-              "transl": {
-                "@value": "Les deux compères accourent depuis l'intérieur des terres et s'esclaffent : \"Dis donc! Regarde là-bas au bord de mer, les manous, il y en a un pour moi !",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tele",
-                  "transl": {
-                    "@value": "courir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mai",
-                  "transl": {
-                    "@value": "venant de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "uta",
-                  "transl": {
-                    "@value": "intérieur des terres",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "munea",
-                  "transl": {
-                    "@value": "dire",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "penei",
-                  "transl": {
-                    "@value": "que",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hee",
-                  "transl": {
-                    "@value": "dis-donc!",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "la",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tai",
-                  "transl": {
-                    "@value": "bord de mer",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lava",
-                  "transl": {
-                    "@value": "emph.",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "dola",
-                  "transl": {
-                    "@value": "leur",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mai",
-                  "transl": {
-                    "@value": "morceau",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "titi",
-                  "transl": {
-                    "@value": "manou",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tahi",
-                  "transl": {
-                    "@value": "un",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hoku",
-                  "transl": {
-                    "@value": "mien",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 26599.9,
-          "end": 30640
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a006",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E iviki moonyi de wajia, e maalie de alili e nago efa. ",
-              "transl": {
-                "@value": "La coquille de la nérite est trop petite mais par contre, celle du troca est bien, elle est grande.\"",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "E",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "iviki",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "moonyi",
-                  "transl": {
-                    "@value": "trop",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "wajia",
-                  "transl": {
-                    "@value": "nérite",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "maalie",
-                  "transl": {
-                    "@value": "bon",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "alili",
-                  "transl": {
-                    "@value": "troca",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "nago",
-                  "transl": {
-                    "@value": "par contre",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "efa",
-                  "transl": {
-                    "@value": "grand",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 30640,
-          "end": 34839.9
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a007",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "O gilaa dai hulu i loto o lua fai alili. ",
-              "transl": {
-                "@value": "Chacun essaie une coquille de troca.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "O",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "dai",
-                  "transl": {
-                    "@value": "séparément",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hulu",
-                  "transl": {
-                    "@value": "entrer",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "loto",
-                  "transl": {
-                    "@value": "intérieur",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lua",
-                  "transl": {
-                    "@value": "deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "alili",
-                  "transl": {
-                    "@value": "troca",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 34839.9,
-          "end": 38480
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a008",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "De tahi e hulu i loto o de alili efa lava amoo dona fai trausi. ",
-              "transl": {
-                "@value": "L'un des deux s'enfile dans un grand troca, peut-être que son pantalon est grand !",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "De",
-                  "transl": {
-                    "@value": "l'",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tahi",
-                  "transl": {
-                    "@value": "un",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hulu",
-                  "transl": {
-                    "@value": "entrer",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "loto",
-                  "transl": {
-                    "@value": "intérieur",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "alili",
-                  "transl": {
-                    "@value": "troca",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "efa",
-                  "transl": {
-                    "@value": "grand",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lava",
-                  "transl": {
-                    "@value": "emph.",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "amoo",
-                  "transl": {
-                    "@value": "peut-être",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "dona",
-                  "transl": {
-                    "@value": "son",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "trausi",
-                  "transl": {
-                    "@value": "pantalon",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 38480,
-          "end": 49880.1
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a009",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Goati, o gilaa hano. ",
-              "transl": {
-                "@value": "Ensuite, ils repartent.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Goati",
-                  "transl": {
-                    "@value": "accompli+finir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 50799.9,
-          "end": 52220.1
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a010",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "De tahi e hulu i de fai wajia de tahi e hulu i de fai alili. ",
-              "transl": {
-                "@value": "En fin de compte, l'un est entré dans une nérite, l'autre dans un troca.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "De",
-                  "transl": {
-                    "@value": "l'",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tahi",
-                  "transl": {
-                    "@value": "un",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hulu",
-                  "transl": {
-                    "@value": "entrer",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "dans",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "wajia",
-                  "transl": {
-                    "@value": "nérite",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "l'",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tahi",
-                  "transl": {
-                    "@value": "un",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hulu",
-                  "transl": {
-                    "@value": "entrer",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "dans",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "alili",
-                  "transl": {
-                    "@value": "troca",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 52220.1,
-          "end": 55719.9
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a011",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "O gilaa hano mata penei gi lunga, o gilaa ",
-              "transl": {
-                "@value": "C'est ainsi qu'ils remontent du bord de mer,",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "O",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mata",
-                  "transl": {
-                    "@value": "visage",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "penei",
-                  "transl": {
-                    "@value": "comme ceci",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gi",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lunga",
-                  "transl": {
-                    "@value": "en haut",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 55719.9,
-          "end": 58640
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a012",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "kitea ale ikoo de nea hano ale ikoo i loto o de niu, ",
-              "transl": {
-                "@value": "aperçoivent quelqu'un qui grimpe sur un tronc de cocotier,",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "kitea",
-                  "transl": {
-                    "@value": "voir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ale",
-                  "transl": {
-                    "@value": "en direction",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ikoo",
-                  "transl": {
-                    "@value": "là-bas",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "l'",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "nea",
-                  "transl": {
-                    "@value": "individu",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ale",
-                  "transl": {
-                    "@value": "en direction",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ikoo",
-                  "transl": {
-                    "@value": "là-bas",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "loto",
-                  "transl": {
-                    "@value": "intérieur",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "niu",
-                  "transl": {
-                    "@value": "cocotier",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 58640,
-          "end": 61600
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a013",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "i de pupaa ikoo i loto o de palalaha. ",
-              "transl": {
-                "@value": "en faisant du bruit au coeur des palmes.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "il",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "pupaa",
-                  "transl": {
-                    "@value": "faire du bruit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ikoo",
-                  "transl": {
-                    "@value": "là-bas",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "loto",
-                  "transl": {
-                    "@value": "intérieur",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "la",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "palalaha",
-                  "transl": {
-                    "@value": "base de la palme",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 61600,
-          "end": 64060
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a014",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "I de sakili fai niu. ",
-              "transl": {
-                "@value": "C'est quelqu'un qui cherche des noix de cocos.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "I",
-                  "transl": {
-                    "@value": "il",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "sakili",
-                  "transl": {
-                    "@value": "chercher",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "niu",
-                  "transl": {
-                    "@value": "coco",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 64060,
-          "end": 65200
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a015",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Gilaa kilo gikoo odi \"ohii, ",
-              "transl": {
-                "@value": "Les deux bernard-l'hermite le regardent et disent : \"Eh!",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "kilo",
-                  "transl": {
-                    "@value": "regarder",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gikoo",
-                  "transl": {
-                    "@value": "vers là-bas",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "odi",
-                  "transl": {
-                    "@value": "alors",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ohii",
-                  "transl": {
-                    "@value": "eh!",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 65200,
-          "end": 66980
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a016",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "go de uu dela ale uta\". ",
-              "transl": {
-                "@value": "C'est le crabe de cocotier qui est là-haut !\"",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "go",
-                  "transl": {
-                    "@value": "c'est",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "uu",
-                  "transl": {
-                    "@value": "crabe de cocotier",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "dela",
-                  "transl": {
-                    "@value": "celui-là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ale",
-                  "transl": {
-                    "@value": "vers",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "uta",
-                  "transl": {
-                    "@value": "intérieur des terres",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 66980,
-          "end": 69540
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a017",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Gilaa hano naa guuta, ga munea de uu penei \"pan, e aa naa gilaaua nei tai, gilaa de mumaha ga gilaa de futituina dola tui balo.\" ",
-              "transl": {
-                "@value": "Ils s'approchent et le crabe se dit ainsi :\"Oh ! qu'est-ce qu'ils ont, ces deux-là ! Ils sont bien chargés, ils marchent en tirant des boules qui leur sont attachées.\"",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "naa",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "guuta",
-                  "transl": {
-                    "@value": "vers l'intérieur",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ga",
-                  "transl": {
-                    "@value": "et",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "munea",
-                  "transl": {
-                    "@value": "dire",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "uu",
-                  "transl": {
-                    "@value": "crabe de cocotier",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "penei",
-                  "transl": {
-                    "@value": "que",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "pan",
-                  "transl": {
-                    "@value": "oh!",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "aa",
-                  "transl": {
-                    "@value": "quoi",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "naa",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaaua",
-                  "transl": {
-                    "@value": "les deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "nei",
-                  "transl": {
-                    "@value": "ci",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tai",
-                  "transl": {
-                    "@value": "bord de mer",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mumaha",
-                  "transl": {
-                    "@value": "lourd",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ga",
-                  "transl": {
-                    "@value": "car",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "futituina",
-                  "transl": {
-                    "@value": "traîner",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "dola",
-                  "transl": {
-                    "@value": "leur",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tui",
-                  "transl": {
-                    "@value": "ensemble",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "balo",
-                  "transl": {
-                    "@value": "boule",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 69540,
-          "end": 78440
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a018",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ga fia gilaaua penei \"goa isi oma mai titi, e hano pangani iela ale uta; odi ona mai titi, ",
-              "transl": {
-                "@value": "Et les deux bernard-l'hermite se disent ainsi : \"Nous, nous avons des manous, alors que lui se promène tout nu dans les terres ! De manous,",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Ga",
-                  "transl": {
-                    "@value": "et",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fia",
-                  "transl": {
-                    "@value": "dire",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaaua",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "penei",
-                  "transl": {
-                    "@value": "que",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "goa",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "isi",
-                  "transl": {
-                    "@value": "y avoir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "oma",
-                  "transl": {
-                    "@value": "nos",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mai",
-                  "transl": {
-                    "@value": "morceau",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "titi",
-                  "transl": {
-                    "@value": "manou",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "pangani",
-                  "transl": {
-                    "@value": "nu",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "iela",
-                  "transl": {
-                    "@value": "celui-là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ale",
-                  "transl": {
-                    "@value": "vers",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "uta",
-                  "transl": {
-                    "@value": "intérieur des terres",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "odi",
-                  "transl": {
-                    "@value": "alos",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ona",
-                  "transl": {
-                    "@value": "ses",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mai",
-                  "transl": {
-                    "@value": "morceau",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "titi",
-                  "transl": {
-                    "@value": "manou",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 78440,
-          "end": 84160
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a019",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "siage ona titi, go ia hano pangani\". ",
-              "transl": {
-                "@value": "il n'en a point, il va tout nu\".",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "siage",
-                  "transl": {
-                    "@value": "ne pas y avoir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ona",
-                  "transl": {
-                    "@value": "ses",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "titi",
-                  "transl": {
-                    "@value": "manou",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "go",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ia",
-                  "transl": {
-                    "@value": "il",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "pangani",
-                  "transl": {
-                    "@value": "nu",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 84160,
-          "end": 86800
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a020",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Go ia hano gi fafo alikoa gilaaua de uu. ",
-              "transl": {
-                "@value": "Alors le crabe s'extirpe des palmes de cocotier et se lance à la poursuite des deux bernard-l'hermite.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Go",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ia",
-                  "transl": {
-                    "@value": "il",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gi",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fafo",
-                  "transl": {
-                    "@value": "dehors",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "alikoa",
-                  "transl": {
-                    "@value": "poursuivre",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaaua",
-                  "transl": {
-                    "@value": "eux deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "uu",
-                  "transl": {
-                    "@value": "crabe de cocotier",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 86800,
-          "end": 89300
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a021",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Odi goa kumia fokisia gilaaua, odi gilaa de geny tele tuai o futituina de tui laso e mumaha de kete. ",
-              "transl": {
-                "@value": "Il les rattrape, car tous deux courent péniblement en traînant leur sexe, et leurs lourdes coquilles.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Odi",
-                  "transl": {
-                    "@value": "ensuite",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "goa",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "kumia",
-                  "transl": {
-                    "@value": "attraper",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fokisia",
-                  "transl": {
-                    "@value": "de nouveau",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaaua",
-                  "transl": {
-                    "@value": "eux deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "odi",
-                  "transl": {
-                    "@value": "et",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "geny",
-                  "transl": {
-                    "@value": "avec fatigue",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tele",
-                  "transl": {
-                    "@value": "courir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tuai",
-                  "transl": {
-                    "@value": "en retard",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "pour",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "futituina",
-                  "transl": {
-                    "@value": "traîner",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tui",
-                  "transl": {
-                    "@value": "ensemble",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "laso",
-                  "transl": {
-                    "@value": "sexe",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mumaha",
-                  "transl": {
-                    "@value": "lourd",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "la",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "kete",
-                  "transl": {
-                    "@value": "coquille",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 89300,
-          "end": 96560
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a022",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Maalie de uu e tele naa fagasaa hua dona fai tui laso, siage hona kete, siage ona mai titi. ",
-              "transl": {
-                "@value": "Le crabe de cocotier, lui, est à l'aise, il court en montrant son sexe, il n'a ni coquille ni manou.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Maalie",
-                  "transl": {
-                    "@value": "bien",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "uu",
-                  "transl": {
-                    "@value": "crabe de cocotier",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tele",
-                  "transl": {
-                    "@value": "courir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "naa",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fagasaa",
-                  "transl": {
-                    "@value": "visible",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hua",
-                  "transl": {
-                    "@value": "seulement",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "dona",
-                  "transl": {
-                    "@value": "son",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tui",
-                  "transl": {
-                    "@value": "ensemble",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "laso",
-                  "transl": {
-                    "@value": "sexe",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "siage",
-                  "transl": {
-                    "@value": "ne pas y avoir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hona",
-                  "transl": {
-                    "@value": "sa",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "kete",
-                  "transl": {
-                    "@value": "coquille",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "siage",
-                  "transl": {
-                    "@value": "ne pas y avoir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ona",
-                  "transl": {
-                    "@value": "son",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mai",
-                  "transl": {
-                    "@value": "morceau",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "titi",
-                  "transl": {
-                    "@value": "manou",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 96560,
-          "end": 102219.9
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a023",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Awe, a alili laa na hulu i loto, ",
-              "transl": {
-                "@value": "Le troca est rentré dans sa coquille,",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Awe",
-                  "transl": {
-                    "@value": "ainsi",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "a",
-                  "transl": {
-                    "@value": "art.pers.",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "alili",
-                  "transl": {
-                    "@value": "troca",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "laa",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "na",
-                  "transl": {
-                    "@value": "passé",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hulu",
-                  "transl": {
-                    "@value": "entrer",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "loto",
-                  "transl": {
-                    "@value": "intérieur",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 102219.9,
-          "end": 105439.9
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a024",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "na sola gi lunga; \"o kumia goulua\". ",
-              "transl": {
-                "@value": "il s'enfuit vers le haut ; \"je vais vous attraper tous les deux !\"",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "na",
-                  "transl": {
-                    "@value": "passé",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "sola",
-                  "transl": {
-                    "@value": "s'enfuir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gi",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lunga",
-                  "transl": {
-                    "@value": "en haut",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "kumia",
-                  "transl": {
-                    "@value": "attraper",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "goulua",
-                  "transl": {
-                    "@value": "vous deux",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 105439.9,
-          "end": 109859.9
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a025",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "O gilaa laku fogisia naa lua mai titi, o gilaa hano huage mumaha de tele. ",
-              "transl": {
-                "@value": "Les deux bernard-l'hermite jettent leurs deux manous et peuvent alors avancer, leur course n'est plus alourdie.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "O",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "laku",
-                  "transl": {
-                    "@value": "jeter",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fogisia",
-                  "transl": {
-                    "@value": "de nouveau",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "naa",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lua",
-                  "transl": {
-                    "@value": "deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mai",
-                  "transl": {
-                    "@value": "morceau",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "titi",
-                  "transl": {
-                    "@value": "manou",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "huage",
-                  "transl": {
-                    "@value": "ne plus être",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mumaha",
-                  "transl": {
-                    "@value": "lourd",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "la",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tele",
-                  "transl": {
-                    "@value": "course",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 109859.9,
-          "end": 114560
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a026",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ga dena foki nei gilaa de hano aduhua lava la, gilaa de maa hano, ",
-              "transl": {
-                "@value": "Et jusqu'à aujourd'hui, ils vont toujours ainsi ; ils ont la honte,",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Ga",
-                  "transl": {
-                    "@value": "et",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "dena",
-                  "transl": {
-                    "@value": "cela",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "foki",
-                  "transl": {
-                    "@value": "jusqu'à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "nei",
-                  "transl": {
-                    "@value": "aujourd'hui",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "aduhua",
-                  "transl": {
-                    "@value": "toujours",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lava",
-                  "transl": {
-                    "@value": "emph.",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "la",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "maa",
-                  "transl": {
-                    "@value": "avoir honte",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 114560,
-          "end": 120840.1
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a027",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "hano pangani veli itahoo naa e isi aduhua lava ola mai titi, o gilaa hano lava naa o hulu i loto de fai alili aduhua. ",
-              "transl": {
-                "@value": "ils vont tout nus, alors qu'autrefois, ils portaient toujours leurs manous ; à présent, ils doivent entrer dans une coquille.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "pangani",
-                  "transl": {
-                    "@value": "nu",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "veli",
-                  "transl": {
-                    "@value": "parce que",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "itahoo",
-                  "transl": {
-                    "@value": "autrefois",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "naa",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "isi",
-                  "transl": {
-                    "@value": "y avoir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "aduhua",
-                  "transl": {
-                    "@value": "toujours",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lava",
-                  "transl": {
-                    "@value": "emph.",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ola",
-                  "transl": {
-                    "@value": "leur",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mai",
-                  "transl": {
-                    "@value": "morceau",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "titi",
-                  "transl": {
-                    "@value": "manou",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lava",
-                  "transl": {
-                    "@value": "emph.",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "naa",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "pour",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hulu",
-                  "transl": {
-                    "@value": "entrer",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "loto",
-                  "transl": {
-                    "@value": "intérieur",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "alili",
-                  "transl": {
-                    "@value": "troca",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "aduhua",
-                  "transl": {
-                    "@value": "toujours",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 120840.1,
-          "end": 129960
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a028",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ga gilaa hano la o kitea de fenua gilaa de hulu i loto o dola mook pela penei e isi ni fai maa lela gilaa de hulu menu i ai o mumuni belaa. ",
-              "transl": {
-                "@value": "Quand ils voient quelqu'un, ils rentrent dans une boîte vide, ou dans n'importe quoi d'autre, pour s'y cacher.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Ga",
-                  "transl": {
-                    "@value": "quand",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "la",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "pour",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "kitea",
-                  "transl": {
-                    "@value": "voir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "les",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fenua",
-                  "transl": {
-                    "@value": "gens",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hulu",
-                  "transl": {
-                    "@value": "entrer",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "loto",
-                  "transl": {
-                    "@value": "intérieur",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "dola",
-                  "transl": {
-                    "@value": "leur",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mook",
-                  "transl": {
-                    "@value": "boîte",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "pela",
-                  "transl": {
-                    "@value": "comme",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "penei",
-                  "transl": {
-                    "@value": "comme ceci",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "isi",
-                  "transl": {
-                    "@value": "y avoir",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ni",
-                  "transl": {
-                    "@value": "des",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "maa",
-                  "transl": {
-                    "@value": "morceau",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lela",
-                  "transl": {
-                    "@value": "chose-là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gilaa",
-                  "transl": {
-                    "@value": "ils deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hulu",
-                  "transl": {
-                    "@value": "entrer",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "menu",
-                  "transl": {
-                    "@value": "n'importe comment",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "i",
-                  "transl": {
-                    "@value": "à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ai",
-                  "transl": {
-                    "@value": "là",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "pour",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mumuni",
-                  "transl": {
-                    "@value": "se cacher",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "belaa",
-                  "transl": {
-                    "@value": "ainsi",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 129960,
-          "end": 138500
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a029",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ga de uu e he gade maa veli na ia he gade tau titi mai tuai. ",
-              "transl": {
-                "@value": "Le crabe de cocotier, lui, n'a pas honte, car, depuis la nuit des temps, il n'a jamais porté de manou.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Ga",
-                  "transl": {
-                    "@value": "et",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "uu",
-                  "transl": {
-                    "@value": "crabe de cocotier",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "e",
-                  "transl": {
-                    "@value": "asp.gén",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "he",
-                  "transl": {
-                    "@value": "ne pas",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gade",
-                  "transl": {
-                    "@value": "vraiment",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "maa",
-                  "transl": {
-                    "@value": "avoir honte",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "veli",
-                  "transl": {
-                    "@value": "parce que",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "na",
-                  "transl": {
-                    "@value": "passé",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ia",
-                  "transl": {
-                    "@value": "il",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "he",
-                  "transl": {
-                    "@value": "ne pas",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gade",
-                  "transl": {
-                    "@value": "vraiment",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tau",
-                  "transl": {
-                    "@value": "mettre",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "titi",
-                  "transl": {
-                    "@value": "manou",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mai",
-                  "transl": {
-                    "@value": "venant de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tuai",
-                  "transl": {
-                    "@value": "jadis",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 138500,
-          "end": 142620.1
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a030",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Na ia hano pangani lava mai tuai dou maatua foki lava nei go ia gai pangani aduhua lava nei; ",
-              "transl": {
-                "@value": "Il va tout nu depuis l'époque de ses ancêtres jusqu'à nos jours, il se promène encore nu aujourd'hui,",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Na",
-                  "transl": {
-                    "@value": "passé",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ia",
-                  "transl": {
-                    "@value": "il",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "hano",
-                  "transl": {
-                    "@value": "aller",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "pangani",
-                  "transl": {
-                    "@value": "nu",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lava",
-                  "transl": {
-                    "@value": "emph.",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mai",
-                  "transl": {
-                    "@value": "venant de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tuai",
-                  "transl": {
-                    "@value": "jadis",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "dou",
-                  "transl": {
-                    "@value": "tes",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "maatua",
-                  "transl": {
-                    "@value": "vieux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "foki",
-                  "transl": {
-                    "@value": "jusqu'à",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lava",
-                  "transl": {
-                    "@value": "emph.",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "nei",
-                  "transl": {
-                    "@value": "maintenant",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "go",
-                  "transl": {
-                    "@value": "accompli",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ia",
-                  "transl": {
-                    "@value": "il",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gai",
-                  "transl": {
-                    "@value": "encore",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "pangani",
-                  "transl": {
-                    "@value": "nu",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "aduhua",
-                  "transl": {
-                    "@value": "toujours",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lava",
-                  "transl": {
-                    "@value": "emph.",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "nei",
-                  "transl": {
-                    "@value": "maintenant",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 142620.1,
-          "end": 147900
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a031",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "he gade tau titi. ",
-              "transl": {
-                "@value": "il ne porte pas de manou.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "he",
-                  "transl": {
-                    "@value": "ne pas",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "gade",
-                  "transl": {
-                    "@value": "vraiment",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "tau",
-                  "transl": {
-                    "@value": "mettre",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "titi",
-                  "transl": {
-                    "@value": "manou",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 147900,
-          "end": 150400
-        },
-        {
-          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a032",
-          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Go dena de fai histoire o lua fai mocika ma de uu. ",
-              "transl": {
-                "@value": "C'était l'histoire des deux bernard-l'hermite et du crabe de cocotier.",
-                "@language": "fr"
-              },
-              "words": [
-                {
-                  "content": "Go",
-                  "transl": {
-                    "@value": "c'est",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "dena",
-                  "transl": {
-                    "@value": "cela",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "la",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petite",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "histoire",
-                  "transl": {
-                    "@value": "histoire",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "o",
-                  "transl": {
-                    "@value": "de",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "lua",
-                  "transl": {
-                    "@value": "deux",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "fai",
-                  "transl": {
-                    "@value": "petit",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "mocika",
-                  "transl": {
-                    "@value": "bernard-l'hermite",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "ma",
-                  "transl": {
-                    "@value": "et",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "de",
-                  "transl": {
-                    "@value": "le",
-                    "@language": "fr"
-                  }
-                },
-                {
-                  "content": "uu",
-                  "transl": {
-                    "@value": "crabe de cocotier",
-                    "@language": "fr"
-                  }
-                }
-              ]
-            }
-          },
-          "begin": 150400,
-          "end": 155140
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-CFPP2000_11_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:51+00:00",
-        "dc:modified": "2016-06-01T23:47:51+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "Entretien de Louise Liotard et de Jeane Mallet 1"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/344490.wav",
-          "meta": {
-            "dc:duration": 2752000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "Entretien de Louise Liotard et de Jeane Mallet 1"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/cfpp2000/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.mp3",
-          "meta": {
-            "dc:duration": 2752000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "Entretien de Louise Liotard et de Jeane Mallet 1"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/cfpp2000/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.wav",
-          "meta": {
-            "dc:duration": 2752000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "Entretien de Louise Liotard et de Jeane Mallet 1"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [
-        {
-          "id": "topics",
-          "content": {
-            "mimetype": "application/json",
-            "data": [
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc001",
-                "desc": "arrivée des parents à Saint-Ouen"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc002",
-                "desc": "déménagement dans saint-Ouen"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc003",
-                "desc": "changements dans le quartier"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc004",
-                "desc": "changement de la population"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc005",
-                "desc": "bombardement de la tour de St-Ouen"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc006",
-                "desc": "jeu de hasard (kéno)"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc007",
-                "desc": "endroits fréquentés"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc008",
-                "desc": "agression"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc009",
-                "desc": "fêtes dans le quartier"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc010",
-                "desc": "voisins d'immeuble"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc011",
-                "desc": "changements de modes de vie"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc012",
-                "desc": "vieux St Ouen, nouveau St Ouen"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc013",
-                "desc": "les chiffonniers"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc014",
-                "desc": "mari marchand de bouteilles d'occasion"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc015",
-                "desc": "déplacements"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc016",
-                "desc": "établissements scolaires"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc017",
-                "desc": "le nouveau-né adopté par Josephine Baker"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc018",
-                "desc": "Jeanne et Mitterrand dans la Nièvre"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc019",
-                "desc": "Fernand lefort maire de saint Ouen"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc020",
-                "desc": "les langues à Saint Ouen"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc021",
-                "desc": "variétés de français"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc022",
-                "desc": "problèmes économiques"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc023",
-                "desc": "le travail après 40"
-              }
-            ]
-          }
-        },
-        {
-          "id": "speakers",
-          "content": {
-            "mimetype": "application/json",
-            "data": [
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_spkr001",
-                "name": "Jeanne"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_spkr002",
-                "name": "Louise"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_spkr003",
-                "name": "Marc"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_spkr004",
-                "name": "Anne"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_spkr005",
-                "name": "Farah"
-              },
-              {
-                "id": "11280.100/crdo-CFPP2000_11_SOUND_spkr006",
-                "name": "?"
-              }
-            ]
-          }
-        }
-      ],
-      "lists": [
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn001",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0001"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0002"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0003"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0004"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0005"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0006"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0007"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0008"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0009"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0010"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0011"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0012"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0013"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0014"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0015"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0016"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0017"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0018"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0019"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0020"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0021"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0022"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0023"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0024"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0025"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0026"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0027"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0028"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0029"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0030"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0031"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0032"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0033"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0034"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0035"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0036"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0037"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0038"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0039"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0040"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0041"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0042"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0043"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0044"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0045"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0046"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0047"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0048"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0049"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0050"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0051"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0052"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0053"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0054"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0055"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0056"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0057"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0058"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0059"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0060"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0061"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0062"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0063"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0064"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0065"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0066"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0067"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0068"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0069"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0070"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0071"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0072"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0073"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0074"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0075"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0076"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc001"
-            },
-            "corpus:begin": 0,
-            "corpus:end": 280537
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn002",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0077"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0078"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0079"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0080"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0081"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0082"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0083"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0084"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0085"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0086"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0087"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0088"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0089"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0090"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0091"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0092"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0093"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0094"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0095"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0096"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0097"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0098"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0099"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0100"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0101"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0102"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0103"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0104"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0105"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0106"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0107"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0108"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0109"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0110"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0111"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0112"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0113"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0114"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0115"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0116"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0117"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0118"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0119"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0120"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0121"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0122"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc002"
-            },
-            "corpus:begin": 280537,
-            "corpus:end": 506254
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn003",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0123"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0124"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0125"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0126"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0127"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0128"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0129"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0130"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0131"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0132"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0133"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0134"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0135"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0136"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0137"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0138"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0139"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0140"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0141"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0142"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0143"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0144"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0145"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0146"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0147"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0148"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0149"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0150"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0151"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0152"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0153"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0154"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0155"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0156"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0157"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0158"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0159"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0160"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0161"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0162"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0163"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0164"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0165"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc003"
-            },
-            "corpus:begin": 506254,
-            "corpus:end": 673079
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn004",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0166"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0167"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0168"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0169"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0170"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0171"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0172"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0173"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc004"
-            },
-            "corpus:begin": 673079,
-            "corpus:end": 708359
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn005",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0174"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0175"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0176"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0177"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0178"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0179"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0180"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0181"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0182"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0183"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0184"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0185"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0186"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0187"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0188"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0189"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0190"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0191"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0192"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0193"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc005"
-            },
-            "corpus:begin": 708359,
-            "corpus:end": 775065
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn006",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0194"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0195"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0196"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0197"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0198"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0199"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0200"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0201"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0202"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0203"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0204"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0205"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0206"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0207"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0208"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0209"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0210"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0211"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0212"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0213"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0214"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0215"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc006"
-            },
-            "corpus:begin": 775065,
-            "corpus:end": 843705
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn007",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0216"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0217"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc007"
-            },
-            "corpus:begin": 843705,
-            "corpus:end": 855814
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn008",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0218"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0219"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0220"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0221"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0222"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0223"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0224"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0225"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0226"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0227"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0228"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0229"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0230"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0231"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0232"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0233"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0234"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0235"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0236"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0237"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0238"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0239"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0240"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0241"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0242"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0243"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0244"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0245"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0246"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0247"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0248"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0249"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0250"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0251"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0252"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0253"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0254"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0255"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0256"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc008"
-            },
-            "corpus:begin": 855814,
-            "corpus:end": 1116332
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn009",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0257"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0258"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0259"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0260"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0261"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0262"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0263"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0264"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0265"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0266"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0267"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0268"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0269"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0270"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0271"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0272"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0273"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0274"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0275"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0276"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0277"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc009"
-            },
-            "corpus:begin": 1116332,
-            "corpus:end": 1229069
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn010",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0278"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0279"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0280"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0281"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0282"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0283"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0284"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0285"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0286"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0287"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0288"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0289"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0290"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0291"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0292"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0293"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0294"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0295"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0296"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0297"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0298"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0299"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0300"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0301"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0302"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0303"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0304"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0305"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0306"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0307"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0308"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0309"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0310"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0311"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0312"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0313"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0314"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0315"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0316"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0317"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0318"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0319"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0320"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0321"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0322"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0323"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0324"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0325"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0326"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0327"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc010"
-            },
-            "corpus:begin": 1229069,
-            "corpus:end": 1413436
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn011",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0328"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0329"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0330"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0331"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0332"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0333"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0334"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0335"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0336"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0337"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0338"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0339"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0340"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc011"
-            },
-            "corpus:begin": 1413436,
-            "corpus:end": 1473666
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn012",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0341"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0342"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0343"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0344"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0345"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0346"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0347"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0348"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0349"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0350"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0351"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0352"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0353"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0354"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0355"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0356"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0357"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0358"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0359"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0360"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0361"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0362"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0363"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0364"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0365"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0366"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0367"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0368"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0369"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0370"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0371"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0372"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0373"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0374"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0375"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0376"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0377"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0378"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0379"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0380"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0381"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0382"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0383"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0384"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0385"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0386"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc012"
-            },
-            "corpus:begin": 1473666,
-            "corpus:end": 1636520
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn013",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0387"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0388"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0389"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0390"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0391"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0392"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0393"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0394"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0395"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0396"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc013"
-            },
-            "corpus:begin": 1636520,
-            "corpus:end": 1679023
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn014",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0397"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0398"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0399"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0400"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0401"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0402"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0403"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0404"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0405"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0406"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0407"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc014"
-            },
-            "corpus:begin": 1679023,
-            "corpus:end": 1720703
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn015",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0408"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0409"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0410"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0411"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0412"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0413"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0414"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0415"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0416"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0417"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0418"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0419"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0420"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0421"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0422"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0423"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0424"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0425"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0426"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0427"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0428"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0429"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc015"
-            },
-            "corpus:begin": 1720703,
-            "corpus:end": 1828725
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn016",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0430"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0431"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0432"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0433"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0434"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0435"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0436"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc016"
-            },
-            "corpus:begin": 1828725,
-            "corpus:end": 1861903
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn017",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0437"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0438"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0439"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0440"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0441"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0442"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0443"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0444"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0445"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0446"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0447"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0448"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0449"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0450"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0451"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0452"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0453"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0454"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0455"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0456"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0457"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0458"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0459"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0460"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0461"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0462"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0463"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0464"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0465"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0466"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0467"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0468"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0469"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0470"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0471"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0472"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0473"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0474"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc017"
-            },
-            "corpus:begin": 1861903,
-            "corpus:end": 2017307
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn018",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0475"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0476"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0477"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0478"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0479"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0480"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0481"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0482"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0483"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0484"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0485"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0486"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0487"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0488"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0489"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0490"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0491"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0492"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0493"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0494"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0495"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0496"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0497"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0498"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0499"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0500"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0501"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0502"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0503"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0504"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0505"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0506"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0507"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0508"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0509"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0510"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0511"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0512"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0513"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0514"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0515"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0516"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc018"
-            },
-            "corpus:begin": 2017307,
-            "corpus:end": 2160611
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn019",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0517"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0518"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0519"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0520"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0521"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0522"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0523"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0524"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0525"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0526"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0527"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0528"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0529"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0530"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0531"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0532"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0533"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0534"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0535"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0536"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0537"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0538"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0539"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0540"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0541"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0542"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0543"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0544"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0545"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0546"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0547"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0548"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0549"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0550"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0551"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0552"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0553"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0554"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0555"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0556"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0557"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0558"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0559"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0560"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0561"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0562"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0563"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0564"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0565"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0566"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0567"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc019"
-            },
-            "corpus:begin": 2160611,
-            "corpus:end": 2308716
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn020",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0568"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0569"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0570"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0571"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0572"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0573"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0574"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0575"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0576"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0577"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0578"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0579"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc020"
-            },
-            "corpus:begin": 2308716,
-            "corpus:end": 2357111
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn021",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0580"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0581"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0582"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0583"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0584"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0585"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0586"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0587"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0588"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0589"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0590"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0591"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0592"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0593"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0594"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0595"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0596"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0597"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0598"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0599"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0600"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0601"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0602"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0603"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0604"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0605"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0606"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0607"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0608"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0609"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0610"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0611"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0612"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0613"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0614"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0615"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0616"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0617"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0618"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0619"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0620"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0621"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0622"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc021"
-            },
-            "corpus:begin": 2357111,
-            "corpus:end": 2527679
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn022",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0623"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0624"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0625"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0626"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0627"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0628"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0629"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0630"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0631"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0632"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0633"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0634"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0635"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc022"
-            },
-            "corpus:begin": 2527679,
-            "corpus:end": 2589097
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn023",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0636"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0637"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0638"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0639"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0640"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0641"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0642"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0643"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0644"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0645"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0646"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0647"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0648"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0649"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0650"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0651"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0652"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0653"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0654"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0655"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0656"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0657"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0658"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0659"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0660"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0661"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0662"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0663"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0664"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0665"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0666"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0667"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0668"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0669"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0670"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0671"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0672"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0673"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0674"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0675"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0676"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0677"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0678"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0679"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0680"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0681"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0682"
-            },
-            {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0683"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc023"
-            },
-            "corpus:begin": 2589097,
-            "corpus:end": 2752041
-          }
-        }
-      ],
-      "annotation-types": [
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0001",
-          "dc:title": "Turn 1",
-          "corpus:begin": 0,
-          "corpus:end": 63
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0002",
-          "dc:title": "Turn 2",
-          "corpus:begin": 63,
-          "corpus:end": 1396
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0003",
-          "dc:title": "Turn 3",
-          "corpus:begin": 1396,
-          "corpus:end": 4866
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0004",
-          "dc:title": "Turn 4",
-          "corpus:begin": 4866,
-          "corpus:end": 8970
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0005",
-          "dc:title": "Turn 5",
-          "corpus:begin": 8970,
-          "corpus:end": 12655
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0006",
-          "dc:title": "Turn 6",
-          "corpus:begin": 12655,
-          "corpus:end": 16705
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0007",
-          "dc:title": "Turn 7",
-          "corpus:begin": 16705,
-          "corpus:end": 19417
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0008",
-          "dc:title": "Turn 8",
-          "corpus:begin": 19417,
-          "corpus:end": 25832
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0009",
-          "dc:title": "Turn 9",
-          "corpus:begin": 25832,
-          "corpus:end": 27063
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0010",
-          "dc:title": "Turn 10",
-          "corpus:begin": 27063,
-          "corpus:end": 28037
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0011",
-          "dc:title": "Turn 11",
-          "corpus:begin": 28037,
-          "corpus:end": 30432
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0012",
-          "dc:title": "Turn 12",
-          "corpus:begin": 30432,
-          "corpus:end": 32150
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0013",
-          "dc:title": "Turn 13",
-          "corpus:begin": 32150,
-          "corpus:end": 33402
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0014",
-          "dc:title": "Turn 14",
-          "corpus:begin": 33402,
-          "corpus:end": 34079
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0015",
-          "dc:title": "Turn 15",
-          "corpus:begin": 34079,
-          "corpus:end": 37465
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0016",
-          "dc:title": "Turn 16",
-          "corpus:begin": 37465,
-          "corpus:end": 38993
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0017",
-          "dc:title": "Turn 17",
-          "corpus:begin": 38993,
-          "corpus:end": 43696
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0018",
-          "dc:title": "Turn 18",
-          "corpus:begin": 43696,
-          "corpus:end": 46324
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0019",
-          "dc:title": "Turn 19",
-          "corpus:begin": 46324,
-          "corpus:end": 49886
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0020",
-          "dc:title": "Turn 20",
-          "corpus:begin": 49886,
-          "corpus:end": 58513
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0021",
-          "dc:title": "Turn 21",
-          "corpus:begin": 58513,
-          "corpus:end": 61767
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0022",
-          "dc:title": "Turn 22",
-          "corpus:begin": 61767,
-          "corpus:end": 68454
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0023",
-          "dc:title": "Turn 23",
-          "corpus:begin": 68454,
-          "corpus:end": 71967
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0024",
-          "dc:title": "Turn 24",
-          "corpus:begin": 71967,
-          "corpus:end": 75851
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0025",
-          "dc:title": "Turn 25",
-          "corpus:begin": 75851,
-          "corpus:end": 79281
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0026",
-          "dc:title": "Turn 26",
-          "corpus:begin": 79281,
-          "corpus:end": 85185
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0027",
-          "dc:title": "Turn 27",
-          "corpus:begin": 85185,
-          "corpus:end": 88698
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0028",
-          "dc:title": "Turn 28",
-          "corpus:begin": 88698,
-          "corpus:end": 90726
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0029",
-          "dc:title": "Turn 29",
-          "corpus:begin": 90726,
-          "corpus:end": 91798
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0030",
-          "dc:title": "Turn 30",
-          "corpus:begin": 91798,
-          "corpus:end": 94775
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0031",
-          "dc:title": "Turn 31",
-          "corpus:begin": 94775,
-          "corpus:end": 97010
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0032",
-          "dc:title": "Turn 32",
-          "corpus:begin": 97010,
-          "corpus:end": 97431
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0033",
-          "dc:title": "Turn 33",
-          "corpus:begin": 97431,
-          "corpus:end": 102840
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0034",
-          "dc:title": "Turn 34",
-          "corpus:begin": 102840,
-          "corpus:end": 106641
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0035",
-          "dc:title": "Turn 35",
-          "corpus:begin": 106641,
-          "corpus:end": 108546
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0036",
-          "dc:title": "Turn 36",
-          "corpus:begin": 108546,
-          "corpus:end": 115852
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0037",
-          "dc:title": "Turn 37",
-          "corpus:begin": 115852,
-          "corpus:end": 116437
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0038",
-          "dc:title": "Turn 38",
-          "corpus:begin": 116437,
-          "corpus:end": 124361
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0039",
-          "dc:title": "Turn 39",
-          "corpus:begin": 124361,
-          "corpus:end": 125680
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0040",
-          "dc:title": "Turn 40",
-          "corpus:begin": 125680,
-          "corpus:end": 128451
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0041",
-          "dc:title": "Turn 41",
-          "corpus:begin": 128451,
-          "corpus:end": 133159
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0042",
-          "dc:title": "Turn 42",
-          "corpus:begin": 133159,
-          "corpus:end": 134775
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0043",
-          "dc:title": "Turn 43",
-          "corpus:begin": 134775,
-          "corpus:end": 135187
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0044",
-          "dc:title": "Turn 44",
-          "corpus:begin": 135187,
-          "corpus:end": 135558
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0045",
-          "dc:title": "Turn 45",
-          "corpus:begin": 135558,
-          "corpus:end": 138081
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0046",
-          "dc:title": "Turn 46",
-          "corpus:begin": 138081,
-          "corpus:end": 138906
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0047",
-          "dc:title": "Turn 47",
-          "corpus:begin": 138906,
-          "corpus:end": 140605
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0048",
-          "dc:title": "Turn 48",
-          "corpus:begin": 140605,
-          "corpus:end": 144489
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0049",
-          "dc:title": "Turn 49",
-          "corpus:begin": 144489,
-          "corpus:end": 147260
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0050",
-          "dc:title": "Turn 50",
-          "corpus:begin": 147260,
-          "corpus:end": 147928
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0051",
-          "dc:title": "Turn 51",
-          "corpus:begin": 147928,
-          "corpus:end": 149420
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0052",
-          "dc:title": "Turn 52",
-          "corpus:begin": 149420,
-          "corpus:end": 150492
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0053",
-          "dc:title": "Turn 53",
-          "corpus:begin": 150492,
-          "corpus:end": 164163
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0054",
-          "dc:title": "Turn 54",
-          "corpus:begin": 164163,
-          "corpus:end": 166706
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0055",
-          "dc:title": "Turn 55",
-          "corpus:begin": 166706,
-          "corpus:end": 175025
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0056",
-          "dc:title": "Turn 56",
-          "corpus:begin": 175025,
-          "corpus:end": 177145
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0057",
-          "dc:title": "Turn 57",
-          "corpus:begin": 177145,
-          "corpus:end": 210939
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0058",
-          "dc:title": "Turn 58",
-          "corpus:begin": 210939,
-          "corpus:end": 214709
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0059",
-          "dc:title": "Turn 59",
-          "corpus:begin": 214709,
-          "corpus:end": 221166
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0060",
-          "dc:title": "Turn 60",
-          "corpus:begin": 221166,
-          "corpus:end": 222461
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0061",
-          "dc:title": "Turn 61",
-          "corpus:begin": 222461,
-          "corpus:end": 224390
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0062",
-          "dc:title": "Turn 62",
-          "corpus:begin": 224390,
-          "corpus:end": 228054
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0063",
-          "dc:title": "Turn 63",
-          "corpus:begin": 228054,
-          "corpus:end": 230703
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0064",
-          "dc:title": "Turn 64",
-          "corpus:begin": 230703,
-          "corpus:end": 231130
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0065",
-          "dc:title": "Turn 65",
-          "corpus:begin": 231130,
-          "corpus:end": 238454
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0066",
-          "dc:title": "Turn 66",
-          "corpus:begin": 238454,
-          "corpus:end": 239195
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0067",
-          "dc:title": "Turn 67",
-          "corpus:begin": 239195,
-          "corpus:end": 244002
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0068",
-          "dc:title": "Turn 68",
-          "corpus:begin": 244002,
-          "corpus:end": 250967
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0069",
-          "dc:title": "Turn 69",
-          "corpus:begin": 250967,
-          "corpus:end": 259620
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0070",
-          "dc:title": "Turn 70",
-          "corpus:begin": 259620,
-          "corpus:end": 261321
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0071",
-          "dc:title": "Turn 71",
-          "corpus:begin": 261321,
-          "corpus:end": 267715
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0072",
-          "dc:title": "Turn 72",
-          "corpus:begin": 267715,
-          "corpus:end": 268756
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0073",
-          "dc:title": "Turn 73",
-          "corpus:begin": 268756,
-          "corpus:end": 276123
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0074",
-          "dc:title": "Turn 74",
-          "corpus:begin": 276123,
-          "corpus:end": 276466
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0075",
-          "dc:title": "Turn 75",
-          "corpus:begin": 276466,
-          "corpus:end": 278438
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0076",
-          "dc:title": "Turn 76",
-          "corpus:begin": 278438,
-          "corpus:end": 280537
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0077",
-          "dc:title": "Turn 77",
-          "corpus:begin": 280537,
-          "corpus:end": 284899
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0078",
-          "dc:title": "Turn 78",
-          "corpus:begin": 284899,
-          "corpus:end": 286194
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0079",
-          "dc:title": "Turn 79",
-          "corpus:begin": 286194,
-          "corpus:end": 291318
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0080",
-          "dc:title": "Turn 80",
-          "corpus:begin": 291318,
-          "corpus:end": 296379
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0081",
-          "dc:title": "Turn 81",
-          "corpus:begin": 296379,
-          "corpus:end": 301456
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0082",
-          "dc:title": "Turn 82",
-          "corpus:begin": 301456,
-          "corpus:end": 314289
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0083",
-          "dc:title": "Turn 83",
-          "corpus:begin": 314289,
-          "corpus:end": 319564
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0084",
-          "dc:title": "Turn 84",
-          "corpus:begin": 319564,
-          "corpus:end": 322338
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0085",
-          "dc:title": "Turn 85",
-          "corpus:begin": 322338,
-          "corpus:end": 324434
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0086",
-          "dc:title": "Turn 86",
-          "corpus:begin": 324434,
-          "corpus:end": 334911
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0087",
-          "dc:title": "Turn 87",
-          "corpus:begin": 334911,
-          "corpus:end": 341368
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0088",
-          "dc:title": "Turn 88",
-          "corpus:begin": 341368,
-          "corpus:end": 354320
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0089",
-          "dc:title": "Turn 89",
-          "corpus:begin": 354320,
-          "corpus:end": 355399
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0090",
-          "dc:title": "Turn 90",
-          "corpus:begin": 355399,
-          "corpus:end": 359783
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0091",
-          "dc:title": "Turn 91",
-          "corpus:begin": 359783,
-          "corpus:end": 362982
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0092",
-          "dc:title": "Turn 92",
-          "corpus:begin": 362982,
-          "corpus:end": 365229
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0093",
-          "dc:title": "Turn 93",
-          "corpus:begin": 365229,
-          "corpus:end": 367962
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0094",
-          "dc:title": "Turn 94",
-          "corpus:begin": 367962,
-          "corpus:end": 371161
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0095",
-          "dc:title": "Turn 95",
-          "corpus:begin": 371161,
-          "corpus:end": 372710
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0096",
-          "dc:title": "Turn 96",
-          "corpus:begin": 372710,
-          "corpus:end": 385514
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0097",
-          "dc:title": "Turn 97",
-          "corpus:begin": 385514,
-          "corpus:end": 390511
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0098",
-          "dc:title": "Turn 98",
-          "corpus:begin": 390511,
-          "corpus:end": 410233
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0099",
-          "dc:title": "Turn 99",
-          "corpus:begin": 410233,
-          "corpus:end": 415484
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0100",
-          "dc:title": "Turn 100",
-          "corpus:begin": 415484,
-          "corpus:end": 420735
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0101",
-          "dc:title": "Turn 101",
-          "corpus:begin": 420735,
-          "corpus:end": 423934
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0102",
-          "dc:title": "Turn 102",
-          "corpus:begin": 423934,
-          "corpus:end": 428170
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0103",
-          "dc:title": "Turn 103",
-          "corpus:begin": 428170,
-          "corpus:end": 431940
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0104",
-          "dc:title": "Turn 104",
-          "corpus:begin": 431940,
-          "corpus:end": 434885
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0105",
-          "dc:title": "Turn 105",
-          "corpus:begin": 434885,
-          "corpus:end": 441744
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0106",
-          "dc:title": "Turn 106",
-          "corpus:begin": 441744,
-          "corpus:end": 443970
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0107",
-          "dc:title": "Turn 107",
-          "corpus:begin": 443970,
-          "corpus:end": 448671
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0108",
-          "dc:title": "Turn 108",
-          "corpus:begin": 448671,
-          "corpus:end": 455932
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0109",
-          "dc:title": "Turn 109",
-          "corpus:begin": 455932,
-          "corpus:end": 458200
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0110",
-          "dc:title": "Turn 110",
-          "corpus:begin": 458200,
-          "corpus:end": 460891
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0111",
-          "dc:title": "Turn 111",
-          "corpus:begin": 460891,
-          "corpus:end": 467327
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0112",
-          "dc:title": "Turn 112",
-          "corpus:begin": 467327,
-          "corpus:end": 469891
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0113",
-          "dc:title": "Turn 113",
-          "corpus:begin": 469891,
-          "corpus:end": 471376
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0114",
-          "dc:title": "Turn 114",
-          "corpus:begin": 471376,
-          "corpus:end": 477050
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0115",
-          "dc:title": "Turn 115",
-          "corpus:begin": 477050,
-          "corpus:end": 486194
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0116",
-          "dc:title": "Turn 116",
-          "corpus:begin": 486194,
-          "corpus:end": 487256
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0117",
-          "dc:title": "Turn 117",
-          "corpus:begin": 487256,
-          "corpus:end": 494728
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0118",
-          "dc:title": "Turn 118",
-          "corpus:begin": 494728,
-          "corpus:end": 497440
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0119",
-          "dc:title": "Turn 119",
-          "corpus:begin": 497440,
-          "corpus:end": 498798
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0120",
-          "dc:title": "Turn 120",
-          "corpus:begin": 498798,
-          "corpus:end": 504155
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0121",
-          "dc:title": "Turn 121",
-          "corpus:begin": 504155,
-          "corpus:end": 505534
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0122",
-          "dc:title": "Turn 122",
-          "corpus:begin": 505534,
-          "corpus:end": 506254
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0123",
-          "dc:title": "Turn 123",
-          "corpus:begin": 506254,
-          "corpus:end": 508776
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0124",
-          "dc:title": "Turn 124",
-          "corpus:begin": 508776,
-          "corpus:end": 512948
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0125",
-          "dc:title": "Turn 125",
-          "corpus:begin": 512948,
-          "corpus:end": 516485
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0126",
-          "dc:title": "Turn 126",
-          "corpus:begin": 516485,
-          "corpus:end": 525777
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0127",
-          "dc:title": "Turn 127",
-          "corpus:begin": 525777,
-          "corpus:end": 527664
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0128",
-          "dc:title": "Turn 128",
-          "corpus:begin": 527664,
-          "corpus:end": 530567
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0129",
-          "dc:title": "Turn 129",
-          "corpus:begin": 530567,
-          "corpus:end": 536880
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0130",
-          "dc:title": "Turn 130",
-          "corpus:begin": 536880,
-          "corpus:end": 542343
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0131",
-          "dc:title": "Turn 131",
-          "corpus:begin": 542343,
-          "corpus:end": 544289
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0132",
-          "dc:title": "Turn 132",
-          "corpus:begin": 544289,
-          "corpus:end": 546299
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0133",
-          "dc:title": "Turn 133",
-          "corpus:begin": 546299,
-          "corpus:end": 548149
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0134",
-          "dc:title": "Turn 134",
-          "corpus:begin": 548149,
-          "corpus:end": 553231
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0135",
-          "dc:title": "Turn 135",
-          "corpus:begin": 553231,
-          "corpus:end": 556790
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0136",
-          "dc:title": "Turn 136",
-          "corpus:begin": 556790,
-          "corpus:end": 561893
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0137",
-          "dc:title": "Turn 137",
-          "corpus:begin": 561893,
-          "corpus:end": 566784
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0138",
-          "dc:title": "Turn 138",
-          "corpus:begin": 566784,
-          "corpus:end": 569396
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0139",
-          "dc:title": "Turn 139",
-          "corpus:begin": 569396,
-          "corpus:end": 572256
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0140",
-          "dc:title": "Turn 140",
-          "corpus:begin": 572256,
-          "corpus:end": 574059
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0141",
-          "dc:title": "Turn 141",
-          "corpus:begin": 574059,
-          "corpus:end": 581024
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0142",
-          "dc:title": "Turn 142",
-          "corpus:begin": 581024,
-          "corpus:end": 581536
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0143",
-          "dc:title": "Turn 143",
-          "corpus:begin": 581536,
-          "corpus:end": 585454
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0144",
-          "dc:title": "Turn 144",
-          "corpus:begin": 585454,
-          "corpus:end": 592800
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0145",
-          "dc:title": "Turn 145",
-          "corpus:begin": 592800,
-          "corpus:end": 597988
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0146",
-          "dc:title": "Turn 146",
-          "corpus:begin": 597988,
-          "corpus:end": 607132
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0147",
-          "dc:title": "Turn 147",
-          "corpus:begin": 607132,
-          "corpus:end": 614160
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0148",
-          "dc:title": "Turn 148",
-          "corpus:begin": 614160,
-          "corpus:end": 619348
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0149",
-          "dc:title": "Turn 149",
-          "corpus:begin": 619348,
-          "corpus:end": 620749
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0150",
-          "dc:title": "Turn 150",
-          "corpus:begin": 620749,
-          "corpus:end": 622133
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0151",
-          "dc:title": "Turn 151",
-          "corpus:begin": 622133,
-          "corpus:end": 625015
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0152",
-          "dc:title": "Turn 152",
-          "corpus:begin": 625015,
-          "corpus:end": 627071
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0153",
-          "dc:title": "Turn 153",
-          "corpus:begin": 627071,
-          "corpus:end": 636008
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0154",
-          "dc:title": "Turn 154",
-          "corpus:begin": 636008,
-          "corpus:end": 636435
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0155",
-          "dc:title": "Turn 155",
-          "corpus:begin": 636435,
-          "corpus:end": 638978
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0156",
-          "dc:title": "Turn 156",
-          "corpus:begin": 638978,
-          "corpus:end": 640374
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0157",
-          "dc:title": "Turn 157",
-          "corpus:begin": 640374,
-          "corpus:end": 647191
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0158",
-          "dc:title": "Turn 158",
-          "corpus:begin": 647191,
-          "corpus:end": 650242
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0159",
-          "dc:title": "Turn 159",
-          "corpus:begin": 650242,
-          "corpus:end": 652214
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0160",
-          "dc:title": "Turn 160",
-          "corpus:begin": 652214,
-          "corpus:end": 656534
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0161",
-          "dc:title": "Turn 161",
-          "corpus:begin": 656534,
-          "corpus:end": 660770
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0162",
-          "dc:title": "Turn 162",
-          "corpus:begin": 660770,
-          "corpus:end": 665408
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0163",
-          "dc:title": "Turn 163",
-          "corpus:begin": 665408,
-          "corpus:end": 666385
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0164",
-          "dc:title": "Turn 164",
-          "corpus:begin": 666385,
-          "corpus:end": 669732
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0165",
-          "dc:title": "Turn 165",
-          "corpus:begin": 669732,
-          "corpus:end": 673079
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0166",
-          "dc:title": "Turn 166",
-          "corpus:begin": 673079,
-          "corpus:end": 682413
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0167",
-          "dc:title": "Turn 167",
-          "corpus:begin": 682413,
-          "corpus:end": 690901
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0168",
-          "dc:title": "Turn 168",
-          "corpus:begin": 690901,
-          "corpus:end": 691794
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0169",
-          "dc:title": "Turn 169",
-          "corpus:begin": 691794,
-          "corpus:end": 693470
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0170",
-          "dc:title": "Turn 170",
-          "corpus:begin": 693470,
-          "corpus:end": 698996
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0171",
-          "dc:title": "Turn 171",
-          "corpus:begin": 698996,
-          "corpus:end": 704120
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0172",
-          "dc:title": "Turn 172",
-          "corpus:begin": 704120,
-          "corpus:end": 707382
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0173",
-          "dc:title": "Turn 173",
-          "corpus:begin": 707382,
-          "corpus:end": 708359
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0174",
-          "dc:title": "Turn 174",
-          "corpus:begin": 708359,
-          "corpus:end": 714037
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0175",
-          "dc:title": "Turn 175",
-          "corpus:begin": 714037,
-          "corpus:end": 717130
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0176",
-          "dc:title": "Turn 176",
-          "corpus:begin": 717130,
-          "corpus:end": 724454
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0177",
-          "dc:title": "Turn 177",
-          "corpus:begin": 724454,
-          "corpus:end": 730657
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0178",
-          "dc:title": "Turn 178",
-          "corpus:begin": 730657,
-          "corpus:end": 739484
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0179",
-          "dc:title": "Turn 179",
-          "corpus:begin": 739484,
-          "corpus:end": 739848
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0180",
-          "dc:title": "Turn 180",
-          "corpus:begin": 739848,
-          "corpus:end": 741481
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0181",
-          "dc:title": "Turn 181",
-          "corpus:begin": 741481,
-          "corpus:end": 742243
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0182",
-          "dc:title": "Turn 182",
-          "corpus:begin": 742243,
-          "corpus:end": 747367
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0183",
-          "dc:title": "Turn 183",
-          "corpus:begin": 747367,
-          "corpus:end": 750608
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0184",
-          "dc:title": "Turn 184",
-          "corpus:begin": 750608,
-          "corpus:end": 754420
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0185",
-          "dc:title": "Turn 185",
-          "corpus:begin": 754420,
-          "corpus:end": 760073
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0186",
-          "dc:title": "Turn 186",
-          "corpus:begin": 760073,
-          "corpus:end": 762679
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0187",
-          "dc:title": "Turn 187",
-          "corpus:begin": 762679,
-          "corpus:end": 765984
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0188",
-          "dc:title": "Turn 188",
-          "corpus:begin": 765984,
-          "corpus:end": 767110
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0189",
-          "dc:title": "Turn 189",
-          "corpus:begin": 767110,
-          "corpus:end": 769124
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0190",
-          "dc:title": "Turn 190",
-          "corpus:begin": 769124,
-          "corpus:end": 769721
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0191",
-          "dc:title": "Turn 191",
-          "corpus:begin": 769721,
-          "corpus:end": 771989
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0192",
-          "dc:title": "Turn 192",
-          "corpus:begin": 771989,
-          "corpus:end": 773855
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0193",
-          "dc:title": "Turn 193",
-          "corpus:begin": 773855,
-          "corpus:end": 775065
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0194",
-          "dc:title": "Turn 194",
-          "corpus:begin": 775065,
-          "corpus:end": 778480
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0195",
-          "dc:title": "Turn 195",
-          "corpus:begin": 778480,
-          "corpus:end": 779627
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0196",
-          "dc:title": "Turn 196",
-          "corpus:begin": 779627,
-          "corpus:end": 780774
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0197",
-          "dc:title": "Turn 197",
-          "corpus:begin": 780774,
-          "corpus:end": 785919
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0198",
-          "dc:title": "Turn 198",
-          "corpus:begin": 785919,
-          "corpus:end": 797813
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0199",
-          "dc:title": "Turn 199",
-          "corpus:begin": 797813,
-          "corpus:end": 798258
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0200",
-          "dc:title": "Turn 200",
-          "corpus:begin": 798258,
-          "corpus:end": 800145
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0201",
-          "dc:title": "Turn 201",
-          "corpus:begin": 800145,
-          "corpus:end": 801736
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0202",
-          "dc:title": "Turn 202",
-          "corpus:begin": 801736,
-          "corpus:end": 804342
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0203",
-          "dc:title": "Turn 203",
-          "corpus:begin": 804342,
-          "corpus:end": 805870
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0204",
-          "dc:title": "Turn 204",
-          "corpus:begin": 805870,
-          "corpus:end": 809471
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0205",
-          "dc:title": "Turn 205",
-          "corpus:begin": 809471,
-          "corpus:end": 813156
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0206",
-          "dc:title": "Turn 206",
-          "corpus:begin": 813156,
-          "corpus:end": 813731
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0207",
-          "dc:title": "Turn 207",
-          "corpus:begin": 813731,
-          "corpus:end": 816972
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0208",
-          "dc:title": "Turn 208",
-          "corpus:begin": 816972,
-          "corpus:end": 818999
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0209",
-          "dc:title": "Turn 209",
-          "corpus:begin": 818999,
-          "corpus:end": 820890
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0210",
-          "dc:title": "Turn 210",
-          "corpus:begin": 820890,
-          "corpus:end": 827347
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0211",
-          "dc:title": "Turn 211",
-          "corpus:begin": 827347,
-          "corpus:end": 832175
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0212",
-          "dc:title": "Turn 212",
-          "corpus:begin": 832175,
-          "corpus:end": 834126
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0213",
-          "dc:title": "Turn 213",
-          "corpus:begin": 834126,
-          "corpus:end": 838785
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0214",
-          "dc:title": "Turn 214",
-          "corpus:begin": 838785,
-          "corpus:end": 840972
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0215",
-          "dc:title": "Turn 215",
-          "corpus:begin": 840972,
-          "corpus:end": 843705
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0216",
-          "dc:title": "Turn 216",
-          "corpus:begin": 843705,
-          "corpus:end": 853233
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0217",
-          "dc:title": "Turn 217",
-          "corpus:begin": 853233,
-          "corpus:end": 855814
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0218",
-          "dc:title": "Turn 218",
-          "corpus:begin": 855814,
-          "corpus:end": 860388
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0219",
-          "dc:title": "Turn 219",
-          "corpus:begin": 860388,
-          "corpus:end": 868114
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0220",
-          "dc:title": "Turn 220",
-          "corpus:begin": 868114,
-          "corpus:end": 871186
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0221",
-          "dc:title": "Turn 221",
-          "corpus:begin": 871186,
-          "corpus:end": 877262
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0222",
-          "dc:title": "Turn 222",
-          "corpus:begin": 877262,
-          "corpus:end": 878790
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0223",
-          "dc:title": "Turn 223",
-          "corpus:begin": 878790,
-          "corpus:end": 886707
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0224",
-          "dc:title": "Turn 224",
-          "corpus:begin": 886707,
-          "corpus:end": 890477
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0225",
-          "dc:title": "Turn 225",
-          "corpus:begin": 890477,
-          "corpus:end": 911109
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0226",
-          "dc:title": "Turn 226",
-          "corpus:begin": 911109,
-          "corpus:end": 912235
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0227",
-          "dc:title": "Turn 227",
-          "corpus:begin": 912235,
-          "corpus:end": 953190
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0228",
-          "dc:title": "Turn 228",
-          "corpus:begin": 953190,
-          "corpus:end": 953825
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0229",
-          "dc:title": "Turn 229",
-          "corpus:begin": 953825,
-          "corpus:end": 969633
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0230",
-          "dc:title": "Turn 230",
-          "corpus:begin": 969633,
-          "corpus:end": 970077
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0231",
-          "dc:title": "Turn 231",
-          "corpus:begin": 970077,
-          "corpus:end": 986753
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0232",
-          "dc:title": "Turn 232",
-          "corpus:begin": 986753,
-          "corpus:end": 993887
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0233",
-          "dc:title": "Turn 233",
-          "corpus:begin": 993887,
-          "corpus:end": 994272
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0234",
-          "dc:title": "Turn 234",
-          "corpus:begin": 994272,
-          "corpus:end": 1000094
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0235",
-          "dc:title": "Turn 235",
-          "corpus:begin": 1000094,
-          "corpus:end": 1004308
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0236",
-          "dc:title": "Turn 236",
-          "corpus:begin": 1004308,
-          "corpus:end": 1023226
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0237",
-          "dc:title": "Turn 237",
-          "corpus:begin": 1023226,
-          "corpus:end": 1025409
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0238",
-          "dc:title": "Turn 238",
-          "corpus:begin": 1025409,
-          "corpus:end": 1038467
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0239",
-          "dc:title": "Turn 239",
-          "corpus:begin": 1038467,
-          "corpus:end": 1040079
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0240",
-          "dc:title": "Turn 240",
-          "corpus:begin": 1040079,
-          "corpus:end": 1059759
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0241",
-          "dc:title": "Turn 241",
-          "corpus:begin": 1059759,
-          "corpus:end": 1068057
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0242",
-          "dc:title": "Turn 242",
-          "corpus:begin": 1068057,
-          "corpus:end": 1068590
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0243",
-          "dc:title": "Turn 243",
-          "corpus:begin": 1068590,
-          "corpus:end": 1072127
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0244",
-          "dc:title": "Turn 244",
-          "corpus:begin": 1072127,
-          "corpus:end": 1072868
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0245",
-          "dc:title": "Turn 245",
-          "corpus:begin": 1072868,
-          "corpus:end": 1078711
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0246",
-          "dc:title": "Turn 246",
-          "corpus:begin": 1078711,
-          "corpus:end": 1080217
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0247",
-          "dc:title": "Turn 247",
-          "corpus:begin": 1080217,
-          "corpus:end": 1083479
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0248",
-          "dc:title": "Turn 248",
-          "corpus:begin": 1083479,
-          "corpus:end": 1088709
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0249",
-          "dc:title": "Turn 249",
-          "corpus:begin": 1088709,
-          "corpus:end": 1091633
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0250",
-          "dc:title": "Turn 250",
-          "corpus:begin": 1091633,
-          "corpus:end": 1093372
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0251",
-          "dc:title": "Turn 251",
-          "corpus:begin": 1093372,
-          "corpus:end": 1097375
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0252",
-          "dc:title": "Turn 252",
-          "corpus:begin": 1097375,
-          "corpus:end": 1099876
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0253",
-          "dc:title": "Turn 253",
-          "corpus:begin": 1099876,
-          "corpus:end": 1105719
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0254",
-          "dc:title": "Turn 254",
-          "corpus:begin": 1105719,
-          "corpus:end": 1106760
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0255",
-          "dc:title": "Turn 255",
-          "corpus:begin": 1106760,
-          "corpus:end": 1114106
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0256",
-          "dc:title": "Turn 256",
-          "corpus:begin": 1114106,
-          "corpus:end": 1116332
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0257",
-          "dc:title": "Turn 257",
-          "corpus:begin": 1116332,
-          "corpus:end": 1126957
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0258",
-          "dc:title": "Turn 258",
-          "corpus:begin": 1126957,
-          "corpus:end": 1133075
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0259",
-          "dc:title": "Turn 259",
-          "corpus:begin": 1133075,
-          "corpus:end": 1133710
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0260",
-          "dc:title": "Turn 260",
-          "corpus:begin": 1133710,
-          "corpus:end": 1140019
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0261",
-          "dc:title": "Turn 261",
-          "corpus:begin": 1140019,
-          "corpus:end": 1143810
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0262",
-          "dc:title": "Turn 262",
-          "corpus:begin": 1143810,
-          "corpus:end": 1148024
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0263",
-          "dc:title": "Turn 263",
-          "corpus:begin": 1148024,
-          "corpus:end": 1154206
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0264",
-          "dc:title": "Turn 264",
-          "corpus:begin": 1154206,
-          "corpus:end": 1156389
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0265",
-          "dc:title": "Turn 265",
-          "corpus:begin": 1156389,
-          "corpus:end": 1158742
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0266",
-          "dc:title": "Turn 266",
-          "corpus:begin": 1158742,
-          "corpus:end": 1161052
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0267",
-          "dc:title": "Turn 267",
-          "corpus:begin": 1161052,
-          "corpus:end": 1163447
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0268",
-          "dc:title": "Turn 268",
-          "corpus:begin": 1163447,
-          "corpus:end": 1166798
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0269",
-          "dc:title": "Turn 269",
-          "corpus:begin": 1166798,
-          "corpus:end": 1170081
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0270",
-          "dc:title": "Turn 270",
-          "corpus:begin": 1170081,
-          "corpus:end": 1181789
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0271",
-          "dc:title": "Turn 271",
-          "corpus:begin": 1181789,
-          "corpus:end": 1187040
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0272",
-          "dc:title": "Turn 272",
-          "corpus:begin": 1187040,
-          "corpus:end": 1187886
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0273",
-          "dc:title": "Turn 273",
-          "corpus:begin": 1187886,
-          "corpus:end": 1193353
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0274",
-          "dc:title": "Turn 274",
-          "corpus:begin": 1193353,
-          "corpus:end": 1207223
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0275",
-          "dc:title": "Turn 275",
-          "corpus:begin": 1207223,
-          "corpus:end": 1207756
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0276",
-          "dc:title": "Turn 276",
-          "corpus:begin": 1207756,
-          "corpus:end": 1216117
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0277",
-          "dc:title": "Turn 277",
-          "corpus:begin": 1216117,
-          "corpus:end": 1229069
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0278",
-          "dc:title": "Turn 278",
-          "corpus:begin": 1229069,
-          "corpus:end": 1243227
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0279",
-          "dc:title": "Turn 279",
-          "corpus:begin": 1243227,
-          "corpus:end": 1244924
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0280",
-          "dc:title": "Turn 280",
-          "corpus:begin": 1244924,
-          "corpus:end": 1245732
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0281",
-          "dc:title": "Turn 281",
-          "corpus:begin": 1245732,
-          "corpus:end": 1248360
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0282",
-          "dc:title": "Turn 282",
-          "corpus:begin": 1248360,
-          "corpus:end": 1249845
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0283",
-          "dc:title": "Turn 283",
-          "corpus:begin": 1249845,
-          "corpus:end": 1250759
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0284",
-          "dc:title": "Turn 284",
-          "corpus:begin": 1250759,
-          "corpus:end": 1254444
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0285",
-          "dc:title": "Turn 285",
-          "corpus:begin": 1254444,
-          "corpus:end": 1256818
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0286",
-          "dc:title": "Turn 286",
-          "corpus:begin": 1256818,
-          "corpus:end": 1258434
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0287",
-          "dc:title": "Turn 287",
-          "corpus:begin": 1258434,
-          "corpus:end": 1259999
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0288",
-          "dc:title": "Turn 288",
-          "corpus:begin": 1259999,
-          "corpus:end": 1260459
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0289",
-          "dc:title": "Turn 289",
-          "corpus:begin": 1260459,
-          "corpus:end": 1260924
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0290",
-          "dc:title": "Turn 290",
-          "corpus:begin": 1260924,
-          "corpus:end": 1266294
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0291",
-          "dc:title": "Turn 291",
-          "corpus:begin": 1266294,
-          "corpus:end": 1279416
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0292",
-          "dc:title": "Turn 292",
-          "corpus:begin": 1279416,
-          "corpus:end": 1287396
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0293",
-          "dc:title": "Turn 293",
-          "corpus:begin": 1287396,
-          "corpus:end": 1293533
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0294",
-          "dc:title": "Turn 294",
-          "corpus:begin": 1293533,
-          "corpus:end": 1297007
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0295",
-          "dc:title": "Turn 295",
-          "corpus:begin": 1297007,
-          "corpus:end": 1325362
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0296",
-          "dc:title": "Turn 296",
-          "corpus:begin": 1325362,
-          "corpus:end": 1326657
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0297",
-          "dc:title": "Turn 297",
-          "corpus:begin": 1326657,
-          "corpus:end": 1330787
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0298",
-          "dc:title": "Turn 298",
-          "corpus:begin": 1330787,
-          "corpus:end": 1332336
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0299",
-          "dc:title": "Turn 299",
-          "corpus:begin": 1332336,
-          "corpus:end": 1333271
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0300",
-          "dc:title": "Turn 300",
-          "corpus:begin": 1333271,
-          "corpus:end": 1334375
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0301",
-          "dc:title": "Turn 301",
-          "corpus:begin": 1334375,
-          "corpus:end": 1345211
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0302",
-          "dc:title": "Turn 302",
-          "corpus:begin": 1345211,
-          "corpus:end": 1346290
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0303",
-          "dc:title": "Turn 303",
-          "corpus:begin": 1346290,
-          "corpus:end": 1347944
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0304",
-          "dc:title": "Turn 304",
-          "corpus:begin": 1347944,
-          "corpus:end": 1349641
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0305",
-          "dc:title": "Turn 305",
-          "corpus:begin": 1349641,
-          "corpus:end": 1355082
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0306",
-          "dc:title": "Turn 306",
-          "corpus:begin": 1355082,
-          "corpus:end": 1360756
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0307",
-          "dc:title": "Turn 307",
-          "corpus:begin": 1360756,
-          "corpus:end": 1369477
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0308",
-          "dc:title": "Turn 308",
-          "corpus:begin": 1369477,
-          "corpus:end": 1379933
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0309",
-          "dc:title": "Turn 309",
-          "corpus:begin": 1379933,
-          "corpus:end": 1382370
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0310",
-          "dc:title": "Turn 310",
-          "corpus:begin": 1382370,
-          "corpus:end": 1384554
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0311",
-          "dc:title": "Turn 311",
-          "corpus:begin": 1384554,
-          "corpus:end": 1386103
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0312",
-          "dc:title": "Turn 312",
-          "corpus:begin": 1386103,
-          "corpus:end": 1386805
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0313",
-          "dc:title": "Turn 313",
-          "corpus:begin": 1386805,
-          "corpus:end": 1387871
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0314",
-          "dc:title": "Turn 314",
-          "corpus:begin": 1387871,
-          "corpus:end": 1388692
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0315",
-          "dc:title": "Turn 315",
-          "corpus:begin": 1388692,
-          "corpus:end": 1389475
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0316",
-          "dc:title": "Turn 316",
-          "corpus:begin": 1389475,
-          "corpus:end": 1390325
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0317",
-          "dc:title": "Turn 317",
-          "corpus:begin": 1390325,
-          "corpus:end": 1393037
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0318",
-          "dc:title": "Turn 318",
-          "corpus:begin": 1393037,
-          "corpus:end": 1394145
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0319",
-          "dc:title": "Turn 319",
-          "corpus:begin": 1394145,
-          "corpus:end": 1396498
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0320",
-          "dc:title": "Turn 320",
-          "corpus:begin": 1396498,
-          "corpus:end": 1400987
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0321",
-          "dc:title": "Turn 321",
-          "corpus:begin": 1400987,
-          "corpus:end": 1403149
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0322",
-          "dc:title": "Turn 322",
-          "corpus:begin": 1403149,
-          "corpus:end": 1404342
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0323",
-          "dc:title": "Turn 323",
-          "corpus:begin": 1404342,
-          "corpus:end": 1405637
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0324",
-          "dc:title": "Turn 324",
-          "corpus:begin": 1405637,
-          "corpus:end": 1407461
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0325",
-          "dc:title": "Turn 325",
-          "corpus:begin": 1407461,
-          "corpus:end": 1409264
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0326",
-          "dc:title": "Turn 326",
-          "corpus:begin": 1409264,
-          "corpus:end": 1413161
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0327",
-          "dc:title": "Turn 327",
-          "corpus:begin": 1413161,
-          "corpus:end": 1413436
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0328",
-          "dc:title": "Turn 328",
-          "corpus:begin": 1413436,
-          "corpus:end": 1415429
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0329",
-          "dc:title": "Turn 329",
-          "corpus:begin": 1415429,
-          "corpus:end": 1416301
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0330",
-          "dc:title": "Turn 330",
-          "corpus:begin": 1416301,
-          "corpus:end": 1420727
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0331",
-          "dc:title": "Turn 331",
-          "corpus:begin": 1420727,
-          "corpus:end": 1427713
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0332",
-          "dc:title": "Turn 332",
-          "corpus:begin": 1427713,
-          "corpus:end": 1429791
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0333",
-          "dc:title": "Turn 333",
-          "corpus:begin": 1429791,
-          "corpus:end": 1437306
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0334",
-          "dc:title": "Turn 334",
-          "corpus:begin": 1437306,
-          "corpus:end": 1446238
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0335",
-          "dc:title": "Turn 335",
-          "corpus:begin": 1446238,
-          "corpus:end": 1446962
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0336",
-          "dc:title": "Turn 336",
-          "corpus:begin": 1446962,
-          "corpus:end": 1448405
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0337",
-          "dc:title": "Turn 337",
-          "corpus:begin": 1448405,
-          "corpus:end": 1449277
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0338",
-          "dc:title": "Turn 338",
-          "corpus:begin": 1449277,
-          "corpus:end": 1457786
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0339",
-          "dc:title": "Turn 339",
-          "corpus:begin": 1457786,
-          "corpus:end": 1468521
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0340",
-          "dc:title": "Turn 340",
-          "corpus:begin": 1468521,
-          "corpus:end": 1473666
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0341",
-          "dc:title": "Turn 341",
-          "corpus:begin": 1473666,
-          "corpus:end": 1485941
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0342",
-          "dc:title": "Turn 342",
-          "corpus:begin": 1485941,
-          "corpus:end": 1490430
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0343",
-          "dc:title": "Turn 343",
-          "corpus:begin": 1490430,
-          "corpus:end": 1491429
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0344",
-          "dc:title": "Turn 344",
-          "corpus:begin": 1491429,
-          "corpus:end": 1498055
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0345",
-          "dc:title": "Turn 345",
-          "corpus:begin": 1498055,
-          "corpus:end": 1504808
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0346",
-          "dc:title": "Turn 346",
-          "corpus:begin": 1504808,
-          "corpus:end": 1510186
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0347",
-          "dc:title": "Turn 347",
-          "corpus:begin": 1510186,
-          "corpus:end": 1510571
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0348",
-          "dc:title": "Turn 348",
-          "corpus:begin": 1510571,
-          "corpus:end": 1519376
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0349",
-          "dc:title": "Turn 349",
-          "corpus:begin": 1519376,
-          "corpus:end": 1522367
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0350",
-          "dc:title": "Turn 350",
-          "corpus:begin": 1522367,
-          "corpus:end": 1524233
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0351",
-          "dc:title": "Turn 351",
-          "corpus:begin": 1524233,
-          "corpus:end": 1527559
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0352",
-          "dc:title": "Turn 352",
-          "corpus:begin": 1527559,
-          "corpus:end": 1531287
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0353",
-          "dc:title": "Turn 353",
-          "corpus:begin": 1531287,
-          "corpus:end": 1538569
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0354",
-          "dc:title": "Turn 354",
-          "corpus:begin": 1538569,
-          "corpus:end": 1538929
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0355",
-          "dc:title": "Turn 355",
-          "corpus:begin": 1538929,
-          "corpus:end": 1540837
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0356",
-          "dc:title": "Turn 356",
-          "corpus:begin": 1540837,
-          "corpus:end": 1543655
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0357",
-          "dc:title": "Turn 357",
-          "corpus:begin": 1543655,
-          "corpus:end": 1548271
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0358",
-          "dc:title": "Turn 358",
-          "corpus:begin": 1548271,
-          "corpus:end": 1553332
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0359",
-          "dc:title": "Turn 359",
-          "corpus:begin": 1553332,
-          "corpus:end": 1554669
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0360",
-          "dc:title": "Turn 360",
-          "corpus:begin": 1554669,
-          "corpus:end": 1560665
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0361",
-          "dc:title": "Turn 361",
-          "corpus:begin": 1560665,
-          "corpus:end": 1562108
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0362",
-          "dc:title": "Turn 362",
-          "corpus:begin": 1562108,
-          "corpus:end": 1563868
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0363",
-          "dc:title": "Turn 363",
-          "corpus:begin": 1563868,
-          "corpus:end": 1566009
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0364",
-          "dc:title": "Turn 364",
-          "corpus:begin": 1566009,
-          "corpus:end": 1570139
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0365",
-          "dc:title": "Turn 365",
-          "corpus:begin": 1570139,
-          "corpus:end": 1570693
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0366",
-          "dc:title": "Turn 366",
-          "corpus:begin": 1570693,
-          "corpus:end": 1577954
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0367",
-          "dc:title": "Turn 367",
-          "corpus:begin": 1577954,
-          "corpus:end": 1585828
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0368",
-          "dc:title": "Turn 368",
-          "corpus:begin": 1585828,
-          "corpus:end": 1587588
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0369",
-          "dc:title": "Turn 369",
-          "corpus:begin": 1587588,
-          "corpus:end": 1590745
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0370",
-          "dc:title": "Turn 370",
-          "corpus:begin": 1590745,
-          "corpus:end": 1591028
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0371",
-          "dc:title": "Turn 371",
-          "corpus:begin": 1591028,
-          "corpus:end": 1595433
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0372",
-          "dc:title": "Turn 372",
-          "corpus:begin": 1595433,
-          "corpus:end": 1596262
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0373",
-          "dc:title": "Turn 373",
-          "corpus:begin": 1596262,
-          "corpus:end": 1602338
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0374",
-          "dc:title": "Turn 374",
-          "corpus:begin": 1602338,
-          "corpus:end": 1603294
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0375",
-          "dc:title": "Turn 375",
-          "corpus:begin": 1603294,
-          "corpus:end": 1604788
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0376",
-          "dc:title": "Turn 376",
-          "corpus:begin": 1604788,
-          "corpus:end": 1606569
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0377",
-          "dc:title": "Turn 377",
-          "corpus:begin": 1606569,
-          "corpus:end": 1607525
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0378",
-          "dc:title": "Turn 378",
-          "corpus:begin": 1607525,
-          "corpus:end": 1608037
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0379",
-          "dc:title": "Turn 379",
-          "corpus:begin": 1608037,
-          "corpus:end": 1608612
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0380",
-          "dc:title": "Turn 380",
-          "corpus:begin": 1608612,
-          "corpus:end": 1609695
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0381",
-          "dc:title": "Turn 381",
-          "corpus:begin": 1609695,
-          "corpus:end": 1614015
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0382",
-          "dc:title": "Turn 382",
-          "corpus:begin": 1614015,
-          "corpus:end": 1619363
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0383",
-          "dc:title": "Turn 383",
-          "corpus:begin": 1619363,
-          "corpus:end": 1620425
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0384",
-          "dc:title": "Turn 384",
-          "corpus:begin": 1620425,
-          "corpus:end": 1627559
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0385",
-          "dc:title": "Turn 385",
-          "corpus:begin": 1627559,
-          "corpus:end": 1632852
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0386",
-          "dc:title": "Turn 386",
-          "corpus:begin": 1632852,
-          "corpus:end": 1636520
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0387",
-          "dc:title": "Turn 387",
-          "corpus:begin": 1636520,
-          "corpus:end": 1643125
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0388",
-          "dc:title": "Turn 388",
-          "corpus:begin": 1643125,
-          "corpus:end": 1644589
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0389",
-          "dc:title": "Turn 389",
-          "corpus:begin": 1644589,
-          "corpus:end": 1652717
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0390",
-          "dc:title": "Turn 390",
-          "corpus:begin": 1652717,
-          "corpus:end": 1653014
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0391",
-          "dc:title": "Turn 391",
-          "corpus:begin": 1653014,
-          "corpus:end": 1659538
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0392",
-          "dc:title": "Turn 392",
-          "corpus:begin": 1659538,
-          "corpus:end": 1660769
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0393",
-          "dc:title": "Turn 393",
-          "corpus:begin": 1660769,
-          "corpus:end": 1667501
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0394",
-          "dc:title": "Turn 394",
-          "corpus:begin": 1667501,
-          "corpus:end": 1668013
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0395",
-          "dc:title": "Turn 395",
-          "corpus:begin": 1668013,
-          "corpus:end": 1674068
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0396",
-          "dc:title": "Turn 396",
-          "corpus:begin": 1674068,
-          "corpus:end": 1679023
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0397",
-          "dc:title": "Turn 397",
-          "corpus:begin": 1679023,
-          "corpus:end": 1683999
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0398",
-          "dc:title": "Turn 398",
-          "corpus:begin": 1683999,
-          "corpus:end": 1691783
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0399",
-          "dc:title": "Turn 399",
-          "corpus:begin": 1691783,
-          "corpus:end": 1695151
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0400",
-          "dc:title": "Turn 400",
-          "corpus:begin": 1695151,
-          "corpus:end": 1697165
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0401",
-          "dc:title": "Turn 401",
-          "corpus:begin": 1697165,
-          "corpus:end": 1698989
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0402",
-          "dc:title": "Turn 402",
-          "corpus:begin": 1698989,
-          "corpus:end": 1706931
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0403",
-          "dc:title": "Turn 403",
-          "corpus:begin": 1706931,
-          "corpus:end": 1708585
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0404",
-          "dc:title": "Turn 404",
-          "corpus:begin": 1708585,
-          "corpus:end": 1712905
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0405",
-          "dc:title": "Turn 405",
-          "corpus:begin": 1712905,
-          "corpus:end": 1717796
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0406",
-          "dc:title": "Turn 406",
-          "corpus:begin": 1717796,
-          "corpus:end": 1719345
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0407",
-          "dc:title": "Turn 407",
-          "corpus:begin": 1719345,
-          "corpus:end": 1720703
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0408",
-          "dc:title": "Turn 408",
-          "corpus:begin": 1720703,
-          "corpus:end": 1728599
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0409",
-          "dc:title": "Turn 409",
-          "corpus:begin": 1728599,
-          "corpus:end": 1731502
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0410",
-          "dc:title": "Turn 410",
-          "corpus:begin": 1731502,
-          "corpus:end": 1738467
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0411",
-          "dc:title": "Turn 411",
-          "corpus:begin": 1738467,
-          "corpus:end": 1740608
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0412",
-          "dc:title": "Turn 412",
-          "corpus:begin": 1740608,
-          "corpus:end": 1741966
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0413",
-          "dc:title": "Turn 413",
-          "corpus:begin": 1741966,
-          "corpus:end": 1746540
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0414",
-          "dc:title": "Turn 414",
-          "corpus:begin": 1746540,
-          "corpus:end": 1747111
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0415",
-          "dc:title": "Turn 415",
-          "corpus:begin": 1747111,
-          "corpus:end": 1758117
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0416",
-          "dc:title": "Turn 416",
-          "corpus:begin": 1758117,
-          "corpus:end": 1764489
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0417",
-          "dc:title": "Turn 417",
-          "corpus:begin": 1764489,
-          "corpus:end": 1768703
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0418",
-          "dc:title": "Turn 418",
-          "corpus:begin": 1768703,
-          "corpus:end": 1769553
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0419",
-          "dc:title": "Turn 419",
-          "corpus:begin": 1769553,
-          "corpus:end": 1773344
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0420",
-          "dc:title": "Turn 420",
-          "corpus:begin": 1773344,
-          "corpus:end": 1777347
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0421",
-          "dc:title": "Turn 421",
-          "corpus:begin": 1777347,
-          "corpus:end": 1779255
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0422",
-          "dc:title": "Turn 422",
-          "corpus:begin": 1779255,
-          "corpus:end": 1780770
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0423",
-          "dc:title": "Turn 423",
-          "corpus:begin": 1780770,
-          "corpus:end": 1788560
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0424",
-          "dc:title": "Turn 424",
-          "corpus:begin": 1788560,
-          "corpus:end": 1789601
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0425",
-          "dc:title": "Turn 425",
-          "corpus:begin": 1789601,
-          "corpus:end": 1791662
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0426",
-          "dc:title": "Turn 426",
-          "corpus:begin": 1791662,
-          "corpus:end": 1800489
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0427",
-          "dc:title": "Turn 427",
-          "corpus:begin": 1800489,
-          "corpus:end": 1800853
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0428",
-          "dc:title": "Turn 428",
-          "corpus:begin": 1800853,
-          "corpus:end": 1802105
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0429",
-          "dc:title": "Turn 429",
-          "corpus:begin": 1802105,
-          "corpus:end": 1828725
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0430",
-          "dc:title": "Turn 430",
-          "corpus:begin": 1828725,
-          "corpus:end": 1840344
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0431",
-          "dc:title": "Turn 431",
-          "corpus:begin": 1840344,
-          "corpus:end": 1844516
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0432",
-          "dc:title": "Turn 432",
-          "corpus:begin": 1844516,
-          "corpus:end": 1848223
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0433",
-          "dc:title": "Turn 433",
-          "corpus:begin": 1848223,
-          "corpus:end": 1848756
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0434",
-          "dc:title": "Turn 434",
-          "corpus:begin": 1848756,
-          "corpus:end": 1857159
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0435",
-          "dc:title": "Turn 435",
-          "corpus:begin": 1857159,
-          "corpus:end": 1858154
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0436",
-          "dc:title": "Turn 436",
-          "corpus:begin": 1858154,
-          "corpus:end": 1861903
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0437",
-          "dc:title": "Turn 437",
-          "corpus:begin": 1861903,
-          "corpus:end": 1875088
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0438",
-          "dc:title": "Turn 438",
-          "corpus:begin": 1875088,
-          "corpus:end": 1875621
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0439",
-          "dc:title": "Turn 439",
-          "corpus:begin": 1875621,
-          "corpus:end": 1887960
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0440",
-          "dc:title": "Turn 440",
-          "corpus:begin": 1887960,
-          "corpus:end": 1890080
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0441",
-          "dc:title": "Turn 441",
-          "corpus:begin": 1890080,
-          "corpus:end": 1894413
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0442",
-          "dc:title": "Turn 442",
-          "corpus:begin": 1894413,
-          "corpus:end": 1900087
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0443",
-          "dc:title": "Turn 443",
-          "corpus:begin": 1900087,
-          "corpus:end": 1900637
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0444",
-          "dc:title": "Turn 444",
-          "corpus:begin": 1900637,
-          "corpus:end": 1912891
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0445",
-          "dc:title": "Turn 445",
-          "corpus:begin": 1912891,
-          "corpus:end": 1913741
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0446",
-          "dc:title": "Turn 446",
-          "corpus:begin": 1913741,
-          "corpus:end": 1915802
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0447",
-          "dc:title": "Turn 447",
-          "corpus:begin": 1915802,
-          "corpus:end": 1921201
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0448",
-          "dc:title": "Turn 448",
-          "corpus:begin": 1921201,
-          "corpus:end": 1925754
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0449",
-          "dc:title": "Turn 449",
-          "corpus:begin": 1925754,
-          "corpus:end": 1929164
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0450",
-          "dc:title": "Turn 450",
-          "corpus:begin": 1929164,
-          "corpus:end": 1929757
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0451",
-          "dc:title": "Turn 451",
-          "corpus:begin": 1929757,
-          "corpus:end": 1932575
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0452",
-          "dc:title": "Turn 452",
-          "corpus:begin": 1932575,
-          "corpus:end": 1939772
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0453",
-          "dc:title": "Turn 453",
-          "corpus:begin": 1939772,
-          "corpus:end": 1941913
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0454",
-          "dc:title": "Turn 454",
-          "corpus:begin": 1941913,
-          "corpus:end": 1945429
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0455",
-          "dc:title": "Turn 455",
-          "corpus:begin": 1945429,
-          "corpus:end": 1955948
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0456",
-          "dc:title": "Turn 456",
-          "corpus:begin": 1955948,
-          "corpus:end": 1960738
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0457",
-          "dc:title": "Turn 457",
-          "corpus:begin": 1960738,
-          "corpus:end": 1961191
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0458",
-          "dc:title": "Turn 458",
-          "corpus:begin": 1961191,
-          "corpus:end": 1962845
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0459",
-          "dc:title": "Turn 459",
-          "corpus:begin": 1962845,
-          "corpus:end": 1967440
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0460",
-          "dc:title": "Turn 460",
-          "corpus:begin": 1967440,
-          "corpus:end": 1973766
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0461",
-          "dc:title": "Turn 461",
-          "corpus:begin": 1973766,
-          "corpus:end": 1975992
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0462",
-          "dc:title": "Turn 462",
-          "corpus:begin": 1975992,
-          "corpus:end": 1976800
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0463",
-          "dc:title": "Turn 463",
-          "corpus:begin": 1976800,
-          "corpus:end": 1978328
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0464",
-          "dc:title": "Turn 464",
-          "corpus:begin": 1978328,
-          "corpus:end": 1980109
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0465",
-          "dc:title": "Turn 465",
-          "corpus:begin": 1980109,
-          "corpus:end": 1980790
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0466",
-          "dc:title": "Turn 466",
-          "corpus:begin": 1980790,
-          "corpus:end": 1983016
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0467",
-          "dc:title": "Turn 467",
-          "corpus:begin": 1983016,
-          "corpus:end": 1983528
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0468",
-          "dc:title": "Turn 468",
-          "corpus:begin": 1983528,
-          "corpus:end": 1993941
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0469",
-          "dc:title": "Turn 469",
-          "corpus:begin": 1993941,
-          "corpus:end": 1994470
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0470",
-          "dc:title": "Turn 470",
-          "corpus:begin": 1994470,
-          "corpus:end": 2000889
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0471",
-          "dc:title": "Turn 471",
-          "corpus:begin": 2000889,
-          "corpus:end": 2004067
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0472",
-          "dc:title": "Turn 472",
-          "corpus:begin": 2004067,
-          "corpus:end": 2007710
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0473",
-          "dc:title": "Turn 473",
-          "corpus:begin": 2007710,
-          "corpus:end": 2012373
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0474",
-          "dc:title": "Turn 474",
-          "corpus:begin": 2012373,
-          "corpus:end": 2017307
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0475",
-          "dc:title": "Turn 475",
-          "corpus:begin": 2017307,
-          "corpus:end": 2020548
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0476",
-          "dc:title": "Turn 476",
-          "corpus:begin": 2020548,
-          "corpus:end": 2024762
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0477",
-          "dc:title": "Turn 477",
-          "corpus:begin": 2024762,
-          "corpus:end": 2027538
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0478",
-          "dc:title": "Turn 478",
-          "corpus:begin": 2027538,
-          "corpus:end": 2033720
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0479",
-          "dc:title": "Turn 479",
-          "corpus:begin": 2033720,
-          "corpus:end": 2039902
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0480",
-          "dc:title": "Turn 480",
-          "corpus:begin": 2039902,
-          "corpus:end": 2040731
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0481",
-          "dc:title": "Turn 481",
-          "corpus:begin": 2040731,
-          "corpus:end": 2048817
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0482",
-          "dc:title": "Turn 482",
-          "corpus:begin": 2048817,
-          "corpus:end": 2056945
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0483",
-          "dc:title": "Turn 483",
-          "corpus:begin": 2056945,
-          "corpus:end": 2063529
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0484",
-          "dc:title": "Turn 484",
-          "corpus:begin": 2063529,
-          "corpus:end": 2067405
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0485",
-          "dc:title": "Turn 485",
-          "corpus:begin": 2067405,
-          "corpus:end": 2068679
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0486",
-          "dc:title": "Turn 486",
-          "corpus:begin": 2068679,
-          "corpus:end": 2069470
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0487",
-          "dc:title": "Turn 487",
-          "corpus:begin": 2069470,
-          "corpus:end": 2074615
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0488",
-          "dc:title": "Turn 488",
-          "corpus:begin": 2074615,
-          "corpus:end": 2076714
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0489",
-          "dc:title": "Turn 489",
-          "corpus:begin": 2076714,
-          "corpus:end": 2079320
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0490",
-          "dc:title": "Turn 490",
-          "corpus:begin": 2079320,
-          "corpus:end": 2080107
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0491",
-          "dc:title": "Turn 491",
-          "corpus:begin": 2080107,
-          "corpus:end": 2083052
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0492",
-          "dc:title": "Turn 492",
-          "corpus:begin": 2083052,
-          "corpus:end": 2086653
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0493",
-          "dc:title": "Turn 493",
-          "corpus:begin": 2086653,
-          "corpus:end": 2087613
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0494",
-          "dc:title": "Turn 494",
-          "corpus:begin": 2087613,
-          "corpus:end": 2089860
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0495",
-          "dc:title": "Turn 495",
-          "corpus:begin": 2089860,
-          "corpus:end": 2090950
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0496",
-          "dc:title": "Turn 496",
-          "corpus:begin": 2090950,
-          "corpus:end": 2092333
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0497",
-          "dc:title": "Turn 497",
-          "corpus:begin": 2092333,
-          "corpus:end": 2093241
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0498",
-          "dc:title": "Turn 498",
-          "corpus:begin": 2093241,
-          "corpus:end": 2095076
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0499",
-          "dc:title": "Turn 499",
-          "corpus:begin": 2095076,
-          "corpus:end": 2099998
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0500",
-          "dc:title": "Turn 500",
-          "corpus:begin": 2099998,
-          "corpus:end": 2100818
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0501",
-          "dc:title": "Turn 501",
-          "corpus:begin": 2100818,
-          "corpus:end": 2102529
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0502",
-          "dc:title": "Turn 502",
-          "corpus:begin": 2102529,
-          "corpus:end": 2108638
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0503",
-          "dc:title": "Turn 503",
-          "corpus:begin": 2108638,
-          "corpus:end": 2109869
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0504",
-          "dc:title": "Turn 504",
-          "corpus:begin": 2109869,
-          "corpus:end": 2117955
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0505",
-          "dc:title": "Turn 505",
-          "corpus:begin": 2117955,
-          "corpus:end": 2120739
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0506",
-          "dc:title": "Turn 506",
-          "corpus:begin": 2120739,
-          "corpus:end": 2123049
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0507",
-          "dc:title": "Turn 507",
-          "corpus:begin": 2123049,
-          "corpus:end": 2126062
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0508",
-          "dc:title": "Turn 508",
-          "corpus:begin": 2126062,
-          "corpus:end": 2127843
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0509",
-          "dc:title": "Turn 509",
-          "corpus:begin": 2127843,
-          "corpus:end": 2130454
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0510",
-          "dc:title": "Turn 510",
-          "corpus:begin": 2130454,
-          "corpus:end": 2131897
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0511",
-          "dc:title": "Turn 511",
-          "corpus:begin": 2131897,
-          "corpus:end": 2135392
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0512",
-          "dc:title": "Turn 512",
-          "corpus:begin": 2135392,
-          "corpus:end": 2138951
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0513",
-          "dc:title": "Turn 513",
-          "corpus:begin": 2138951,
-          "corpus:end": 2142848
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0514",
-          "dc:title": "Turn 514",
-          "corpus:begin": 2142848,
-          "corpus:end": 2150447
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0515",
-          "dc:title": "Turn 515",
-          "corpus:begin": 2150447,
-          "corpus:end": 2157010
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0516",
-          "dc:title": "Turn 516",
-          "corpus:begin": 2157010,
-          "corpus:end": 2160611
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0517",
-          "dc:title": "Turn 517",
-          "corpus:begin": 2160611,
-          "corpus:end": 2164698
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0518",
-          "dc:title": "Turn 518",
-          "corpus:begin": 2164698,
-          "corpus:end": 2167643
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0519",
-          "dc:title": "Turn 519",
-          "corpus:begin": 2167643,
-          "corpus:end": 2169107
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0520",
-          "dc:title": "Turn 520",
-          "corpus:begin": 2169107,
-          "corpus:end": 2170317
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0521",
-          "dc:title": "Turn 521",
-          "corpus:begin": 2170317,
-          "corpus:end": 2171591
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0522",
-          "dc:title": "Turn 522",
-          "corpus:begin": 2171591,
-          "corpus:end": 2172505
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0523",
-          "dc:title": "Turn 523",
-          "corpus:begin": 2172505,
-          "corpus:end": 2176626
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0524",
-          "dc:title": "Turn 524",
-          "corpus:begin": 2176626,
-          "corpus:end": 2179042
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0525",
-          "dc:title": "Turn 525",
-          "corpus:begin": 2179042,
-          "corpus:end": 2179564
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0526",
-          "dc:title": "Turn 526",
-          "corpus:begin": 2179564,
-          "corpus:end": 2181162
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0527",
-          "dc:title": "Turn 527",
-          "corpus:begin": 2181162,
-          "corpus:end": 2183684
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0528",
-          "dc:title": "Turn 528",
-          "corpus:begin": 2183684,
-          "corpus:end": 2184831
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0529",
-          "dc:title": "Turn 529",
-          "corpus:begin": 2184831,
-          "corpus:end": 2189342
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0530",
-          "dc:title": "Turn 530",
-          "corpus:begin": 2189342,
-          "corpus:end": 2192456
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0531",
-          "dc:title": "Turn 531",
-          "corpus:begin": 2192456,
-          "corpus:end": 2201963
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0532",
-          "dc:title": "Turn 532",
-          "corpus:begin": 2201963,
-          "corpus:end": 2206854
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0533",
-          "dc:title": "Turn 533",
-          "corpus:begin": 2206854,
-          "corpus:end": 2209037
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0534",
-          "dc:title": "Turn 534",
-          "corpus:begin": 2209037,
-          "corpus:end": 2211770
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0535",
-          "dc:title": "Turn 535",
-          "corpus:begin": 2211770,
-          "corpus:end": 2219814
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0536",
-          "dc:title": "Turn 536",
-          "corpus:begin": 2219814,
-          "corpus:end": 2222569
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0537",
-          "dc:title": "Turn 537",
-          "corpus:begin": 2222569,
-          "corpus:end": 2223377
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0538",
-          "dc:title": "Turn 538",
-          "corpus:begin": 2223377,
-          "corpus:end": 2226132
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0539",
-          "dc:title": "Turn 539",
-          "corpus:begin": 2226132,
-          "corpus:end": 2231489
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0540",
-          "dc:title": "Turn 540",
-          "corpus:begin": 2231489,
-          "corpus:end": 2233101
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0541",
-          "dc:title": "Turn 541",
-          "corpus:begin": 2233101,
-          "corpus:end": 2234967
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0542",
-          "dc:title": "Turn 542",
-          "corpus:begin": 2234967,
-          "corpus:end": 2238547
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0543",
-          "dc:title": "Turn 543",
-          "corpus:begin": 2238547,
-          "corpus:end": 2239694
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0544",
-          "dc:title": "Turn 544",
-          "corpus:begin": 2239694,
-          "corpus:end": 2241983
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0545",
-          "dc:title": "Turn 545",
-          "corpus:begin": 2241983,
-          "corpus:end": 2243024
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0546",
-          "dc:title": "Turn 546",
-          "corpus:begin": 2243024,
-          "corpus:end": 2243705
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0547",
-          "dc:title": "Turn 547",
-          "corpus:begin": 2243705,
-          "corpus:end": 2244217
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0548",
-          "dc:title": "Turn 548",
-          "corpus:begin": 2244217,
-          "corpus:end": 2244754
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0549",
-          "dc:title": "Turn 549",
-          "corpus:begin": 2244754,
-          "corpus:end": 2247784
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0550",
-          "dc:title": "Turn 550",
-          "corpus:begin": 2247784,
-          "corpus:end": 2249185
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0551",
-          "dc:title": "Turn 551",
-          "corpus:begin": 2249185,
-          "corpus:end": 2250755
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0552",
-          "dc:title": "Turn 552",
-          "corpus:begin": 2250755,
-          "corpus:end": 2255443
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0553",
-          "dc:title": "Turn 553",
-          "corpus:begin": 2255443,
-          "corpus:end": 2258578
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0554",
-          "dc:title": "Turn 554",
-          "corpus:begin": 2258578,
-          "corpus:end": 2259323
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0555",
-          "dc:title": "Turn 555",
-          "corpus:begin": 2259323,
-          "corpus:end": 2260491
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0556",
-          "dc:title": "Turn 556",
-          "corpus:begin": 2260491,
-          "corpus:end": 2262294
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0557",
-          "dc:title": "Turn 557",
-          "corpus:begin": 2262294,
-          "corpus:end": 2265387
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0558",
-          "dc:title": "Turn 558",
-          "corpus:begin": 2265387,
-          "corpus:end": 2268861
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0559",
-          "dc:title": "Turn 559",
-          "corpus:begin": 2268861,
-          "corpus:end": 2271891
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0560",
-          "dc:title": "Turn 560",
-          "corpus:begin": 2271891,
-          "corpus:end": 2273630
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0561",
-          "dc:title": "Turn 561",
-          "corpus:begin": 2273630,
-          "corpus:end": 2277844
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0562",
-          "dc:title": "Turn 562",
-          "corpus:begin": 2277844,
-          "corpus:end": 2283201
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0563",
-          "dc:title": "Turn 563",
-          "corpus:begin": 2283201,
-          "corpus:end": 2287056
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0564",
-          "dc:title": "Turn 564",
-          "corpus:begin": 2287056,
-          "corpus:end": 2291588
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0565",
-          "dc:title": "Turn 565",
-          "corpus:begin": 2291588,
-          "corpus:end": 2297770
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0566",
-          "dc:title": "Turn 566",
-          "corpus:begin": 2297770,
-          "corpus:end": 2307193
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0567",
-          "dc:title": "Turn 567",
-          "corpus:begin": 2307193,
-          "corpus:end": 2308716
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0568",
-          "dc:title": "Turn 568",
-          "corpus:begin": 2308716,
-          "corpus:end": 2324207
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0569",
-          "dc:title": "Turn 569",
-          "corpus:begin": 2324207,
-          "corpus:end": 2326750
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0570",
-          "dc:title": "Turn 570",
-          "corpus:begin": 2326750,
-          "corpus:end": 2328256
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0571",
-          "dc:title": "Turn 571",
-          "corpus:begin": 2328256,
-          "corpus:end": 2329851
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0572",
-          "dc:title": "Turn 572",
-          "corpus:begin": 2329851,
-          "corpus:end": 2333812
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0573",
-          "dc:title": "Turn 573",
-          "corpus:begin": 2333812,
-          "corpus:end": 2335932
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0574",
-          "dc:title": "Turn 574",
-          "corpus:begin": 2335932,
-          "corpus:end": 2337375
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0575",
-          "dc:title": "Turn 575",
-          "corpus:begin": 2337375,
-          "corpus:end": 2341272
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0576",
-          "dc:title": "Turn 576",
-          "corpus:begin": 2341272,
-          "corpus:end": 2345571
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0577",
-          "dc:title": "Turn 577",
-          "corpus:begin": 2345571,
-          "corpus:end": 2353506
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0578",
-          "dc:title": "Turn 578",
-          "corpus:begin": 2353506,
-          "corpus:end": 2355647
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0579",
-          "dc:title": "Turn 579",
-          "corpus:begin": 2355647,
-          "corpus:end": 2357111
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0580",
-          "dc:title": "Turn 580",
-          "corpus:begin": 2357111,
-          "corpus:end": 2365366
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0581",
-          "dc:title": "Turn 581",
-          "corpus:begin": 2365366,
-          "corpus:end": 2369686
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0582",
-          "dc:title": "Turn 582",
-          "corpus:begin": 2369686,
-          "corpus:end": 2372589
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0583",
-          "dc:title": "Turn 583",
-          "corpus:begin": 2372589,
-          "corpus:end": 2375597
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0584",
-          "dc:title": "Turn 584",
-          "corpus:begin": 2375597,
-          "corpus:end": 2388232
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0585",
-          "dc:title": "Turn 585",
-          "corpus:begin": 2388232,
-          "corpus:end": 2388786
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0586",
-          "dc:title": "Turn 586",
-          "corpus:begin": 2388786,
-          "corpus:end": 2396407
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0587",
-          "dc:title": "Turn 587",
-          "corpus:begin": 2396407,
-          "corpus:end": 2399119
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0588",
-          "dc:title": "Turn 588",
-          "corpus:begin": 2399119,
-          "corpus:end": 2400985
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0589",
-          "dc:title": "Turn 589",
-          "corpus:begin": 2400985,
-          "corpus:end": 2402475
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0590",
-          "dc:title": "Turn 590",
-          "corpus:begin": 2402475,
-          "corpus:end": 2404701
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0591",
-          "dc:title": "Turn 591",
-          "corpus:begin": 2404701,
-          "corpus:end": 2405827
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0592",
-          "dc:title": "Turn 592",
-          "corpus:begin": 2405827,
-          "corpus:end": 2411078
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0593",
-          "dc:title": "Turn 593",
-          "corpus:begin": 2411078,
-          "corpus:end": 2417620
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0594",
-          "dc:title": "Turn 594",
-          "corpus:begin": 2417620,
-          "corpus:end": 2421517
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0595",
-          "dc:title": "Turn 595",
-          "corpus:begin": 2421517,
-          "corpus:end": 2433454
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0596",
-          "dc:title": "Turn 596",
-          "corpus:begin": 2433454,
-          "corpus:end": 2433881
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0597",
-          "dc:title": "Turn 597",
-          "corpus:begin": 2433881,
-          "corpus:end": 2438222
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0598",
-          "dc:title": "Turn 598",
-          "corpus:begin": 2438222,
-          "corpus:end": 2440448
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0599",
-          "dc:title": "Turn 599",
-          "corpus:begin": 2440448,
-          "corpus:end": 2447683
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0600",
-          "dc:title": "Turn 600",
-          "corpus:begin": 2447683,
-          "corpus:end": 2460381
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0601",
-          "dc:title": "Turn 601",
-          "corpus:begin": 2460381,
-          "corpus:end": 2463284
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0602",
-          "dc:title": "Turn 602",
-          "corpus:begin": 2463284,
-          "corpus:end": 2468006
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0603",
-          "dc:title": "Turn 603",
-          "corpus:begin": 2468006,
-          "corpus:end": 2469639
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0604",
-          "dc:title": "Turn 604",
-          "corpus:begin": 2469639,
-          "corpus:end": 2470274
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0605",
-          "dc:title": "Turn 605",
-          "corpus:begin": 2470274,
-          "corpus:end": 2470553
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0606",
-          "dc:title": "Turn 606",
-          "corpus:begin": 2470553,
-          "corpus:end": 2471319
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0607",
-          "dc:title": "Turn 607",
-          "corpus:begin": 2471319,
-          "corpus:end": 2472532
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0608",
-          "dc:title": "Turn 608",
-          "corpus:begin": 2472532,
-          "corpus:end": 2473306
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0609",
-          "dc:title": "Turn 609",
-          "corpus:begin": 2473306,
-          "corpus:end": 2482705
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0610",
-          "dc:title": "Turn 610",
-          "corpus:begin": 2482705,
-          "corpus:end": 2483256
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0611",
-          "dc:title": "Turn 611",
-          "corpus:begin": 2483256,
-          "corpus:end": 2488274
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0612",
-          "dc:title": "Turn 612",
-          "corpus:begin": 2488274,
-          "corpus:end": 2492975
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0613",
-          "dc:title": "Turn 613",
-          "corpus:begin": 2492975,
-          "corpus:end": 2495201
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0614",
-          "dc:title": "Turn 614",
-          "corpus:begin": 2495201,
-          "corpus:end": 2497279
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0615",
-          "dc:title": "Turn 615",
-          "corpus:begin": 2497279,
-          "corpus:end": 2499780
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0616",
-          "dc:title": "Turn 616",
-          "corpus:begin": 2499780,
-          "corpus:end": 2501985
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0617",
-          "dc:title": "Turn 617",
-          "corpus:begin": 2501985,
-          "corpus:end": 2503936
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0618",
-          "dc:title": "Turn 618",
-          "corpus:begin": 2503936,
-          "corpus:end": 2512530
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0619",
-          "dc:title": "Turn 619",
-          "corpus:begin": 2512530,
-          "corpus:end": 2514422
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0620",
-          "dc:title": "Turn 620",
-          "corpus:begin": 2514422,
-          "corpus:end": 2518256
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0621",
-          "dc:title": "Turn 621",
-          "corpus:begin": 2518256,
-          "corpus:end": 2520291
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0622",
-          "dc:title": "Turn 622",
-          "corpus:begin": 2520291,
-          "corpus:end": 2527679
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0623",
-          "dc:title": "Turn 623",
-          "corpus:begin": 2527679,
-          "corpus:end": 2546964
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0624",
-          "dc:title": "Turn 624",
-          "corpus:begin": 2546964,
-          "corpus:end": 2547811
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0625",
-          "dc:title": "Turn 625",
-          "corpus:begin": 2547811,
-          "corpus:end": 2548852
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0626",
-          "dc:title": "Turn 626",
-          "corpus:begin": 2548852,
-          "corpus:end": 2556071
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0627",
-          "dc:title": "Turn 627",
-          "corpus:begin": 2556071,
-          "corpus:end": 2556477
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0628",
-          "dc:title": "Turn 628",
-          "corpus:begin": 2556477,
-          "corpus:end": 2562934
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0629",
-          "dc:title": "Turn 629",
-          "corpus:begin": 2562934,
-          "corpus:end": 2565625
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0630",
-          "dc:title": "Turn 630",
-          "corpus:begin": 2565625,
-          "corpus:end": 2567216
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0631",
-          "dc:title": "Turn 631",
-          "corpus:begin": 2567216,
-          "corpus:end": 2571578
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0632",
-          "dc:title": "Turn 632",
-          "corpus:begin": 2571578,
-          "corpus:end": 2575010
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0633",
-          "dc:title": "Turn 633",
-          "corpus:begin": 2575010,
-          "corpus:end": 2579013
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0634",
-          "dc:title": "Turn 634",
-          "corpus:begin": 2579013,
-          "corpus:end": 2585665
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0635",
-          "dc:title": "Turn 635",
-          "corpus:begin": 2585665,
-          "corpus:end": 2589097
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0636",
-          "dc:title": "Turn 636",
-          "corpus:begin": 2589097,
-          "corpus:end": 2592211
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0637",
-          "dc:title": "Turn 637",
-          "corpus:begin": 2592211,
-          "corpus:end": 2601930
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0638",
-          "dc:title": "Turn 638",
-          "corpus:begin": 2601930,
-          "corpus:end": 2604473
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0639",
-          "dc:title": "Turn 639",
-          "corpus:begin": 2604473,
-          "corpus:end": 2605472
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0640",
-          "dc:title": "Turn 640",
-          "corpus:begin": 2605472,
-          "corpus:end": 2607000
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0641",
-          "dc:title": "Turn 641",
-          "corpus:begin": 2607000,
-          "corpus:end": 2610008
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0642",
-          "dc:title": "Turn 642",
-          "corpus:begin": 2610008,
-          "corpus:end": 2615386
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0643",
-          "dc:title": "Turn 643",
-          "corpus:begin": 2615386,
-          "corpus:end": 2622266
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0644",
-          "dc:title": "Turn 644",
-          "corpus:begin": 2622266,
-          "corpus:end": 2637588
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0645",
-          "dc:title": "Turn 645",
-          "corpus:begin": 2637588,
-          "corpus:end": 2641866
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0646",
-          "dc:title": "Turn 646",
-          "corpus:begin": 2641866,
-          "corpus:end": 2651539
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0647",
-          "dc:title": "Turn 647",
-          "corpus:begin": 2651539,
-          "corpus:end": 2652199
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0648",
-          "dc:title": "Turn 648",
-          "corpus:begin": 2652199,
-          "corpus:end": 2664939
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0649",
-          "dc:title": "Turn 649",
-          "corpus:begin": 2664939,
-          "corpus:end": 2665282
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0650",
-          "dc:title": "Turn 650",
-          "corpus:begin": 2665282,
-          "corpus:end": 2667910
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0651",
-          "dc:title": "Turn 651",
-          "corpus:begin": 2667910,
-          "corpus:end": 2668422
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0652",
-          "dc:title": "Turn 652",
-          "corpus:begin": 2668422,
-          "corpus:end": 2675768
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0653",
-          "dc:title": "Turn 653",
-          "corpus:begin": 2675768,
-          "corpus:end": 2677338
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0654",
-          "dc:title": "Turn 654",
-          "corpus:begin": 2677338,
-          "corpus:end": 2678231
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0655",
-          "dc:title": "Turn 655",
-          "corpus:begin": 2678231,
-          "corpus:end": 2678933
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0656",
-          "dc:title": "Turn 656",
-          "corpus:begin": 2678933,
-          "corpus:end": 2682132
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0657",
-          "dc:title": "Turn 657",
-          "corpus:begin": 2682132,
-          "corpus:end": 2684167
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0658",
-          "dc:title": "Turn 658",
-          "corpus:begin": 2684167,
-          "corpus:end": 2685293
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0659",
-          "dc:title": "Turn 659",
-          "corpus:begin": 2685293,
-          "corpus:end": 2686059
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0660",
-          "dc:title": "Turn 660",
-          "corpus:begin": 2686059,
-          "corpus:end": 2688898
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0661",
-          "dc:title": "Turn 661",
-          "corpus:begin": 2688898,
-          "corpus:end": 2690574
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0662",
-          "dc:title": "Turn 662",
-          "corpus:begin": 2690574,
-          "corpus:end": 2695423
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0663",
-          "dc:title": "Turn 663",
-          "corpus:begin": 2695423,
-          "corpus:end": 2697479
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0664",
-          "dc:title": "Turn 664",
-          "corpus:begin": 2697479,
-          "corpus:end": 2700297
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0665",
-          "dc:title": "Turn 665",
-          "corpus:begin": 2700297,
-          "corpus:end": 2702861
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0666",
-          "dc:title": "Turn 666",
-          "corpus:begin": 2702861,
-          "corpus:end": 2708345
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0667",
-          "dc:title": "Turn 667",
-          "corpus:begin": 2708345,
-          "corpus:end": 2711653
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0668",
-          "dc:title": "Turn 668",
-          "corpus:begin": 2711653,
-          "corpus:end": 2714958
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0669",
-          "dc:title": "Turn 669",
-          "corpus:begin": 2714958,
-          "corpus:end": 2717501
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0670",
-          "dc:title": "Turn 670",
-          "corpus:begin": 2717501,
-          "corpus:end": 2722498
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0671",
-          "dc:title": "Turn 671",
-          "corpus:begin": 2722498,
-          "corpus:end": 2728472
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0672",
-          "dc:title": "Turn 672",
-          "corpus:begin": 2728472,
-          "corpus:end": 2733000
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0673",
-          "dc:title": "Turn 673",
-          "corpus:begin": 2733000,
-          "corpus:end": 2733931
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0674",
-          "dc:title": "Turn 674",
-          "corpus:begin": 2733931,
-          "corpus:end": 2735813
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0675",
-          "dc:title": "Turn 675",
-          "corpus:begin": 2735813,
-          "corpus:end": 2736507
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0676",
-          "dc:title": "Turn 676",
-          "corpus:begin": 2736507,
-          "corpus:end": 2738648
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0677",
-          "dc:title": "Turn 677",
-          "corpus:begin": 2738648,
-          "corpus:end": 2741230
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0678",
-          "dc:title": "Turn 678",
-          "corpus:begin": 2741230,
-          "corpus:end": 2744318
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0679",
-          "dc:title": "Turn 679",
-          "corpus:begin": 2744318,
-          "corpus:end": 2746032
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0680",
-          "dc:title": "Turn 680",
-          "corpus:begin": 2746032,
-          "corpus:end": 2747428
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0681",
-          "dc:title": "Turn 681",
-          "corpus:begin": 2747428,
-          "corpus:end": 2748296
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0682",
-          "dc:title": "Turn 682",
-          "corpus:begin": 2748296,
-          "corpus:end": 2750136
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0683",
-          "dc:title": "Turn 683",
-          "corpus:begin": 2750136,
-          "corpus:end": 2752041
-        }
-      ],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0001",
-          "begin": 63,
-          "end": 1396,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0002",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "animaux d'ferme + à l'Ile Saint-Denis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0002"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0002",
-          "begin": 1396,
-          "end": 4866,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0003",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "eh: j'ai connu les chevaux encore sur euh le les Champs-Elysées hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0003"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0003",
-          "begin": 1396,
-          "end": 4866,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0003",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'ai une amie tous les jeudis elle allait à la X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0003"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0004",
-          "begin": 4866,
-          "end": 8970,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0004",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "il paraît qu'oui il y en avait oui + ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0004"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0005",
-          "begin": 4866,
-          "end": 8970,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0004",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ben oui ben bien sûr + bien sûr il y en avait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0004"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0006",
-          "begin": 8970,
-          "end": 12655,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0005",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mes parents sont nés sont nés ici d'ailleurs sont nés à enfin ils sont pas nés à Saint-Ouen"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0005"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0007",
-          "begin": 12655,
-          "end": 16705,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0006",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "vos parents? ++ ah oui + oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0006"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0008",
-          "begin": 12655,
-          "end": 16705,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0006",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ils sont nés dans l'quatorzième ++ ah ben oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0006"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0009",
-          "begin": 16705,
-          "end": 19417,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0007",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "alors ben euh ça tombe bien en fait euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0007"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0010",
-          "begin": 16705,
-          "end": 19417,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0007",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "allez-y X + allez-y"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0007"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0011",
-          "begin": 19417,
-          "end": 25832,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0008",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "j'vais peut-être juste noter vos noms parce que si j'dois euh vous XX vous vous qu- quels sont vos noms?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0008"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0012",
-          "begin": 25832,
-          "end": 27063,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0009",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "Pollet"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0009"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0013",
-          "begin": 27063,
-          "end": 28037,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0010",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ça s'écrit comment?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0010"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0014",
-          "begin": 28037,
-          "end": 30432,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0011",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "P O deux L E T"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0011"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0015",
-          "begin": 30432,
-          "end": 32150,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0012",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord madame Pollet + et vous?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0012"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0016",
-          "begin": 32150,
-          "end": 33402,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0013",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et moi j'suis madame Liotard"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0013"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0017",
-          "begin": 33402,
-          "end": 34079,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0014",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "Liotard ouais d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0014"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0018",
-          "begin": 34079,
-          "end": 37465,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0015",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "L I O T A R D ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0015"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0019",
-          "begin": 37465,
-          "end": 38993,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0016",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord OK parfait X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0016"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0020",
-          "begin": 38993,
-          "end": 43696,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0017",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il y en avait des Pollet à Saint-Ouen + là qu'étaient marchands d'fumier +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0017"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0021",
-          "begin": 43696,
-          "end": 46324,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0018",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "rue Charles X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0018"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0022",
-          "begin": 43696,
-          "end": 46324,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0018",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "XX + ah dis donc"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0018"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0023",
-          "begin": 46324,
-          "end": 49886,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0019",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et ils étaient mariés il y avait il y en avait la villa Serrurier +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0019"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0024",
-          "begin": 49886,
-          "end": 58513,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0020",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "qui est X cinéma Le Star + et c'était le grand-p- le beau-père [de;-] monsieur Pollet qui avait fait construire toutes les maisons d'la villa + et il y en avait un stock hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0020"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0025",
-          "begin": 49886,
-          "end": 58513,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0020",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "remarquez s- + allez savoir que ce soit d'même famille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0020"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0026",
-          "begin": 58513,
-          "end": 61767,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0021",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ouais ouais mm d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0021"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0027",
-          "begin": 58513,
-          "end": 61767,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0021",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "X il y avait des stocks oh la la"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0021"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0028",
-          "begin": 61767,
-          "end": 68454,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0022",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ils ont toujours des + eh ben ils avaient des chevaux évidemment + et puis ils [envoyaient; enlevaient] tout l'fumier à la garde républicaine à Paris"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0022"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0029",
-          "begin": 68454,
-          "end": 71967,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0023",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ah oui + voilà (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0023"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0030",
-          "begin": 68454,
-          "end": 71967,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0023",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et dans les années trente hein XX la semaine dernière"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0023"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0031",
-          "begin": 71967,
-          "end": 75851,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0024",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oui + ben oui puis c'était vendu + pour faire les champignons d'Paris"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0024"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0032",
-          "begin": 75851,
-          "end": 79281,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0025",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord mm + ouais + ça facili-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0025"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0033",
-          "begin": 75851,
-          "end": 79281,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0025",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "le fumier + de cheval"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0025"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0034",
-          "begin": 79281,
-          "end": 85185,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0026",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et donc vous vous êtes née euh donc à Saint-Ouen madame Liotard + et et vos parents également?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0026"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0035",
-          "begin": 85185,
-          "end": 88698,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0027",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "mes parents ah non mes parents étaient grainetiers à Saint-Ouen +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0027"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0036",
-          "begin": 88698,
-          "end": 90726,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0028",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0028"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0037",
-          "begin": 88698,
-          "end": 90726,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0028",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ça existe plus non plus ça grainetier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0028"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0038",
-          "begin": 90726,
-          "end": 91798,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0029",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oui c'est déprimant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0029"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0039",
-          "begin": 91798,
-          "end": 94775,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0030",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mais ils ét- ils sont ils sont de Saint-Ouen aussi ils étaient de Saint-Ouen?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0030"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0040",
-          "begin": 91798,
-          "end": 94775,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0030",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah non non non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0030"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0041",
-          "begin": 94775,
-          "end": 97010,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0031",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah non non mon père était d'Pantin +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0031"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0042",
-          "begin": 97010,
-          "end": 97431,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0032",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0032"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0043",
-          "begin": 97431,
-          "end": 102840,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0033",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et ma mère de: + ah ah je vous dirai Champ Champ sur Marne"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0033"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0044",
-          "begin": 102840,
-          "end": 106641,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0034",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + et euh v- vous vous savez pourquoi ils sont venus à Saint-Ouen"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0034"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0045",
-          "begin": 106641,
-          "end": 108546,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0035",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "eh ben ils se sont mariés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0035"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0046",
-          "begin": 106641,
-          "end": 108546,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0035",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "pourquoi ils sont installés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0035"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0047",
-          "begin": 108546,
-          "end": 115852,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0036",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et puis mon grand-p- mon père ses parents étaient grainetiers + à Pantin + et il a voulu repren- prendre un (X,accompte) grainetier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0036"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0048",
-          "begin": 115852,
-          "end": 116437,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0037",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0037"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0049",
-          "begin": 116437,
-          "end": 124361,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0038",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et c'est comme ça qu'ils sont ils ont é- + exploré un peu toute la région + puis ça c'est trouvé que: + à Saint-Ouen il y avait un coin à vendre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0038"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0050",
-          "begin": 124361,
-          "end": 125680,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0039",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord OK"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0039"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0051",
-          "begin": 125680,
-          "end": 128451,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0040",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "alors ils se sont installés là + en dix-neuf cent vingt-et-un"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0040"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0052",
-          "begin": 125680,
-          "end": 128451,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0040",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ils se sont installés là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0040"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0053",
-          "begin": 128451,
-          "end": 133159,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0041",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + ouais c'est parfait + et euh et et vous madame Pollet vous:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0041"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0054",
-          "begin": 133159,
-          "end": 134775,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0042",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "moi je s-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0042"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0055",
-          "begin": 133159,
-          "end": 134775,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0042",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "vous êtes née à Saint-Ouen également?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0042"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0056",
-          "begin": 134775,
-          "end": 135187,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0043",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah non non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0043"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0057",
-          "begin": 135187,
-          "end": 135558,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0044",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "non?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0044"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0058",
-          "begin": 135558,
-          "end": 138081,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0045",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "non je suis née à Montigny-en-Morvan dans la Nièvre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0045"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0059",
-          "begin": 138081,
-          "end": 138906,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0046",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0046"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0060",
-          "begin": 138906,
-          "end": 140605,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0047",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "accidentellement peut-être mais enfin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0047"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0061",
-          "begin": 140605,
-          "end": 144489,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0048",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "(rires) et comment vous êtes arrivée euh à Saint-Ouen alors? +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0048"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0062",
-          "begin": 144489,
-          "end": 147260,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0049",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "comment j'suis arrivée à Saint-Ouen ben j'suis d'abord arrivée à Paris +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0049"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0063",
-          "begin": 147260,
-          "end": 147928,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0050",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0050"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0064",
-          "begin": 147928,
-          "end": 149420,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0051",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'ai vécu longtemps à Paris +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0051"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0065",
-          "begin": 149420,
-          "end": 150492,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0052",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0052"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0066",
-          "begin": 150492,
-          "end": 164163,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0053",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "eh à: vingt-quatre ans: bon ben je divorçais ++ alors donc euh: + le: propriétaire de qui me lo- qui m'logeait à Paris + pour me cacher d'mon mari qui était violent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0053"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0067",
-          "begin": 164163,
-          "end": 166706,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0054",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +++ mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0054"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0068",
-          "begin": 164163,
-          "end": 166706,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0054",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "qui n'voulait pas divorcer et qui était violent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0054"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0069",
-          "begin": 166706,
-          "end": 175025,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0055",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "donc° m'a: m'avait mise dans un petit logement: + un peu vétuste mais enfin bon + hein bon + donc rue Arago"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0055"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0070",
-          "begin": 175025,
-          "end": 177145,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0056",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord mm +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0056"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0071",
-          "begin": 177145,
-          "end": 198939,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0057",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et: je suis restée: dix-sept ans dans ce petit logement + il y avait trois pièces quand même et tout mais a fallu que j'arrange hein parce que: j'ai XX j'vous dis: c'était vraiment vétuste quand j'suis arrivée hein ++ vraiment + et donc euh: + après j'suis allée boul- euh + boulevard Victor Hugo non + non c'est pas tout de suite boulevard Victor Hugo ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0057"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0072",
-          "begin": 198939,
-          "end": 210939,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0057",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'ai demandé à mon patron euh par le un pour cent patronal + un logement j'voulais aller en banlieue ++ j'commançais à en avoir marre de faire le feu de de bois tout ça [euh;le] charbon les cendres et tout j'commençais à en avoir marre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0057"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0073",
-          "begin": 210939,
-          "end": 214709,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0058",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben oui euh + faut être jeune hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0058"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0074",
-          "begin": 210939,
-          "end": 214709,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0058",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ++ mm oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0058"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0075",
-          "begin": 214709,
-          "end": 221166,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0059",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "alors donc euh: [j'étais;j'ai été logée] à comment à + du côté d'Mantes là comment Mureaux + aux Mureaux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0059"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0076",
-          "begin": 221166,
-          "end": 222461,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0060",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "les Mureaux ouais mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0060"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0077",
-          "begin": 222461,
-          "end": 224390,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0061",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais ce m- ça m'a pas plu"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0061"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0078",
-          "begin": 224390,
-          "end": 228054,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0062",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0062"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0079",
-          "begin": 224390,
-          "end": 228054,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0062",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "d'abord le logement n'me plaisait pas + X pas ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0062"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0080",
-          "begin": 228054,
-          "end": 230703,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0063",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et puis en plus euh le transport surtout +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0063"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0081",
-          "begin": 230703,
-          "end": 231130,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0064",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0064"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0082",
-          "begin": 231130,
-          "end": 238454,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0065",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "c'était compliqué hein c'est pas comme maintenant maintenant ça s'est modifié: mais à cette époque-là il fallait + attendre une heure: un train"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0065"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0083",
-          "begin": 238454,
-          "end": 239195,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0066",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0066"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0084",
-          "begin": 239195,
-          "end": 244002,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0067",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "alors euh deux fois en deux ans je X j'suis restée deux ans et deux fois en deux ans j'ai j'ai +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0067"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0085",
-          "begin": 244002,
-          "end": 250967,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0068",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ++ ouais c'est sûr + (rires) c'est embêtant mm mm mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0068"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0086",
-          "begin": 244002,
-          "end": 250967,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0068",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'ai perdu une heure de travail quoi + enfin + on me l'a pas retirée + non enfin parce que j'étais un bon élément mais:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0068"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0087",
-          "begin": 250967,
-          "end": 259620,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0069",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "aur- aurait pas fallu que ça continue + alors j'ai donc demandé c'est d'ailleurs euh Mitterrand et monsieur Lefort qui m'ont: en commmun accord voyez enfin:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0069"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0088",
-          "begin": 259620,
-          "end": 261321,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0070",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +++ mm d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0070"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0089",
-          "begin": 261321,
-          "end": 267715,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0071",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "le branchage de tout ça de de des des huiles comme on dit + qui m'ont fait revenir à Saint-Ouen assez rapidement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0071"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0090",
-          "begin": 267715,
-          "end": 268756,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0072",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0072"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0091",
-          "begin": 268756,
-          "end": 276123,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0073",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais euh:: c'était pas la le + disons le ce que monsieur Mitterrand voulait monsieur Mitterrand voulait que j'aille habiter Suresnes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0073"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0092",
-          "begin": 276123,
-          "end": 276466,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0074",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0074"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0093",
-          "begin": 276466,
-          "end": 278438,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0075",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "qui était beaucoup mieux pour lui que Saint-Ouen"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0075"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0094",
-          "begin": 278438,
-          "end": 280537,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0076",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "pour moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0076"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0095",
-          "begin": 278438,
-          "end": 280537,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0076",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + mm + ouais +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0076"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0096",
-          "begin": 280537,
-          "end": 284899,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0077",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et vous avez toujours habité le même quartier dans Saint-Ouen ou ou vous avez bougé?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0077"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0097",
-          "begin": 280537,
-          "end": 284899,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0077",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et alors ++ non euh euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0077"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0098",
-          "begin": 284899,
-          "end": 286194,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0078",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "là maintenant j'suis au Vieux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0078"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0099",
-          "begin": 286194,
-          "end": 291318,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0079",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ++ d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0079"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0100",
-          "begin": 286194,
-          "end": 291318,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0079",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais j'étais là-bas euh rue Arago alors j'sais pas comment: comment on appelle moi j'en sais rien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0079"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0101",
-          "begin": 291318,
-          "end": 296379,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0080",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "alors j'ai donc été relogée + à: rue Ar- rue A euh + oh boulevard Victor Hugo"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0080"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0102",
-          "begin": 296379,
-          "end": 301456,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0081",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm d'accord ++ ouais ouais + ouais ouais je vois bien + ouais (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0081"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0103",
-          "begin": 296379,
-          "end": 301456,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0081",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "où il y a le RER maintenant + mm + mais à cette époque-là il y était pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0081"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0104",
-          "begin": 301456,
-          "end": 307878,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0082",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "savez c'est les trois immeubles: qui s'en vont euh j'sais pas s'ils existent encore j'en sais rien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0082"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0105",
-          "begin": 301456,
-          "end": 307878,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0082",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui + oui oui ++ euh: non ils ont X été abattus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0082"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0106",
-          "begin": 307878,
-          "end": 314289,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0082",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah bon + bien dommage bien dommage parce qu'ils étaient b- ils étaient beaux ces logements ah ils étaient beaux ces logements hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0082"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0107",
-          "begin": 307878,
-          "end": 314289,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0082",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui parce qu'ils construisent là X oui moi j'connaissais des gens là aussi + dans ces bâtiments"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0082"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0108",
-          "begin": 314289,
-          "end": 319564,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0083",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "moi [j'aimais;je me] j'avais fait vraiment euh ++ vraiment un appartement magnifique et tout ah je garde"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0083"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0109",
-          "begin": 319564,
-          "end": 322338,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0084",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui ils étaient en pierre hein les les bâtiments oui ils étaient beaux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0084"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0110",
-          "begin": 322338,
-          "end": 324434,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0085",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'est des choses qu'ils auraient dû garder quand même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0085"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0111",
-          "begin": 324434,
-          "end": 334911,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0086",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah oui + et puis alors euh: j'ai eu des ennuis avec les une locataire qui [est arrivée ; arrivait] à côté d'ma: porte mitoyenne la mienne comme ça la sienne là oh la la j'vous dis pas +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0086"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0112",
-          "begin": 334911,
-          "end": 341368,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0087",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "(rires) quel genre d'ennuis? + oui ++ mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0087"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0113",
-          "begin": 334911,
-          "end": 341368,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0087",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'ai eu tellement d'ennuis mais alors vraiment des ennuis qu'un matin j'pouvais même pas aller au travail"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0087"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0114",
-          "begin": 341368,
-          "end": 354320,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0088",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "alors donc comme j'avais ces ennuis: j'ai dû appeler ma gardienne de venir me chercher + pour sortir pour que j'aille travailler moi quand même elle elle travaillait pas elle s'en fichait + j'sais pas pourquoi + elle avait pris: + c'est-à-dire qu'elle avait une vie spéciale"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0088"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0115",
-          "begin": 354320,
-          "end": 355399,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0089",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0089"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0116",
-          "begin": 355399,
-          "end": 359783,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0090",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "si vous m'comprenez quoi bon ben elle aimait les femmes ++ alors euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0090"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0117",
-          "begin": 359783,
-          "end": 362982,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0091",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui d'accord ++ ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0091"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0118",
-          "begin": 359783,
-          "end": 362982,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0091",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "voilà + sa vie spéciale c'était ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0091"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0119",
-          "begin": 362982,
-          "end": 365229,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0092",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "alors mais + elle avait les hommes aussi +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0092"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0120",
-          "begin": 365229,
-          "end": 367962,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0093",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ah d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0093"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0121",
-          "begin": 365229,
-          "end": 367962,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0093",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et + en principe les vieux ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0093"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0122",
-          "begin": 367962,
-          "end": 371161,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0094",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "les personnes âgées ++ pour leur soutirer de l'argent +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0094"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0123",
-          "begin": 371161,
-          "end": 372710,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0095",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0095"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0124",
-          "begin": 371161,
-          "end": 372710,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0095",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "elle avait une fille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0095"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0125",
-          "begin": 372710,
-          "end": 385514,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0096",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais c'était la femme sa femme qui enfin la + sa femme sa copine qui s'en occupait + (rires collectifs) alors + tous les soirs quand j'rentrais je trouvais l'paillaisson parti enfin il était dans le le local du vide-ordures des ordures: à ma porte enfin voyez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0096"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0126",
-          "begin": 385514,
-          "end": 390511,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0097",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ouais + ouais ++ ah oui +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0097"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0127",
-          "begin": 385514,
-          "end": 390511,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0097",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "des méchancetés quoi + ça a duré deux ans et j'en pouvais plus +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0097"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0128",
-          "begin": 390511,
-          "end": 410233,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0098",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "alors les le les: HLM + [m';-]ont dit \"écoutez: + c'est vous qui avez on on va vous qu'on va reloger elle + à cause de sa gamine et tout ça\" ben j'ai dit \"ben c'est quand même un comble ça + moi j'viens d'faire des millions d'travaux mon appartement est: vraiment refait tout à neuf + tout avait été refait à neuf + j'dis c'est quand même malheureux que c'est moi qui suis obligée d'partir quand même\""
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0098"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0129",
-          "begin": 410233,
-          "end": 415484,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0099",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ouais ouais + euh c'est + c'est pas juste (rires) c'est sûr mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0099"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0130",
-          "begin": 410233,
-          "end": 415484,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0099",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "moi moi je travaille et tout je n- je n'dérange personne euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0099"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0131",
-          "begin": 415484,
-          "end": 420735,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0100",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "Paul à ce moment-là travaillait euh: à Orléans donc il rentrait pas tous les jours il avait loué une petite"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0100"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0132",
-          "begin": 420735,
-          "end": 423934,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0101",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "[ah;oui] oui + une chambre oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0101"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0133",
-          "begin": 420735,
-          "end": 423934,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0101",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "euh un petit quelque chose là-bas du côté d'Pithiviers +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0101"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0134",
-          "begin": 423934,
-          "end": 428170,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0102",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "pour être plus près commençait d'bonne heure + donc j'dis + \"j'comprends pas\" enfin bon +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0102"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0135",
-          "begin": 428170,
-          "end": 431940,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0103",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais ++ d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0103"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0136",
-          "begin": 428170,
-          "end": 431940,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0103",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "alors j'ai + on m'a logée là où je suis actuellement encore"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0103"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0137",
-          "begin": 431940,
-          "end": 434885,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0104",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et vous y êtes toujours + d'acc- + ça fait combien d'années que vous êtes: là-bas?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0104"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0138",
-          "begin": 434885,
-          "end": 441744,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0105",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il y a eu vingt: vingt-et-un ans X on est en deux mille huit alors donc vingt-et-un ans euh vingt-hu- + non vingt-huit ans +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0105"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0139",
-          "begin": 441744,
-          "end": 443970,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0106",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "vingt-huit ans? + d'accord X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0106"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0140",
-          "begin": 441744,
-          "end": 443970,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0106",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben oui puisque: en quatre-vingt"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0106"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0141",
-          "begin": 443970,
-          "end": 448671,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0107",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ouais ouais c'est ça ouais vingt-huit ans oui ouais + d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0107"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0142",
-          "begin": 443970,
-          "end": 448671,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0107",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben ça ben ça fait vingt-huit ans il y a eu vingt-huit ans le quinze janvier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0107"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0143",
-          "begin": 448671,
-          "end": 455932,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0108",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et vous madame Liotard euh vous avez euh changé d'quartier dans Saint-Ouen? + mm + non (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0108"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0144",
-          "begin": 448671,
-          "end": 455932,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0108",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah mais moi j'ai pas enfin: + pas fait beaucoup d'chemin (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0108"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0145",
-          "begin": 455932,
-          "end": 458200,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0109",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'ai peut-être fait trois cent mètres +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0109"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0146",
-          "begin": 458200,
-          "end": 460891,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0110",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui c'est tout X (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0110"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0147",
-          "begin": 458200,
-          "end": 460891,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0110",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "vous êtes une sédentaire vous hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0110"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0148",
-          "begin": 460891,
-          "end": 467327,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0111",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'suis née + 58 rue Montmartre + ça vous dit rien? + la rue Montmartre c'est la rue Charles Schmidt maintenant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0111"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0149",
-          "begin": 460891,
-          "end": 467327,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0111",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0111"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0150",
-          "begin": 467327,
-          "end": 469891,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0112",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah d'accord + d'accord + d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0112"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0151",
-          "begin": 467327,
-          "end": 469891,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0112",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "[et;mais] à l'époque c'était la rue Montmartre parce qu'on voyait Montmartre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0112"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0152",
-          "begin": 469891,
-          "end": 471376,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0113",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "oui oui bien sûr oui + mm oui oui (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0113"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0153",
-          "begin": 469891,
-          "end": 471376,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0113",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "X on l'voit toujours hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0113"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0154",
-          "begin": 471376,
-          "end": 477050,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0114",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "quand ma mère est arrivée là elle dit: + \"bon faut qu'on prenne ce pont-là + parce qu'on voit l'Sacré-Coeur\""
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0114"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0155",
-          "begin": 477050,
-          "end": 486194,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0115",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0115"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0156",
-          "begin": 477050,
-          "end": 486194,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0115",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "X ça va nous porter bonheur + (rires Marc) + alors j'suis née l'année d'après + (rires Marc) et puis bon ben: j'ai connu mon mari qui était un: un client + puisque nous étions grainetiers"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0115"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0157",
-          "begin": 486194,
-          "end": 487256,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0116",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + bien sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0116"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0158",
-          "begin": 487256,
-          "end": 494728,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0117",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et puis: ben j'me suis mariée en quarante-six + puis j'suis venue habiter rue Gambetta à côté là + c'est la: troisième rue à:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0117"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0159",
-          "begin": 494728,
-          "end": 497440,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0118",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "oui oui j'vois bien oui + ouais ouais ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0118"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0160",
-          "begin": 494728,
-          "end": 497440,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0118",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "à g- à: gauche ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0118"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0161",
-          "begin": 497440,
-          "end": 498798,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0119",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oui puis j'y suis depuis quarante-six"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0119"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0162",
-          "begin": 498798,
-          "end": 504155,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0120",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + donc euh toute votre vie X + ouais (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0120"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0163",
-          "begin": 498798,
-          "end": 504155,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0120",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ben oui + ah ça va vite hein + en deux lignes vous avez mon curriculum"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0120"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0164",
-          "begin": 504155,
-          "end": 505534,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0121",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ouais vous avez pas bougé vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0121"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0165",
-          "begin": 505534,
-          "end": 506254,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0122",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0122"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0166",
-          "begin": 506254,
-          "end": 508776,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0123",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et qu'est-ce que vous avez vu comme changements euh depuis que v-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0123"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0167",
-          "begin": 508776,
-          "end": 512948,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0124",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "enfin: depuis votre vie + que vous êtes là qu'est-ce qu'est-ce qui vous frappe le plus euh depuis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0124"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0168",
-          "begin": 508776,
-          "end": 512948,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0124",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh ben beaucoup beaucoup d'choses oh la la alors là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0124"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0169",
-          "begin": 512948,
-          "end": 516485,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0125",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh ben d'a- d'abord la vie a totalement changé surtout à côté"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0125"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0170",
-          "begin": 512948,
-          "end": 516485,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0125",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "la la la population: XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0125"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0171",
-          "begin": 516485,
-          "end": 525777,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0126",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "avant c'était + pour moi c'était il y avait des jardins il y avait des X + mes parents grainetiers avaient des poulaillers il y avait des chevaux + il y avait ben boulevard Victor Hugo là +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0126"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0172",
-          "begin": 525777,
-          "end": 527664,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0127",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0127"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0173",
-          "begin": 525777,
-          "end": 527664,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0127",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il y avait Charette le marchand d'vins en gros"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0127"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0174",
-          "begin": 527664,
-          "end": 530567,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0128",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oh ben oui j'pense bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0128"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0175",
-          "begin": 527664,
-          "end": 530567,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0128",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il avait six cents chevaux celui-là ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0128"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0176",
-          "begin": 530567,
-          "end": 536880,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0129",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "waouh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0129"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0177",
-          "begin": 530567,
-          "end": 536880,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0129",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "alors + il sortait le matin tous les matins + c'était un: + et il y avait quatre chevaux d'attelés hein ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0129"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0178",
-          "begin": 536880,
-          "end": 542343,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0130",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "X beaucoup d'industries quand même à Saint-Ouen: + et maintenant voilà + voilà + ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0130"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0179",
-          "begin": 536880,
-          "end": 542343,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0130",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah ben: énormément d'usines + la rue Blanqui c'était que des usines + il y en a plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0130"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0180",
-          "begin": 542343,
-          "end": 544289,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0131",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais + oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0131"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0181",
-          "begin": 542343,
-          "end": 544289,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0131",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais maintenant il y a plus rien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0131"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0182",
-          "begin": 544289,
-          "end": 546299,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0132",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais c'est vrai ouais + ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0132"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0183",
-          "begin": 544289,
-          "end": 546299,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0132",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il y a plus rien Saint-Ouen est mort oh non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0132"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0184",
-          "begin": 546299,
-          "end": 548149,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0133",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ++ mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0133"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0185",
-          "begin": 546299,
-          "end": 548149,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0133",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et même on (n')a même pas d'commerçants"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0133"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0186",
-          "begin": 548149,
-          "end": 553231,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0134",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "chez nous X Louise puisque vous habitez l'même coin que moi + il y a rien + on (n')a rien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0134"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0187",
-          "begin": 548149,
-          "end": 553231,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0134",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il y a rien + il y a rien + il y a rien + rue Debussy il y a plus rien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0134"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0188",
-          "begin": 553231,
-          "end": 556790,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0135",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ouais ouais + c'est les supermarchés euh c'est tout hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0135"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0189",
-          "begin": 553231,
-          "end": 556790,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0135",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "X ils ont mis un fleuriste à la place"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0135"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0190",
-          "begin": 556790,
-          "end": 561893,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0136",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ben non il faut aller: en-encore le grand Franprix à la patinoire est un petit peu mieux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0136"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0191",
-          "begin": 561893,
-          "end": 566784,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0137",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "que notre petit Franprix + moi mon petit Franp-Franprix il m'dépanne quand même pour l'eau"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0137"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0192",
-          "begin": 561893,
-          "end": 566784,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0137",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oui oui oui + oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0137"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0193",
-          "begin": 566784,
-          "end": 569396,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0138",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0138"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0194",
-          "begin": 566784,
-          "end": 569396,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0138",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "les bouteilles d'eau c'est s- ++ évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0138"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0195",
-          "begin": 569396,
-          "end": 572256,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0139",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "[mais:;et:] rue Montmartre là il y avait des commer- il y avait deux boulangers"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0139"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0196",
-          "begin": 572256,
-          "end": 574059,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0140",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oh ben oui + il y a plus rien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0140"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0197",
-          "begin": 572256,
-          "end": 574059,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0140",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il y avait deux charcutiers"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0140"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0198",
-          "begin": 574059,
-          "end": 581024,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0141",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ouais ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0141"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0199",
-          "begin": 574059,
-          "end": 581024,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0141",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il y avait un boucher il y avait marchand d'couleurs X + crémier + ah il y avait un boucher d'cheval en plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0141"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0200",
-          "begin": 581024,
-          "end": 581536,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0142",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0142"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0201",
-          "begin": 581024,
-          "end": 581536,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0142",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0142"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0202",
-          "begin": 581536,
-          "end": 585454,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0143",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh la la"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0143"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0203",
-          "begin": 581536,
-          "end": 585454,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0143",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "où j'avais mon teinturier juste en bas d'chez moi j'avais mon petit cordonnier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0143"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0204",
-          "begin": 585454,
-          "end": 592800,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0144",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui X voilà moi j'ai connu aussi cordonnier XXX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0144"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0205",
-          "begin": 585454,
-          "end": 592800,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0144",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben maintenant c'est du bric-à-brac euh X comme on dit à tout à dix tout à dix dix enfin même pas dix francs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0144"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0206",
-          "begin": 592800,
-          "end": 597988,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0145",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "enfin moi j'disais dix francs ++ ce qui n'est pas dix francs mais enfin + parce qu'en plus ils sont chers"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0145"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0207",
-          "begin": 592800,
-          "end": 597988,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0145",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'est quand euh quand c'est des: ++ hein des comment on dit là?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0145"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0208",
-          "begin": 597988,
-          "end": 607132,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0146",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais + euh +++ ah les bazars ouais les bazars + mm + mm +++ mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0146"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0209",
-          "begin": 597988,
-          "end": 607132,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0146",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "c'est des bric-à-brac euh: soit disant à dix francs à cette époque-là + hein à l'époque où ils s'installaient où ils s'ouvraient + mais seulement mais ç- + c'est pas dix francs hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0146"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0210",
-          "begin": 607132,
-          "end": 614160,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0147",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah c'est pas compliqué l- + la rue Charles Schmidt + le: commerçant qui est resté depuis + c'est la pharmacie"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0147"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0211",
-          "begin": 607132,
-          "end": 614160,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0147",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ils sont chers hein +++ ah ben"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0147"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0212",
-          "begin": 614160,
-          "end": 619348,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0148",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui? + c'est le seul commerce qui est là depuis euh: que que que vous êtes là + enfin que depuis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0148"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0213",
-          "begin": 614160,
-          "end": 619348,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0148",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "la pharmacie Bichat +++ j'connais la rue"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0148"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0214",
-          "begin": 619348,
-          "end": 620749,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0149",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oui il y avait un miroitier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0149"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0215",
-          "begin": 619348,
-          "end": 620749,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0149",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "depuis que j'connais la rue"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0149"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0216",
-          "begin": 620749,
-          "end": 622133,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0150",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0150"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0217",
-          "begin": 620749,
-          "end": 622133,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0150",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il y avait un beau miroitier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0150"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0218",
-          "begin": 622133,
-          "end": 625015,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0151",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah non: pas à ce moment-là pas quand j'suis née"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0151"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0219",
-          "begin": 622133,
-          "end": 625015,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0151",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah bon ah: oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0151"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0220",
-          "begin": 625015,
-          "end": 627071,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0152",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0152"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0221",
-          "begin": 625015,
-          "end": 627071,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0152",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah non non non + non +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0152"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0222",
-          "begin": 627071,
-          "end": 636008,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0153",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "moi il y avait une miroiterie puisque il a travaillé pour moi euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0153"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0223",
-          "begin": 627071,
-          "end": 636008,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0153",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "non le seul que: ++ et puis bon ben il y avait après un: éleveur de + de vaches là [que:;de:] + une laiterie"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0153"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0224",
-          "begin": 636008,
-          "end": 636435,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0154",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0154"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0225",
-          "begin": 636435,
-          "end": 638978,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0155",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "plus haut là c'est vers euh où est l'garage maintenant +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0155"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0226",
-          "begin": 638978,
-          "end": 640374,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0156",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0156"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0227",
-          "begin": 640374,
-          "end": 647191,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0157",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais ouais ça fait pas mal de choses quand même mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0157"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0228",
-          "begin": 640374,
-          "end": 647191,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0157",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "maintenant pour trouver: + pour trouver: un + un employé enfin voyez: comment comment dirais-je"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0157"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0229",
-          "begin": 647191,
-          "end": 650242,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0158",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "X charcuterie pareil + il y en avait deux + des charcutiers"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0158"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0230",
-          "begin": 647191,
-          "end": 650242,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0158",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah ben des charcuteries il y en a plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0158"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0231",
-          "begin": 650242,
-          "end": 652214,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0159",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0159"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0232",
-          "begin": 650242,
-          "end": 652214,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0159",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "alors là il y en a pas + du tout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0159"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0233",
-          "begin": 652214,
-          "end": 656534,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0160",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "puis alors on avait un charcutier qu'était du tonnerre + tous les samedis il tuait l'porc +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0160"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0234",
-          "begin": 656534,
-          "end": 660770,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0161",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +++ ah ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0161"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0235",
-          "begin": 656534,
-          "end": 660770,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0161",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il le mettait euh: égoutter dans la rue + avec un tablier dessus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0161"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0236",
-          "begin": 660770,
-          "end": 665408,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0162",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ç-ça devait être marrant +++ ah ben oui ça m-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0162"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0237",
-          "begin": 660770,
-          "end": 665408,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0162",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et il faisait du bou- du boudin mais alors comme ça + puis tout tout l'restant hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0162"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0238",
-          "begin": 665408,
-          "end": 666385,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0163",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0163"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0239",
-          "begin": 665408,
-          "end": 666385,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0163",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ça m'étonne pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0163"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0240",
-          "begin": 666385,
-          "end": 669732,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah oui oui oui ah j'la vois encore mon dieu X ah là là (rires collectifs)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0241",
-          "begin": 669732,
-          "end": 673079,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0165",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui c'est à l'ancienne ça + c'est à l'ancienne +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0165"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0242",
-          "begin": 669732,
-          "end": 673079,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0165",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oh oui alors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0165"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0243",
-          "begin": 673079,
-          "end": 682413,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0166",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et euh est-ce que v- est-ce que vous vous souvenez de quelque chose d'inattendu ou d'un d'un événement euh: quelque chose qui s'est passé dans l'quartier que vous pourriez nous: nous raconter +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0166"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0244",
-          "begin": 682413,
-          "end": 690901,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0167",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben moi euh moi euh: moi c'est au moint d'vue d'la population je m'attendais pas à ce que la population devienne ++ qu'on n'soit plus en France +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0167"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0245",
-          "begin": 690901,
-          "end": 691794,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0168",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "cosmopolite (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0168"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0246",
-          "begin": 691794,
-          "end": 693470,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0169",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ah ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0169"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0247",
-          "begin": 691794,
-          "end": 693470,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0169",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ben ça oui mais ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0169"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0248",
-          "begin": 693470,
-          "end": 698996,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0170",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "fallait s'y attendre hein +++ mais c'est sûr hein que:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0170"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0249",
-          "begin": 693470,
-          "end": 698996,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0170",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "non mais qu'on n'soit plus vraiment plus en France on on ne on n'est même plus: plus cosmopolite là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0170"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0250",
-          "begin": 698996,
-          "end": 704120,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0171",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mais j'entendais plutôt euh: qu- un événement ou euh: je sais pas m- +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0171"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0251",
-          "begin": 704120,
-          "end": 707382,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0172",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh ben il y a eu la guerre moi j'ai connu la guerre dans ce coin-là hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0172"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0252",
-          "begin": 704120,
-          "end": 707382,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0172",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "des XXX ouais + mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0172"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0253",
-          "begin": 707382,
-          "end": 708359,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0173",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "bombardements tout ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0173"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0254",
-          "begin": 707382,
-          "end": 708359,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0173",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'était pas pareil"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0173"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0255",
-          "begin": 708359,
-          "end": 714037,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0174",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "est-ce que vous: + vous voyez un événement marquant euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0174"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0256",
-          "begin": 708359,
-          "end": 714037,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0174",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "non moi j'ai connu XXXX [il y en;on] a eu des événements marquants"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0174"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0257",
-          "begin": 714037,
-          "end": 717130,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0175",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben tour de Saint-Ouen a été rasée hein X vieux château ça je"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0175"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0258",
-          "begin": 714037,
-          "end": 717130,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0175",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais + qu'est-ce que X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0175"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0259",
-          "begin": 717130,
-          "end": 724454,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0176",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et puis + oui c'est tombé sur le + l'hôpital de: du vieux Saint-Ouen c'étaient des religieuses + j'ai un ami sa soeur a été tuée là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0176"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0260",
-          "begin": 724454,
-          "end": 730657,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0177",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "eh oui + moi j'ai pas: connu ça évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0177"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0261",
-          "begin": 724454,
-          "end": 730657,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0177",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "elle avait treize ans + les parents lui avaient dit quand il y a un bombardement tu vas chez les soeurs X + c'est là quelle s'est fait tuer"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0177"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0262",
-          "begin": 730657,
-          "end": 739484,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0178",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais + et v-vous étiez là ce jour-là X? + ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0178"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0263",
-          "begin": 730657,
-          "end": 739484,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0178",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah ben oui + oh là-bas non + parce que j'habitais pas + là c'était dans l'vieux Saint-Ouen ce que j'vous X + X dis là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0178"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0264",
-          "begin": 739484,
-          "end": 739848,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0179",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0179"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0265",
-          "begin": 739848,
-          "end": 741481,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0180",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'était: au bout d'la rue Saint-Denis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0180"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0266",
-          "begin": 739848,
-          "end": 741481,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0180",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "mm + mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0180"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0267",
-          "begin": 741481,
-          "end": 742243,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0181",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0181"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0268",
-          "begin": 742243,
-          "end": 747367,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0182",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "mais: moi j'habitais toujours euh bon voilà + oui maintenant oui + maison d'retraite"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0182"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0269",
-          "begin": 742243,
-          "end": 747367,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0182",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "c'est la maison d'retraite maintenant +++ ils sont en train d'rénover"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0182"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0270",
-          "begin": 747367,
-          "end": 750608,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0183",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "[non mais;bon ben] c'est vrai que: ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0183"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0271",
-          "begin": 750608,
-          "end": 754420,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0184",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et vous vous: vous étiez là le s- + vous vous souvenez de ce bombardement vous?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0184"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0272",
-          "begin": 754420,
-          "end": 760073,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0185",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah non + non ++ ah ben XX plus jeune que + madame:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0185"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0273",
-          "begin": 754420,
-          "end": 760073,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0185",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "non? + vous étiez peut-être plus jeune + ah d'accord + ok c'était pas le (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0185"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0274",
-          "begin": 760073,
-          "end": 762679,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0186",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "bon ben moi j'suis: j'suis là depuis que XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0186"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0275",
-          "begin": 760073,
-          "end": 762679,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0186",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0186"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0276",
-          "begin": 762679,
-          "end": 765984,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0187",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "madame est née tandis que moi je suis venue j'avais quatorze quinze ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0187"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0277",
-          "begin": 765984,
-          "end": 767110,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0188",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0188"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0278",
-          "begin": 767110,
-          "end": 769124,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0189",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais j'ai démarré j'vous dis dans Paris moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0189"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0279",
-          "begin": 769124,
-          "end": 769721,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0190",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0190"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0280",
-          "begin": 769721,
-          "end": 771989,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0191",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "vous êtes née à quelle date: quelle année vous?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0191"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0281",
-          "begin": 771989,
-          "end": 773855,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0192",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "jan- + janvier: trente-trois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0192"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0282",
-          "begin": 773855,
-          "end": 775065,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0193",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah: ben oui mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0193"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0283",
-          "begin": 775065,
-          "end": 778480,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0194",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "en ce moment X + ma date de naissance elle sort entièrement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0194"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0284",
-          "begin": 775065,
-          "end": 778480,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0194",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ça fait onze ans quand même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0194"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0285",
-          "begin": 778480,
-          "end": 779627,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0195",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "au au kéno"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0195"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0286",
-          "begin": 778480,
-          "end": 779627,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0195",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah bon?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0195"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0287",
-          "begin": 779627,
-          "end": 780774,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0196",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah ah ah ben"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0196"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0288",
-          "begin": 779627,
-          "end": 780774,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0196",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ben faut jouer"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0196"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0289",
-          "begin": 780774,
-          "end": 785919,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0197",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "eh ben vous aussi mais mais (rires Marc) oui mais XXXX elle va sortir hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0197"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0290",
-          "begin": 780774,
-          "end": 785919,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0197",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "c'est sûr hein si vous allez jouer euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0197"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0291",
-          "begin": 785919,
-          "end": 797813,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0198",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ça m'agace tous les soirs j'regarde justement l'kéno pour voir les numéros + oh: ça m'énerve ça ++ ben + un mois avant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0198"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0292",
-          "begin": 785919,
-          "end": 797813,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0198",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "[XX;de la même façon] + moi j'me rappelle ++ du: + du jour de naissance de Chirac + il était né dix ans et un jour + il était né l'vingt-neuf novembre trente-deux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0198"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0293",
-          "begin": 797813,
-          "end": 798258,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0199",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0199"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0294",
-          "begin": 797813,
-          "end": 798258,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0199",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0199"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0295",
-          "begin": 798258,
-          "end": 800145,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0200",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et moi l'vingt-huit novembre vingt-deux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0200"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0296",
-          "begin": 798258,
-          "end": 800145,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0200",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il est né"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0200"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0297",
-          "begin": 800145,
-          "end": 801736,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0201",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il est né un mois avant moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0201"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0298",
-          "begin": 800145,
-          "end": 801736,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0201",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + dix ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0201"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0299",
-          "begin": 801736,
-          "end": 804342,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0202",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "dix ans après (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0202"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0300",
-          "begin": 801736,
-          "end": 804342,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0202",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "un mois XXX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0202"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0301",
-          "begin": 804342,
-          "end": 805870,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0203",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah vous êtes du mois d'octobre vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0203"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0302",
-          "begin": 805870,
-          "end": 809471,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0204",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "non ++ il est il est: il est de de décembre lui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0204"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0303",
-          "begin": 805870,
-          "end": 809471,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0204",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "X ++ novembre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0204"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0304",
-          "begin": 809471,
-          "end": 813156,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0205",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "non il est du vingt-neuf novembre + novembre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0205"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0305",
-          "begin": 809471,
-          "end": 813156,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0205",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "novembre + novembre + et du moi du mois d'janvier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0205"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0306",
-          "begin": 813156,
-          "end": 813731,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0206",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0206"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0307",
-          "begin": 813731,
-          "end": 816972,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0207",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah oui ++ deux mois avant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0207"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0308",
-          "begin": 813731,
-          "end": 816972,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0207",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais il a eu + ses soixante-quinze ans avant moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0207"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0309",
-          "begin": 816972,
-          "end": 818999,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0208",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui bien sûr novembre bien sûr oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0208"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0310",
-          "begin": 816972,
-          "end": 818999,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0208",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "moi j'les ai eus au mois d'janvier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0208"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0311",
-          "begin": 818999,
-          "end": 820890,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0209",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'est pas la même année déjà"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0209"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0312",
-          "begin": 818999,
-          "end": 820890,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0209",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui bien sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0209"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0313",
-          "begin": 820890,
-          "end": 827347,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0210",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "lui c'était en trente-deux vous c'est en trente-trois ++ mm + ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0210"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0314",
-          "begin": 820890,
-          "end": 827347,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0210",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ben: ++ voilà + lui à la fin mais moi l'début + de l'autre année"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0210"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0315",
-          "begin": 827347,
-          "end": 832175,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0211",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah on a dix ans d'écart parce que + moi j'suis née à la fin de l'année: vingt-deux +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0211"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0316",
-          "begin": 832175,
-          "end": 834126,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0212",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais c'est marrant ouais XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0212"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0317",
-          "begin": 832175,
-          "end": 834126,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0212",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et puis vous au début de l'année trente-trois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0212"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0318",
-          "begin": 834126,
-          "end": 838785,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0213",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oui + [c'est;et] comme Paul Paul il était il était d'vingt-deux X + \ndix ans si ça compte"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0213"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0319",
-          "begin": 834126,
-          "end": 838785,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0213",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah ça compte dix ans ++ ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0213"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0320",
-          "begin": 838785,
-          "end": 840972,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0214",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oh ben oui ça compte hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0214"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0321",
-          "begin": 838785,
-          "end": 840972,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0214",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "alors pour revenir aux quartiers"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0214"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0322",
-          "begin": 840972,
-          "end": 843705,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0215",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "un petit peu"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0215"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0323",
-          "begin": 840972,
-          "end": 843705,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0215",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "on vieillit oui moi je l'ai vu avec Paul hein +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0215"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0324",
-          "begin": 843705,
-          "end": 853233,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0216",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "est-ce est-ce qu'il y a des endroits dans le quartier le quartier où vous habitez + où vous allez euh souvent + toutes les semaines ou euh + des des promenades que vous faites"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0216"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0325",
-          "begin": 853233,
-          "end": 855814,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0217",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh la maintenant on a XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0217"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0326",
-          "begin": 853233,
-          "end": 855814,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0217",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "euh habituellement: ou des choses comme ça? (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0217"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0327",
-          "begin": 855814,
-          "end": 860388,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0218",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ça dépend de l'X moi j'ai été agressée trois fois X j'aime mieux vous dire que j'ai plutôt peur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0218"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0328",
-          "begin": 860388,
-          "end": 868114,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0219",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "où ça? ++ ah oui + ouais +++ ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0219"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0329",
-          "begin": 860388,
-          "end": 868114,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0219",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'ai été agressée trois fois + alors dont une fois dans mon immeuble la dernière fois là: récemment ben oui alors donc euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0219"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0330",
-          "begin": 868114,
-          "end": 871186,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0220",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "vous pouvez nous raconter un petit peu ce ce qui s'est passé ce:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0220"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0331",
-          "begin": 871186,
-          "end": 877262,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0221",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ben X j'rentrais de: de l'hôpital comme tous les jours + pendant neuf ans j'ai fait ce l'hôpital + enfin les hôpitaux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0221"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0332",
-          "begin": 871186,
-          "end": 877262,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0221",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "la dernière XX ++ mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0221"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0333",
-          "begin": 877262,
-          "end": 878790,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0222",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "parce que vous [travailliez;travaillez] à l'hôpital? +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0222"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0334",
-          "begin": 878790,
-          "end": 886707,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0223",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "non non non pas du tout mon mari y était + enfin mon mari mon compagnon hein + puisque: + j'étais pas mariée: bon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0223"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0335",
-          "begin": 878790,
-          "end": 886707,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0223",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "non +++ d'accord ++ ah oui + d'accord + il était euh hospitalisé + d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0223"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0336",
-          "begin": 886707,
-          "end": 890477,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0224",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et: il ét- il était pas: il était pas tard il était vingt heures"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0224"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0337",
-          "begin": 890477,
-          "end": 911109,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0225",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ++ mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0225"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0338",
-          "begin": 890477,
-          "end": 911109,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0225",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais il faisait pas nuit j'veux dire puisque j'avais encore mes lunettes de soleil + alors euh il y avait encore soleil et comme j'ai les yeux très fragiles bon ++ bon ben comme d'habitude je rentre ++ la porte d'entrée + je passe + à ma boîte aux lettres + comme toujours chaque fois que je descends que je monte j'ouvre ma boîte aux lettres parce que je veux: pas laisser de papiers dedans bon ++ il y avait deux filles + jeunes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0225"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0339",
-          "begin": 911109,
-          "end": 912235,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0226",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0226"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0340",
-          "begin": 912235,
-          "end": 953190,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0227",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "euh genre maghrébines évidemment ++ qui étaient là dont une tenait la porte + ouverte + et l'autre me tournait le dos puisque j'étais aux boîtes aux lettres + elle me tournait l'dos donc face à sa copine + et elles discutaient + mais rien n'me laissait supposer X ces filles et puis j'allais pas leur demander si elles allaient monter ou descen- euh ou qu'est-ce que'elle faisaient + m'occupe de personne moi euh j'prends: je referme ma boîte + j'prends mes clés dans ma main + donc j'avais m- X mais elles étaient en train de ++ de contrôler mon sac à main ++ parce que là c'est pas un c'est pas du tout un sac à main j'avais un sac de courses + et j'avais pas d'courses dedans parce que j'étais fatiguée ce j- ce soir-là donc j'avais pas fait mes courses c'est pour ça qu'elle ont pris l'argent d'ailleurs + elles ont eu euh bon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0227"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0341",
-          "begin": 953190,
-          "end": 953825,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0228",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0228"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0342",
-          "begin": 953825,
-          "end": 969633,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0229",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "donc el-elles regardaient certainement comment était euh pla-placé mon sac à main voyez ++ et j'ai mis mes clés dans ma main comme d'habitude + heureusement qu'elles les ont pas prises d'ailleurs + elles m'ont laissé monter les huit premières marches + et il y a l'palier aussit- a l'palier aussitôt"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0229"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0343",
-          "begin": 969633,
-          "end": 970077,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0230",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0230"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0344",
-          "begin": 970077,
-          "end": 986753,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0231",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et là + j'ai senti mon sac qui: évidemment qui s'dérobait + j'ai fait réticence elles m'ont + elle m'a jetée dans l'mur + j'ai: été à l'hôpital évidemment + m'a transporté à l'hôpital + des gens + j'ai crié \"au secours au secours\" ++ un fait exprès il y avait personne ni qui montait ni qui descendait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0231"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0345",
-          "begin": 986753,
-          "end": 993887,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0232",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah c'est toujours hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0232"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0346",
-          "begin": 986753,
-          "end": 993887,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0232",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "on aurait dit + ah moi j'ai + d'ailleurs avec la police c'est ce qu'on a dit + c'était + prémédité ++ ah si"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0232"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0347",
-          "begin": 993887,
-          "end": 994272,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0233",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0233"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0348",
-          "begin": 994272,
-          "end": 1000094,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0234",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "on avait dit euh + tous voilà + sortir + à peu près à la même heure + rentrer + à la même heure"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0234"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0349",
-          "begin": 994272,
-          "end": 1000094,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0234",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "parce que vous rentrez tous les jours à la même heure aussi + voilà c'est ça + ça c'est XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0234"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0350",
-          "begin": 1000094,
-          "end": 1004308,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0235",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "c'est pas que c'était prémédité c'est que les gens savent qui c'est mais euh ils veulent pas de représailles"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0235"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0351",
-          "begin": 1004308,
-          "end": 1023226,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0236",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "voilà + ah ben moi + il y a un petit gamin: là: qui habite un petit Africain + il y a pas longtemps qu'ils sont locataires + mais ils étaient déjà là X + il était à la fenêtre ++ et c'est lui qu'a qui m'a remis les papiers dans ma boîte aux lettres le lendemain matin + donc pourquoi c'est lui? ++ il m'dit \"je sais qui c'est j'les connais les filles\""
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0236"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0352",
-          "begin": 1023226,
-          "end": 1025409,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0237",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "il va pas l'dire hein + il va pas l'dénoncer"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0237"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0353",
-          "begin": 1025409,
-          "end": 1038467,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0238",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'dis pourquoi tu veux pas l'dire: Issaga + pourquoi tu veux pas l'dire: qui c'est ++ j'dis parce que pour moi tu vois ben on m'rembourserait mes lunettes + et là on veut pas m'les rembourser + tant que X tant qu'on (n')a pas trouvé les: les"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0238"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0354",
-          "begin": 1038467,
-          "end": 1040079,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0239",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "les coupables"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0239"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0355",
-          "begin": 1038467,
-          "end": 1040079,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0239",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "les agresseurs oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0239"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0356",
-          "begin": 1040079,
-          "end": 1059759,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0240",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais j'y dis \"mais c'est pas gentil Issaga tu ne risques rien + on te fera pas d'mal à toi + tu n'es pas l'fautif\" + mais il dit \"oui mais j'ai remis les papiers + alors comme j'ai remis tes papiers\" parce qu'ils vous tutoient tous savez bien + il m'dit comme j'ai remis tes papiers + ah ben j'dis j'dirai pas que c'est toi qui a remis mes papiers + et puis c'est tout ++ hein + mais il veut pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0240"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0357",
-          "begin": 1059759,
-          "end": 1068057,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0241",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "X j'veux pas leur causer des ennuis + mais quand même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0241"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0358",
-          "begin": 1059759,
-          "end": 1068057,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0241",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "moi j'ai été agressée à dix heures du main avenue Gabriel Péri + devant la B- + la BNP qui est au coin d'la rue Ottino là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0241"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0359",
-          "begin": 1068057,
-          "end": 1068590,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0242",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0242"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0360",
-          "begin": 1068057,
-          "end": 1068590,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0242",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0242"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0361",
-          "begin": 1068590,
-          "end": 1072127,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0243",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "un gars qui m'a + sauté dessus + avec un bas sur la tête"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0243"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0362",
-          "begin": 1072127,
-          "end": 1072868,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0244",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ben oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0244"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0363",
-          "begin": 1072868,
-          "end": 1078711,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0245",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah ouais? + à ce point?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0245"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0364",
-          "begin": 1072868,
-          "end": 1078711,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0245",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et puis qui m'a tiré mon sac alors c'était + une petite + tout petit un petit sac + alors euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0245"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0365",
-          "begin": 1078711,
-          "end": 1080217,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0246",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0246"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0366",
-          "begin": 1078711,
-          "end": 1080217,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0246",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "pochette +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0246"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0367",
-          "begin": 1080217,
-          "end": 1083479,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0247",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "une pochette heureusement d'habitude j'mettais mes clés + mon porte-monnaie"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0247"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0368",
-          "begin": 1083479,
-          "end": 1088709,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0248",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "heureusement moi j'avais mes clés dans ma main elles les ont pas tirées heureusement parce que ben: elles m'au- elles m'auraient déchirée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0248"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0369",
-          "begin": 1083479,
-          "end": 1088709,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0248",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'avais pas mis mes clés + heureusement + oh ben oui + parce que il y avait mon adresse et X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0248"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0370",
-          "begin": 1088709,
-          "end": 1091633,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0249",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "mais: là par contre alors il a pas eu grand chose"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0249"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0371",
-          "begin": 1091633,
-          "end": 1093372,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0250",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0250"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0372",
-          "begin": 1091633,
-          "end": 1093372,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0250",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'avais neuf euros dans mon porte-monnaie"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0250"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0373",
-          "begin": 1093372,
-          "end": 1097375,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0251",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ouais + avec le bas c'est: c'est impressionnant (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0251"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0374",
-          "begin": 1093372,
-          "end": 1097375,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0251",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben moi j'avais quarante euros parce que bon ben j'allais faire mes courses X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0251"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0375",
-          "begin": 1097375,
-          "end": 1099876,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0252",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "comme j'me: sentais tellement fatiguée j'ai dit oh ben XXX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0252"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0376",
-          "begin": 1097375,
-          "end": 1099876,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0252",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "alors j'ai été porter plainte"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0252"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0377",
-          "begin": 1099876,
-          "end": 1105719,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0253",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais + ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0253"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0378",
-          "begin": 1099876,
-          "end": 1105719,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0253",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il m'dit \"vous avez noté l'numéro d'la voiture\" ben tu parles elle était en deuxième file + prête à partir le:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0253"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0379",
-          "begin": 1105719,
-          "end": 1106760,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0254",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais + ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0254"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0380",
-          "begin": 1106760,
-          "end": 1114106,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0255",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "alors paraît-il qu'elles sont montées sur une bicyclette et puis elles sont parties: vers la mairie ça s'est passé le sac s'est vidé vers la mairie ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0255"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0381",
-          "begin": 1114106,
-          "end": 1116332,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0256",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + bon ben on va peut-être pa- euh:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0256"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0382",
-          "begin": 1116332,
-          "end": 1126957,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0257",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "parler de: + oui oui X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0257"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0383",
-          "begin": 1116332,
-          "end": 1126957,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0257",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "passer à des choses un peu plus agréables (rires) alors j'ai est-ce que est-ce qu'il y a des fêtes: d'immeuble ou des fêtes de voisins des fêtes de rue des choses comme ça dans votre quartier euh +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0257"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0384",
-          "begin": 1126957,
-          "end": 1133075,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0258",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "est-ce que vous voyez des: des choses comme ça?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0258"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0385",
-          "begin": 1126957,
-          "end": 1133075,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0258",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben au parte au parc ils font de temps en mais moi j'y allais plus alors euh + je n'sais plus j'sais plus comment ça s'déroule"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0258"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0386",
-          "begin": 1133075,
-          "end": 1133710,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0259",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0259"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0387",
-          "begin": 1133710,
-          "end": 1140019,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0260",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "à part que je lis le: Seine-Saint-Denis et Saint-Ouen + euh je vois qu'est-ce qui: s'y passe mais autrement j'y v-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0260"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0388",
-          "begin": 1140019,
-          "end": 1143810,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0261",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'y allais plus moi moi j'allais à l'hôpital vous savez j'étais vraiment: +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0261"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0389",
-          "begin": 1140019,
-          "end": 1143810,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0261",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "XX chez nous ils font pas d'fête d'immeuble"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0261"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0390",
-          "begin": 1143810,
-          "end": 1148024,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0262",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "c'était régulier deux heures et demie: euh tous les jours je partais enfin quatorze heures trente"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0262"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0391",
-          "begin": 1148024,
-          "end": 1154206,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0263",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +++ d'accord + ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0263"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0392",
-          "begin": 1148024,
-          "end": 1154206,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0263",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'revenais vers euh + avant j'rentrais un peu plus tôt et les derniers mois là j'rentrais vers vingt heures"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0263"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0393",
-          "begin": 1154206,
-          "end": 1156389,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0264",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et au parc c'était quoi:?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0264"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0394",
-          "begin": 1154206,
-          "end": 1156389,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0264",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh c'est tous les ans XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0264"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0395",
-          "begin": 1156389,
-          "end": 1158742,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0265",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oh j'sais pas il y avait eu un jour là que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0265"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0396",
-          "begin": 1156389,
-          "end": 1158742,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0265",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "c'est pour le quatorze juillet"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0265"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0397",
-          "begin": 1158742,
-          "end": 1161052,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0266",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "non il y avait au mois d'septembre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0266"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0398",
-          "begin": 1158742,
-          "end": 1161052,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0266",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "c'est [un;le] truc de la ville"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0266"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0399",
-          "begin": 1161052,
-          "end": 1163447,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0267",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il y en a aussi + il y a deux jours au mois d'septembre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0267"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0400",
-          "begin": 1161052,
-          "end": 1163447,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0267",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oh oui ça: il y a la ville oui bien sûr au mois d'septembre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0267"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0401",
-          "begin": 1163447,
-          "end": 1166798,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0268",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il y a la ville et puis il y a aussi le le XX j'sais pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0268"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0402",
-          "begin": 1163447,
-          "end": 1166798,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0268",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui et puis il y a la brocante"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0268"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0403",
-          "begin": 1166798,
-          "end": 1170081,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0269",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oui là quand ils font des"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0269"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0404",
-          "begin": 1166798,
-          "end": 1170081,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0269",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui la brocante il y a la fête: +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0269"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0405",
-          "begin": 1170081,
-          "end": 1181789,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0270",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oh la la (rires Marc) mon Dieu le jour qu'ils font les merguez et tout oh la la (rires Marc) puis alors c'est pas ça mais le bus euh moi qui prenais l'cent trente-sept eh ben ++ fallait venir le prendre à la mairie parce qu'il faisait tout l'grand tour"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0270"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0406",
-          "begin": 1181789,
-          "end": 1187040,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0271",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "si au mois d'juin là ils doivent faire une fête là place du marché euh les: ça doit être les Africains"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0271"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0407",
-          "begin": 1187040,
-          "end": 1187886,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0272",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "Ottino?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0272"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0408",
-          "begin": 1187886,
-          "end": 1193353,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0273",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "non X chez nous ++ il m'semble qu'ils font une: + une petite soirée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0273"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0409",
-          "begin": 1187886,
-          "end": 1193353,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0273",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah bon? ++ Ottino que j'ai dit c'est pas Ottino le magasin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0273"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0410",
-          "begin": 1193353,
-          "end": 1207223,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0274",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "c'est comment euh comment il s'appelle le marché"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0274"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0411",
-          "begin": 1193353,
-          "end": 1207223,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0274",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "euh: Londi + Londi ++ marché du Londi + ils doivent [fête;faites] une ils doivent faire une petite: un dimanche ++ un petit euh: + un petit repas convivial entre eux +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0274"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0412",
-          "begin": 1207223,
-          "end": 1207756,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0275",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0275"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0413",
-          "begin": 1207756,
-          "end": 1216117,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0276",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "avec euh en association avec la ville + puisque il y a d'la musique il y a plein d'choses + il y a des ani- il y a des petites animations +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0276"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0414",
-          "begin": 1216117,
-          "end": 1229069,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0277",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et euh et donc dans l'quartier où vous habitez est-ce que qu-quelles sont les communautés qui euh + qui habitent: dans l'quartier + des gens de différentes origines: + qu'est-ce que: qu'est-ce que vous voyez autour de vous? +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0277"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0415",
-          "begin": 1229069,
-          "end": 1243227,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0278",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "XX pas beaucoup parce que vous êtes en: petite maison ++ vous êtes en petite maison vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0278"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0416",
-          "begin": 1229069,
-          "end": 1243227,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0278",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ben moi dans l'immeuble + j'ai + Arabes + Marocains + enfin du moins ++ Tunisiens + Marocains + Africains ++ euh: Algériens + Turcs ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0278"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0417",
-          "begin": 1243227,
-          "end": 1244924,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0279",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "voilà + oui + (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0279"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0418",
-          "begin": 1244924,
-          "end": 1245732,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0280",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "alors voilà"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0280"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0419",
-          "begin": 1245732,
-          "end": 1248360,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0281",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0281"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0420",
-          "begin": 1245732,
-          "end": 1248360,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0281",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "si ça peut vous situer euh: mon environnement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0281"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0421",
-          "begin": 1248360,
-          "end": 1249845,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0282",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "vous avez une impératrice de:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0282"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0422",
-          "begin": 1248360,
-          "end": 1249845,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0282",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0282"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0423",
-          "begin": 1249845,
-          "end": 1250759,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0283",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "d'Iran qui est en face de vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0283"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0424",
-          "begin": 1249845,
-          "end": 1250759,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0283",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui + Farah"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0283"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0425",
-          "begin": 1250759,
-          "end": 1254444,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0284",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "non non non non j'ai une habitante de Saint vous avez une habitante de Saint-Ouen c'est tout (rires collectifs)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0284"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0426",
-          "begin": 1254444,
-          "end": 1256818,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0285",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "(rires collectifs) oui ouais ouais ouais ouais + oui mais:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0285"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0427",
-          "begin": 1256818,
-          "end": 1258434,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0286",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "(brouhaha) et vous avez euh vous vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0286"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0428",
-          "begin": 1256818,
-          "end": 1258434,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0286",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "XX ou des conversations"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0286"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0429",
-          "begin": 1258434,
-          "end": 1259999,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0287",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "il y a des Hindous maintenant ++     oui + oui + oui ++ oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0287"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0430",
-          "begin": 1259999,
-          "end": 1260459,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0288",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oui oui X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0288"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0431",
-          "begin": 1260459,
-          "end": 1260924,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0289",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "ils sont très gentils ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0289"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0432",
-          "begin": 1260924,
-          "end": 1266294,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0290",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah les en principe les Hindous oui ++ + mm + ben voyez les Africains on les entend pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0290"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0433",
-          "begin": 1260924,
-          "end": 1266294,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0290",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "ah oui oui oui il y a des Hindous maintenant ils sont très gentils parce que: + XX +++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0290"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0434",
-          "begin": 1266294,
-          "end": 1279416,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0291",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et pourtant il y a beaucoup d'gosses ah oui il y a X où il y a Is-Issaga là le fameux Issaga là l'gamin + ils sont très gentils hein moi [je sais;j'osais] pas: + euh la petite Africaine: + dans sa porte que j'ai été jetée là euh +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0291"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0435",
-          "begin": 1279416,
-          "end": 1287396,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0292",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "c'est elle d'ailleurs euh qui m'a découverte sur le palier: ensanglantée et tout + elle venait d'arriver pauvre femme elle a eu un drôle de spectacle +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0292"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0436",
-          "begin": 1279416,
-          "end": 1287396,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0292",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah ben oui elle a entendu l'bruit + non en général il y a pas de de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0292"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0437",
-          "begin": 1287396,
-          "end": 1293533,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0293",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et comme elle dit j'ai eu une drôle de: hein de d'impression sur euh sur sur l'immeuble quoi ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0293"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0438",
-          "begin": 1287396,
-          "end": 1293533,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0293",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui + une drôle d'impression + ah la la +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0293"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0439",
-          "begin": 1293533,
-          "end": 1297007,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0294",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "d'ailleurs elle l'a toujours l'impression elle dit: elle parle à personne"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0294"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0440",
-          "begin": 1297007,
-          "end": 1325362,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui + ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0441",
-          "begin": 1297007,
-          "end": 1325362,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "à part à moi +++ elle parle pas X comme elle dit euh + \"ils sont pas intéressants\" et c'est vrai + moi j'ai beaucoup beaucoup d'ennuis avec [le;-] petit Algérien au-dessus euh ++ ça a été un: ça a été un: comment: ++ oh co-co: comment il(s) s'ap- ça s'appelle + un Antillais + avant + il a été: expulsé parce que vraiment: al-alors lui + lui au moins il était franc + il le faisait pour tout l'monde + donc il y a pu f- on a pu faire quelque chose"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0442",
-          "begin": 1325362,
-          "end": 1326657,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0296",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0296"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0443",
-          "begin": 1326657,
-          "end": 1330787,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0297",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais + lui l'Algérien + il le fait que pour moi toute seule la nuit +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0297"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0444",
-          "begin": 1330787,
-          "end": 1332336,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0298",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui + mais il fait quoi?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0298"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0445",
-          "begin": 1332336,
-          "end": 1333271,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0299",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "pour que moi j'entende"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0299"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0446",
-          "begin": 1333271,
-          "end": 1334375,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0300",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ben il il roule s-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0300"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0447",
-          "begin": 1333271,
-          "end": 1334375,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0300",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "la musique?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0300"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0448",
-          "begin": 1334375,
-          "end": 1345211,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0301",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il roule sa banquette j'sais pas quoi + il fait tomber des bouts d'bois il fait tomber des billes + euh voyez + il a + il doit avoir un appareil qui fait tac tac tac tac tac tac + tac tac tac tac tac tac tac + sans arrêt"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0301"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0449",
-          "begin": 1345211,
-          "end": 1346290,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0302",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0302"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0450",
-          "begin": 1346290,
-          "end": 1347944,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0303",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "si vous saviez ce que c'est énervant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0303"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0451",
-          "begin": 1347944,
-          "end": 1349641,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0304",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui je sais + mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0304"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0452",
-          "begin": 1347944,
-          "end": 1349641,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0304",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0304"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0453",
-          "begin": 1349641,
-          "end": 1355082,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0305",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "qu'est-ce que c'est que cet appareil? ++ c'est une vidéo j'en sais rien j'sais pas quoi je sais pas +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0305"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0454",
-          "begin": 1349641,
-          "end": 1355082,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0305",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "du bruit la nuit oui + XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0305"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0455",
-          "begin": 1355082,
-          "end": 1360756,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0306",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "alors je l'ai signalé là je l'entends plus il y a il a dû être + plusieurs fois qu'il est appelé à la loge + par madame Jacques +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0306"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0456",
-          "begin": 1360756,
-          "end": 1369477,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0307",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +++ est-ce que vous avez fait connaissance euh: enfin des des + des"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0307"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0457",
-          "begin": 1360756,
-          "end": 1369477,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0307",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah mais je suis montée l'voir il m'a reçue comme un chien dans un jeu d'quilles +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0307"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0458",
-          "begin": 1369477,
-          "end": 1379933,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0308",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0308"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0459",
-          "begin": 1369477,
-          "end": 1379933,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0308",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oh la la comme on dit ah ben oui + et il m'a dit que si j'étais pas X une femme + en mettant son poing comme ça j'ai dit oh: attention jeune homme (rires Marc) oh attention +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0308"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0460",
-          "begin": 1379933,
-          "end": 1382370,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0309",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "c'est un Arabe? + c'est un Algérien?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0309"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0461",
-          "begin": 1379933,
-          "end": 1382370,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0309",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "regardez ++ oui oui +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0309"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0462",
-          "begin": 1382370,
-          "end": 1384554,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0310",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "faites bien attention à qui vous parlez hein +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0310"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0463",
-          "begin": 1384554,
-          "end": 1386103,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0311",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "[c'était;c'est] un violent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0311"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0464",
-          "begin": 1384554,
-          "end": 1386103,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0311",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0311"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0465",
-          "begin": 1386103,
-          "end": 1386805,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0312",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "oh la la"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0312"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0466",
-          "begin": 1386103,
-          "end": 1386805,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0312",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "parce que:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0312"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0467",
-          "begin": 1386805,
-          "end": 1387871,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0313",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "un violent +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0313"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0468",
-          "begin": 1387871,
-          "end": 1388692,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0314",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "c'est un vieux?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0314"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0469",
-          "begin": 1388692,
-          "end": 1389475,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0315",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "un violent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0315"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0470",
-          "begin": 1389475,
-          "end": 1390325,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0316",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "un violent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0316"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0471",
-          "begin": 1389475,
-          "end": 1390325,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0316",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "c'est un + oui c'est"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0316"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0472",
-          "begin": 1390325,
-          "end": 1393037,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0317",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "un violent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0317"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0473",
-          "begin": 1390325,
-          "end": 1393037,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0317",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oui + et pourtant c'est un jeune XXX (brouhaha)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0317"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0474",
-          "begin": 1393037,
-          "end": 1394145,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0318",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oui mais il travaille pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0318"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0475",
-          "begin": 1393037,
-          "end": 1394145,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0318",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0318"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0476",
-          "begin": 1394145,
-          "end": 1396498,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0319",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "j'connais quelques voisins chez X mais bon j'peux pas connaître tout l'monde"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0319"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0477",
-          "begin": 1394145,
-          "end": 1396498,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0319",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'était comme la famille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0319"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0478",
-          "begin": 1396498,
-          "end": 1400987,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0320",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il a travaillé + pour avoir des feuilles de paye"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0320"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0479",
-          "begin": 1396498,
-          "end": 1400987,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0320",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "XX à tous nos voisins tout autour de nous + c'était comme de la famille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0320"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0480",
-          "begin": 1400987,
-          "end": 1403149,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0321",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "X on faisait des repas XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0321"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0481",
-          "begin": 1400987,
-          "end": 1403149,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0321",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "comprenez + pour faire un dossier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0321"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0482",
-          "begin": 1403149,
-          "end": 1404342,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0322",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0322"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0483",
-          "begin": 1403149,
-          "end": 1404342,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0322",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et maintenant il ne travaille plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0322"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0484",
-          "begin": 1404342,
-          "end": 1405637,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0323",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh oui oh oui oh la la mon Dieu"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0323"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0485",
-          "begin": 1405637,
-          "end": 1407461,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0324",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "quand il a eu le logement XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0324"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0486",
-          "begin": 1405637,
-          "end": 1407461,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0324",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "nous restions en relation"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0324"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0487",
-          "begin": 1407461,
-          "end": 1409264,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0325",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et et pourquoi ça a changé: à votre avis euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0325"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0488",
-          "begin": 1409264,
-          "end": 1413161,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0326",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "parce que c'était plus la même + puis les gens vivent davantage chez eux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0326"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0489",
-          "begin": 1413161,
-          "end": 1413436,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0327",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0327"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0490",
-          "begin": 1413436,
-          "end": 1415429,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0328",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "maintenant c'est la télé et la voiture"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0328"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0491",
-          "begin": 1415429,
-          "end": 1416301,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0329",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ouais ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0329"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0492",
-          "begin": 1416301,
-          "end": 1420727,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "alors euh: l-la voiture + c'est ce que j'leur dis + c'est l'prolongement d'votre appartement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0493",
-          "begin": 1420727,
-          "end": 1427713,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0331",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais + mm ++ mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0331"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0494",
-          "begin": 1420727,
-          "end": 1427713,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0331",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "X ils montent là comme ils vont dans leur salon + et puis la ra- la télé oh ben: il y a telle émission alors faut pas la louper"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0331"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0495",
-          "begin": 1427713,
-          "end": 1429791,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0332",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ouais ouais + donc c'est: (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0332"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0496",
-          "begin": 1429791,
-          "end": 1437306,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0333",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ben c'est vrai XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0333"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0497",
-          "begin": 1429791,
-          "end": 1437306,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0333",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ben moi avant d'aller à l'hôpit- euh: j'allais à l'hôpital bon ben d'accord je m'occupais pas d'la télé à part le soir pour me +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0333"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0498",
-          "begin": 1437306,
-          "end": 1446238,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0334",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "extraire [les;des] idées oui bon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0334"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0499",
-          "begin": 1437306,
-          "end": 1446238,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0334",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "changer les idées hein ++ mais c'est vrai que maintenant là: j'ai pris l'habitude de regarder Derrick + c'est un petit policier qui dure pas longtemps il dure une heure"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0334"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0500",
-          "begin": 1446238,
-          "end": 1446962,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0335",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0335"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0501",
-          "begin": 1446238,
-          "end": 1446962,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0335",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "c'est un film allemand"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0335"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0502",
-          "begin": 1446962,
-          "end": 1448405,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0336",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et j'aime bien mon petit Derrick"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0336"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0503",
-          "begin": 1446962,
-          "end": 1448405,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0336",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "feuilleton allemand"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0336"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0504",
-          "begin": 1448405,
-          "end": 1449277,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0337",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0337"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0505",
-          "begin": 1448405,
-          "end": 1449277,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0337",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "[ah;ben] oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0337"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0506",
-          "begin": 1449277,
-          "end": 1457786,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0338",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "c'est un feuilleton all- oh oui j'le regardais quand euh (rires) +++ quand j'avais quinze ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0338"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0507",
-          "begin": 1449277,
-          "end": 1457786,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0338",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "vous aussi? ++ oh: ben oui moi j'aime bien Derrick parce que d'abord j-j'aime beaucoup les deux personnages hein ils sont très bien +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0338"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0508",
-          "begin": 1457786,
-          "end": 1468521,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0339",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et: bon il y a aussi comment ++ le soir alors là + il y a des: + j'ai jamais regardé Les Feux d'amour ++ parce que c'était pas: de +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0339"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0509",
-          "begin": 1468521,
-          "end": 1473666,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0340",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "c'est nul"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0340"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0510",
-          "begin": 1468521,
-          "end": 1473666,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0340",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "dans mes heures + par contre on les voyait: à l'hôpital + pour les patients + XX +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0340"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0511",
-          "begin": 1473666,
-          "end": 1485941,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0341",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + est-ce que: alors dans le dans les: différents quartiers de Saint-Ouen + donc euh: est-ce quelles sont les différences que vous voyez enfin comment vous: ++ divisez la ville pour ainsi dire?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0341"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0512",
-          "begin": 1485941,
-          "end": 1490430,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0342",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh maintenant c'est compliqué + le vieux Saint-Ouen c'est l'nouveau Saint-Ouen + c'est c'est tout neuf"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0342"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0513",
-          "begin": 1490430,
-          "end": 1491429,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0343",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'en sais rien c'est"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0343"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0514",
-          "begin": 1490430,
-          "end": 1491429,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0343",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0343"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0515",
-          "begin": 1491429,
-          "end": 1498055,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0344",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ici c'est l'vieux Saint-Ouen maintenant ++ et encore ça s'est arrangé +++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0344"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0516",
-          "begin": 1498055,
-          "end": 1504808,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0345",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "donc et le: vous dites le vieux Saint-Ouen c'est devenu le nouveau ++ pourquoi ç- le vieux Saint-Ouen + en quoi il est devenu le nouveau Saint-Ouen?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0345"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0517",
-          "begin": 1498055,
-          "end": 1504808,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0345",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "de toute façon que vous alliez dans un coin ou dans un autre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0345"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0518",
-          "begin": 1504808,
-          "end": 1510186,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0346",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "en quoi il est devenu l'vieux Saint-Ouen c'est des immeubles + qui sont bons à + à: démolir des trois quarts"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0346"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0519",
-          "begin": 1510186,
-          "end": 1510571,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0347",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0347"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0520",
-          "begin": 1510571,
-          "end": 1519376,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0348",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "vous voyez ces rues là bon ben + vous voyez une maison regardez ça rue Matthieu dimanche + X + et ben: ils ont + euh bl-bloqué toutes les fenêtres"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0348"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0521",
-          "begin": 1519376,
-          "end": 1522367,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0349",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0349"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0522",
-          "begin": 1519376,
-          "end": 1522367,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0349",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et puis il y a plus d'toiture et puis ben en face de chez moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0349"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0523",
-          "begin": 1522367,
-          "end": 1524233,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0350",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "en face de chez vous oui c'est ça voilà"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0350"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0524",
-          "begin": 1522367,
-          "end": 1524233,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0350",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'est tout XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0350"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0525",
-          "begin": 1524233,
-          "end": 1527559,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0351",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais + ouais ouais + mm +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0351"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0526",
-          "begin": 1524233,
-          "end": 1527559,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0351",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh la la c'est dans un état pas possible"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0351"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0527",
-          "begin": 1527559,
-          "end": 1531287,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0352",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + donc il y a X pour vous il y a + comme deux parties d'la ville:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0352"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0528",
-          "begin": 1531287,
-          "end": 1538569,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0353",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "c'est divisé en deux? + ouais ++ mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0353"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0529",
-          "begin": 1531287,
-          "end": 1538569,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0353",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh ben oui avant c'était l'vieux Saint-Ouen parce que c'était + c'était l'Saint-Ouen du début + où il y a l'église il y avait un cimetière autour puis des maisons"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0353"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0530",
-          "begin": 1538569,
-          "end": 1538929,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0354",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0354"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0531",
-          "begin": 1538929,
-          "end": 1540837,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0355",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "parce que ici c'étaient les champs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0355"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0532",
-          "begin": 1540837,
-          "end": 1543655,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0356",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0356"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0533",
-          "begin": 1540837,
-          "end": 1543655,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0356",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et l'église du vieux Saint-Ouen elle est nouvelle?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0356"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0534",
-          "begin": 1543655,
-          "end": 1548271,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0357",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "elle a été: construite + ah: elle a été XX euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0357"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0535",
-          "begin": 1543655,
-          "end": 1548271,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0357",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oui mais elle vient [d'un;de] + douze ou treize cents elle a été remis en état"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0357"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0536",
-          "begin": 1548271,
-          "end": 1553332,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0358",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oh oui euh: + XX + oui + oui treize quatorze"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0358"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0537",
-          "begin": 1548271,
-          "end": 1553332,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0358",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "elle est du: treizième ou quatorzième siècle"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0358"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0538",
-          "begin": 1553332,
-          "end": 1554669,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0359",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "elle a été finie au quinzième"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0359"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0539",
-          "begin": 1553332,
-          "end": 1554669,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0359",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "qu'est-ce que j'la"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0359"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0540",
-          "begin": 1554669,
-          "end": 1560665,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0360",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et alors X + c'est que: Isabeau d'Bavière + elle avait un jardin ici"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0360"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0541",
-          "begin": 1554669,
-          "end": 1560665,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0360",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "XX je l'ai connue moche et je l'aime pas cette église ++ elle est triste"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0360"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0542",
-          "begin": 1560665,
-          "end": 1562108,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0361",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ben c'est les c'est la première hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0361"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0543",
-          "begin": 1562108,
-          "end": 1563868,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0362",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "c'est la première elle:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0362"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0544",
-          "begin": 1562108,
-          "end": 1563868,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0362",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "elle avait un jardin immense"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0362"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0545",
-          "begin": 1563868,
-          "end": 1566009,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0363",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'me sens X mieux à celle de Garibaldi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0363"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0546",
-          "begin": 1563868,
-          "end": 1566009,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0363",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et entouré d'murs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0363"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0547",
-          "begin": 1566009,
-          "end": 1570139,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0364",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah mais c'est pas c'est pas pareil hein (brouhaha)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0364"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0548",
-          "begin": 1566009,
-          "end": 1570139,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0364",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "ah oui mais attendez l'autre elle est récente hein elle date de mille neuf cent ou j'sais pas combien celle-là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0364"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0549",
-          "begin": 1570139,
-          "end": 1570693,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "(brouhaha) ah oui oui oui oui le le"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0550",
-          "begin": 1570693,
-          "end": 1577954,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0366",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il y a encore + un mur qu'est: + grand comme + comme la table là qu'est + épais comme ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0366"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0551",
-          "begin": 1570693,
-          "end": 1577954,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0366",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "par contre elle est classée monument historique la nôtre hein + parce qu'elle a été faite en plusieurs euh étapes X +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0366"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0552",
-          "begin": 1577954,
-          "end": 1585828,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0367",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "puisque on y allait souvent avec Paul pour euh regarder la pente qu'il y a justement là + mais j'y suis pas retournée depuis tellement: ben depuis la X j'y suis pas retournée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0367"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0553",
-          "begin": 1577954,
-          "end": 1585828,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0367",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais ouais + d'accord + d'accord + ouais ouais + mm + d'accord donc c'est c'est vraiment la partie la plus ancienne: de la"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0367"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0554",
-          "begin": 1585828,
-          "end": 1587588,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0368",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "comment?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0368"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0555",
-          "begin": 1585828,
-          "end": 1587588,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0368",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "à part si à des enterrements mais: +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0368"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0556",
-          "begin": 1587588,
-          "end": 1590745,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0369",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "c'est c'est vraiment la partie la plus ancienne"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0369"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0557",
-          "begin": 1587588,
-          "end": 1590745,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0369",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "mais: là où vous: où je suis moi + c'était des champs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0369"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0558",
-          "begin": 1590745,
-          "end": 1591028,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0370",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0370"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0559",
-          "begin": 1591028,
-          "end": 1595433,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0371",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'ai un ami qui collectionne les cartes postales + il en a pas loin de deux mille hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0371"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0560",
-          "begin": 1595433,
-          "end": 1596262,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0372",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0372"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0561",
-          "begin": 1596262,
-          "end": 1602338,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0373",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "eh bien puis alors il écrit des: il écrivait dans l'journal monsieur Béranger + il écrivait faisait un article tous les:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0373"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0562",
-          "begin": 1602338,
-          "end": 1603294,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0374",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "tous les deux mois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0374"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0563",
-          "begin": 1602338,
-          "end": 1603294,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0374",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "toutes les semaines"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0374"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0564",
-          "begin": 1603294,
-          "end": 1604788,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0375",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "c'est aux arch- c'est les archives"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0375"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0565",
-          "begin": 1604788,
-          "end": 1606569,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0376",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et alors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0376"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0566",
-          "begin": 1604788,
-          "end": 1606569,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0376",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "toutes les semaines ou tous les deux mois? +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0376"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0567",
-          "begin": 1606569,
-          "end": 1607525,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0377",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "tous les deux mois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0377"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0568",
-          "begin": 1606569,
-          "end": 1607525,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0377",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "tous les mois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0377"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0569",
-          "begin": 1607525,
-          "end": 1608037,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0378",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "tous les mois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0378"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0570",
-          "begin": 1608037,
-          "end": 1608612,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0379",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "tous les mois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0379"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0571",
-          "begin": 1608612,
-          "end": 1609695,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0380",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "tous les deux mois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0380"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0572",
-          "begin": 1608612,
-          "end": 1609695,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0380",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "tous les deux mois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0380"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0573",
-          "begin": 1609695,
-          "end": 1614015,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0381",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "parce qu'une fois c'était Jean Lefort + le coup d'après c'était lui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0381"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0574",
-          "begin": 1609695,
-          "end": 1614015,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0381",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui + tous les deux mois + oui oui oui + tous les deux mois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0381"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0575",
-          "begin": 1614015,
-          "end": 1619363,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0382",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et alors il avait trouvé une carte + les f- le: + euh les foins à Saint-Ouen +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0382"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0576",
-          "begin": 1619363,
-          "end": 1620425,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0383",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0383"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0577",
-          "begin": 1620425,
-          "end": 1627559,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0384",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et parce que tout ça + là où je suis moi + avant que ça soit la rue: + la rue Montmartre c'était la rue Napoléon +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0384"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0578",
-          "begin": 1627559,
-          "end": 1632852,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0385",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui (rires) + d'accord + :ouais ça a pas mal changé euh +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0385"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0579",
-          "begin": 1627559,
-          "end": 1632852,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0385",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah oui ++ ah oui oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0385"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0580",
-          "begin": 1632852,
-          "end": 1636520,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0386",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et puis après bon ben: ça s'est arrangé évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0386"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0581",
-          "begin": 1632852,
-          "end": 1636520,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0386",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "Saint-Ouen c'est un coin qui a changé hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0386"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0582",
-          "begin": 1636520,
-          "end": 1643125,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0387",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "Saint-Ouen c'était + puis alors ce qui a fait du tort à Saint-Ouen + c'est les chiffonniers + qui sont venus s'installer après la guerre de quatorze +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0387"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0583",
-          "begin": 1643125,
-          "end": 1644589,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0388",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui + mm +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0388"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0584",
-          "begin": 1644589,
-          "end": 1652717,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0389",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "alors ils ont ils: faisaient les poubelles évidemment + et puis ils avaient construit des baraquements + recouverts en tôle ondulée + il y avait des petits pavillons qu'étaient pas mal"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0389"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0585",
-          "begin": 1652717,
-          "end": 1653014,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0390",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0390"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0586",
-          "begin": 1653014,
-          "end": 1659538,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0391",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "parce que il y avait différents euh + endroits il y avait de ce côté d'la rue + de l'autre côté + et puis en allant sur euh Paris après"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0391"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0587",
-          "begin": 1659538,
-          "end": 1660769,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0392",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "vers le périphérique ça?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0392"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0588",
-          "begin": 1659538,
-          "end": 1660769,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0392",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0392"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0589",
-          "begin": 1660769,
-          "end": 1667501,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0393",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oui + c'est: avant l'périphérique c'est là ici + un peu plus loin que la: + la rue: Paul Bert là oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0393"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0590",
-          "begin": 1667501,
-          "end": 1668013,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0394",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0394"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0591",
-          "begin": 1668013,
-          "end": 1674068,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0395",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui il y a une transversale là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0395"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0592",
-          "begin": 1668013,
-          "end": 1674068,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0395",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah oui oui oui oui oui + et là alors il y avait: + tous les matins ils f- ils: faisaient ils chiffonnaient ce qu'ils X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0395"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0593",
-          "begin": 1674068,
-          "end": 1679023,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ++ mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0594",
-          "begin": 1674068,
-          "end": 1679023,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ils renversaient les poubelles sur une toile ils triaient + les métaux le: les chiffons"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0595",
-          "begin": 1679023,
-          "end": 1683999,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0397",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "les bouteilles + quand euh: j'me suis mariée + mon mari était marchand d'bouteilles d'occasion"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0397"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0596",
-          "begin": 1679023,
-          "end": 1683999,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0397",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "[ben;ah] il y en a qui se sont enrichis n'empêche en faisant les poubelles"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0397"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0597",
-          "begin": 1683999,
-          "end": 1691783,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0398",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais + ah ouais ++ c'est le recyclage de l'époque en fait c'était euh + maintenant on a des: (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0398"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0598",
-          "begin": 1683999,
-          "end": 1691783,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0398",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "alors euh ça aussi ça a disparu + mais: + eh ben là on les tri- + on les triait puis c'était revendu"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0398"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0599",
-          "begin": 1691783,
-          "end": 1695151,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0399",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "des: conteneurs + ouais ouais (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0399"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0600",
-          "begin": 1691783,
-          "end": 1695151,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0399",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "maintenant c'est les containers"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0399"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0601",
-          "begin": 1695151,
-          "end": 1697165,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0400",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "c'est l'même principe en: un peu plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0400"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0602",
-          "begin": 1695151,
-          "end": 1697165,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0400",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "[containers;conteneurs] au détail"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0400"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0603",
-          "begin": 1697165,
-          "end": 1698989,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0401",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "organisé peut-être (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0401"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0604",
-          "begin": 1697165,
-          "end": 1698989,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0401",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui voilà c'est ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0401"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0605",
-          "begin": 1698989,
-          "end": 1706931,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0402",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "eh oui mais: ++ ah non là c'est pas pareil X fallait les trier les clas- + classer ah oui + ah:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0402"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0606",
-          "begin": 1698989,
-          "end": 1706931,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0402",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "containers les bennes à papier les bennes à:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0402"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0607",
-          "begin": 1706931,
-          "end": 1708585,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0403",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "les bouteilles à champagne que vous faisiez vous?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0403"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0608",
-          "begin": 1708585,
-          "end": 1712905,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0404",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "tout on faisait champagne + oh oui l'vin Bordeaux Bourgogne + Alsace +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0404"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0609",
-          "begin": 1708585,
-          "end": 1712905,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0404",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "le vin? ++ XXX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0404"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0610",
-          "begin": 1712905,
-          "end": 1717796,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0405",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "mais: c'était surtout les: champagnes + on en faisait facilement trois wagons par semaine hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0405"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0611",
-          "begin": 1717796,
-          "end": 1719345,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0406",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah quand même hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0406"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0612",
-          "begin": 1717796,
-          "end": 1719345,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0406",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ah oui + mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0406"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0613",
-          "begin": 1719345,
-          "end": 1720703,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0407",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah oui +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0407"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0614",
-          "begin": 1720703,
-          "end": 1728599,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0408",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "alors pour vous déplacer euh dans Saint-Ouen ou euh enfin + quand vous vous déplacez comment vous faites? quelles sont vos + habitudes?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0408"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0615",
-          "begin": 1728599,
-          "end": 1731502,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0409",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ben maintenant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0409"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0616",
-          "begin": 1728599,
-          "end": 1731502,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0409",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben ça s'est amélioré quand même au point d'vue transports"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0409"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0617",
-          "begin": 1731502,
-          "end": 1738467,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0410",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "parce que il y avait rien en bas d'chez moi ++ il y a quand même le bus il y a un arrêt d'bus maintenant deux + deux bus + cent-soixante-X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0410"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0618",
-          "begin": 1731502,
-          "end": 1738467,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0410",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "[on a;il y a] quand même le bus là oui on a deux là + et puis ils ont: ++ et puis euh:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0410"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0619",
-          "begin": 1738467,
-          "end": 1740608,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0411",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "moi j'trouve que ça s'est pas amélioré du tout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0411"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0620",
-          "begin": 1738467,
-          "end": 1740608,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0411",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "euh: + on est à une demi-heure de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0411"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0621",
-          "begin": 1740608,
-          "end": 1741966,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0412",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah ouais? pourquoi vous dites ça?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0412"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0622",
-          "begin": 1741966,
-          "end": 1746540,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0413",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "pourquoi parce que j'habitais rue Montmartre + il y avait le J et l'cinquante-quatre +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0413"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0623",
-          "begin": 1746540,
-          "end": 1747111,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0414",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0414"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0624",
-          "begin": 1747111,
-          "end": 1758117,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0415",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "qui passaient maintenant il y a que l'cent trente-sept + le J il allait de la mairie d'Saint-Ouen + à la place Saint-Michel + et l'autre le cinquante-quatre il allait d'la Trinité + à Enghien-les-bains +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0415"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0625",
-          "begin": 1758117,
-          "end": 1764489,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0416",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah ouais à Enghien +++ ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0416"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0626",
-          "begin": 1758117,
-          "end": 1764489,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0416",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et l'été c'était agréable comme tout parce qu'ils mettaient une baladeuse + derrière le tramway c'étaient des un tramway celui-là +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0416"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0627",
-          "begin": 1764489,
-          "end": 1768703,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0417",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et alors il vous emmenait au lac d'Enghien + ah c'était agréable ça faisait une belle promenade (rires Marc)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0417"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0628",
-          "begin": 1768703,
-          "end": 1769553,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0418",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "ben ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0418"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0629",
-          "begin": 1768703,
-          "end": 1769553,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0418",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ben c'est vrai que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0418"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0630",
-          "begin": 1769553,
-          "end": 1773344,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0419",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais c'est sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0419"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0631",
-          "begin": 1769553,
-          "end": 1773344,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0419",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et puis là puis là bon là + vous voulez aller à: l'hôpital Bichat"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0419"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0632",
-          "begin": 1773344,
-          "end": 1777347,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0420",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ben XX + ah ben non ça: + ça XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0420"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0633",
-          "begin": 1773344,
-          "end": 1777347,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0420",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il y a rien du tout + faut y aller à pieds + il y avait deux bus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0420"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0634",
-          "begin": 1777347,
-          "end": 1779255,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0421",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "non c'est sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0421"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0635",
-          "begin": 1777347,
-          "end": 1779255,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0421",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il y avait l'B W et l'quarante-deux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0421"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0636",
-          "begin": 1779255,
-          "end": 1780770,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0422",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "on est mal desservis malgré tout mais enfin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0422"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0637",
-          "begin": 1779255,
-          "end": 1780770,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0422",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + ouais ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0422"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0638",
-          "begin": 1780770,
-          "end": 1788560,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0423",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "le B W il allait d'la mairie d'Saint-Ouen à la Madeleine + et l'autre le quarante-deux c'est l'cent-quarante-deux il va à Stains + mais X il passe plus par là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0423"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0639",
-          "begin": 1788560,
-          "end": 1789601,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0424",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + ouais ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0424"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0640",
-          "begin": 1789601,
-          "end": 1791662,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0425",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "eh non il y a plus rien qui passe [là;par]"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0425"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0641",
-          "begin": 1789601,
-          "end": 1791662,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0425",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "moi j'connais pas beaucoup les bus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0425"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0642",
-          "begin": 1791662,
-          "end": 1800489,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0426",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "à part le cent soixante-quatre le cent: soixante-quatorze cent soixante-treize"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0426"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0643",
-          "begin": 1791662,
-          "end": 1800489,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0426",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'ai été: hospitalisée à Bichat: + pendant: cinq semaines j'avais une voisine qui venait m'voir + mais à pieds"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0426"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0644",
-          "begin": 1800489,
-          "end": 1800853,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0427",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0427"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0645",
-          "begin": 1800853,
-          "end": 1802105,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0428",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ben: ça: je sais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0428"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0646",
-          "begin": 1800853,
-          "end": 1802105,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0428",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "alors oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0428"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0647",
-          "begin": 1802105,
-          "end": 1828725,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0429",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ça tombait bien parce que c'était en été + alors elle rencontre une amie + qui lui dit \"ah dis-donc j'vois que vous revenez d'vacances qu'est-ce que vous avez bonne mine\" (rires Marc) + elle \"oh oui + oh oui c'était bien? oh c'était du: tonnerre\" + alors elle lui dit \"donnez-moi l'adresse j'irai d'votre part\" + elle dit \"c'est pas facile hein + ah bon c'est un club\"? + ben c'est-à-dire euh: oui si on veut + alors elle lui dit \"c'est l'hôpital Bichat\" (rires collectifs)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0429"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0648",
-          "begin": 1828725,
-          "end": 1840344,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0430",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + hum: + alors pour les: les écoles + alors ça + doit faire un petit moment euh depuis vos: années d'école mais euh + ça s'était passé bien ou vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0430"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0649",
-          "begin": 1840344,
-          "end": 1844516,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0431",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh oui X les écoles c'est toujours été bien à Saint-Ouen + il y en avait une là à côté"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0431"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0650",
-          "begin": 1844516,
-          "end": 1848223,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0432",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0432"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0651",
-          "begin": 1844516,
-          "end": 1848223,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0432",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "elle y est toujours + mais on entrait par là la rue Blanqui là +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0432"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0652",
-          "begin": 1848223,
-          "end": 1848756,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0433",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0433"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0653",
-          "begin": 1848756,
-          "end": 1857159,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0434",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ouais + et puis ils en ont reconstruit ils ont cons- alors c'est plus la rue Blanqui + c'est la rue euh le X c'est plus l'école Blanqui c'est l'école Joséphine Baker"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0434"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0654",
-          "begin": 1857159,
-          "end": 1858154,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0435",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0435"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0655",
-          "begin": 1857159,
-          "end": 1858154,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0435",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "collège"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0435"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0656",
-          "begin": 1858154,
-          "end": 1861903,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0436",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "collège là oui + savez pourquoi? ++ non ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0436"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0657",
-          "begin": 1858154,
-          "end": 1861903,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0436",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "collège d'accord ++ ouais + non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0436"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0658",
-          "begin": 1861903,
-          "end": 1875088,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0437",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "eh ben moi ++ j'avais un client chiffonnier + qui faisait l'avenue Michelet ++ et lui c'était un X il était: + très très gentil + il venait tous les matins il avait dix douze bouteilles qu'il nous + qu'on lui payait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0437"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0659",
-          "begin": 1875088,
-          "end": 1875621,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0438",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0438"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0660",
-          "begin": 1875621,
-          "end": 1887960,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0439",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et puis: j'sais pas quel XX + depuis que De Gaulle était au pouvoir il couchait dehors + pourquoi + quel est le: + que qu'est-ce qui fait que + la venue de De Gaulle au pouvoir + l'a fait quitter son appartement je l'ai jamais su +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0439"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0661",
-          "begin": 1887960,
-          "end": 1890080,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0440",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il faisait les poubelles + avenue Michelet"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0440"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0662",
-          "begin": 1887960,
-          "end": 1890080,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0440",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui ça c'est à approfondir"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0440"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0663",
-          "begin": 1890080,
-          "end": 1894413,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0441",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0441"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0664",
-          "begin": 1890080,
-          "end": 1894413,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0441",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et avenue Michelet il rencon- il trouve un paquet comme ça ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0441"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0665",
-          "begin": 1894413,
-          "end": 1900087,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0442",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "bien ficelé euh + ent- dans du papier + et les chiffonniers autrefois ils avaient des crochets"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0442"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0666",
-          "begin": 1900087,
-          "end": 1900637,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0443",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0443"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0667",
-          "begin": 1900637,
-          "end": 1912891,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0444",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ils donnaient un coup d'crochet pour + et là + il a pas osé + il a ramassé l'paquet + il est entré dans l'café il dit \"dites-donc vous voyez ce que j'viens d'trouver\" + (chacun, allez on) va voir ce qu'il y a dedans hein c'était un nouveau-né +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0444"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0668",
-          "begin": 1912891,
-          "end": 1913741,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0445",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ça bougeait pas?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0445"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0669",
-          "begin": 1912891,
-          "end": 1913741,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0445",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "oh la vache"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0445"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0670",
-          "begin": 1913741,
-          "end": 1915802,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0446",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "quand il l'a trouvé ça bougeait pas?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0446"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0671",
-          "begin": 1913741,
-          "end": 1915802,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0446",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui + oh la la"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0446"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0672",
-          "begin": 1915802,
-          "end": 1921201,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0447",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "avec XX commençait à étouffer ++ alors + c'était un nouveau-né"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0447"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0673",
-          "begin": 1915802,
-          "end": 1921201,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0447",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui il commençait à s'étouffer ++ ah ouais un petit garçon?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0447"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0674",
-          "begin": 1921201,
-          "end": 1925754,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0448",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il était: + venu au monde (brouhaha)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0448"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0675",
-          "begin": 1921201,
-          "end": 1925754,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0448",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "X heureusement qu'il a pas euh: + utilisé son: crochet"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0448"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0676",
-          "begin": 1925754,
-          "end": 1929164,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0449",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "alors euh bon euh: ils ont fait + il est parti à la DDASS +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0449"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0677",
-          "begin": 1929164,
-          "end": 1929757,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0450",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0450"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0678",
-          "begin": 1929757,
-          "end": 1932575,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0451",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et là Joséphine Baker elle l'a adopté +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0451"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0679",
-          "begin": 1932575,
-          "end": 1939772,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0452",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah d'accord + ah oui + ah c'est une belle histoire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0452"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0680",
-          "begin": 1932575,
-          "end": 1939772,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0452",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "elle l'a adopté + et elle l'a emmené aux Milandes là avec c'était la famille euh tri- + multicolore j'sais pas comment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0452"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0681",
-          "begin": 1939772,
-          "end": 1941913,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0453",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "elle avait des enfants de toutes les religions"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0453"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0682",
-          "begin": 1939772,
-          "end": 1941913,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0453",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah oui ça elle a: elle avait avait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0453"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0683",
-          "begin": 1941913,
-          "end": 1945429,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0454",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et elle l'avait pris comme parrain + (rires Marc) il était parrain"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0454"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0684",
-          "begin": 1945429,
-          "end": 1955948,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0455",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord ++ et et co- + comment elle a eu vent de ça Joséphine Baker?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0455"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0685",
-          "begin": 1945429,
-          "end": 1955948,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0455",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "puis sa: son habilleuse était marraine + tous ceux qui ++ eh ben il a bien fallu parce que + lui X + de: il a fallu qu'il donne son: n- + son nom et tout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0455"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0686",
-          "begin": 1955948,
-          "end": 1960738,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0456",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais ouais ++ d'accord + mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0456"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0687",
-          "begin": 1955948,
-          "end": 1960738,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0456",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et elle a demandé qui l'avait trouvé + et on lui a donné le nom d'ce:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0456"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0688",
-          "begin": 1960738,
-          "end": 1961191,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0457",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "ce monsieur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0457"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0689",
-          "begin": 1961191,
-          "end": 1962845,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0458",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "de du monsieur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0458"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0690",
-          "begin": 1961191,
-          "end": 1962845,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0458",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "[oui;du] monsieur oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0458"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0691",
-          "begin": 1962845,
-          "end": 1967440,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0459",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui puis ç'avait été médiatisé ça c'était passé à la radio"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0459"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0692",
-          "begin": 1962845,
-          "end": 1967440,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0459",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oui: + et alors mais: il s'est: +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0459"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0693",
-          "begin": 1967440,
-          "end": 1973766,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0460",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il avait pas beaucoup d'argent j'vous l'dis hein + eh ben il s'était privé pour acheter un couvert en argent + à son filleul"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0460"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0694",
-          "begin": 1973766,
-          "end": 1975992,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0461",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ben voyez hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0461"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0695",
-          "begin": 1973766,
-          "end": 1975992,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0461",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et il l'avait acheté chez Pêchoux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0461"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0696",
-          "begin": 1975992,
-          "end": 1976800,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0462",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0462"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0697",
-          "begin": 1976800,
-          "end": 1978328,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0463",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ça c'était d'la belle argenterie X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0463"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0698",
-          "begin": 1976800,
-          "end": 1978328,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0463",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0463"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0699",
-          "begin": 1978328,
-          "end": 1980109,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0464",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "X voilà voilà voilà voilà + ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0464"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0700",
-          "begin": 1978328,
-          "end": 1980109,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0464",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0464"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0701",
-          "begin": 1980109,
-          "end": 1980790,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0465",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah c'est sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0465"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0702",
-          "begin": 1980790,
-          "end": 1983016,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0466",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et alors il a été au baptême aux Milandes là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0466"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0703",
-          "begin": 1980790,
-          "end": 1983016,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0466",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "vous l'connaissez bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0466"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0704",
-          "begin": 1983016,
-          "end": 1983528,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0467",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0467"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0705",
-          "begin": 1983528,
-          "end": 1993941,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0468",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et puis: euh il était un peu décu parce que + elle les a ramenés à Paris puis elle dit à son habilleuse + \"ben vous viendrez passer une quinzaine au château\" ++ mais lui elle l'avait pas invité +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0468"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0706",
-          "begin": 1993941,
-          "end": 1994470,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0469",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0469"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0707",
-          "begin": 1994470,
-          "end": 2000889,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0470",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "X oui mais ça a pas les mêmes relations + vous vous êtes là qu'occasionnellement + son habilleuse elle la voit tous les jours ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0470"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0708",
-          "begin": 2000889,
-          "end": 2004067,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0471",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'est vrai ++ ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0471"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0709",
-          "begin": 2000889,
-          "end": 2004067,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0471",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + ouais ouais bien sûr ouais + ouais ouais +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0471"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0710",
-          "begin": 2004067,
-          "end": 2007710,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0472",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "alors ils ont donné le nom ++ Joséphine Baker"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0472"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0711",
-          "begin": 2004067,
-          "end": 2007710,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0472",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "une belle histoire (rires) j'savais pas ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0472"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0712",
-          "begin": 2007710,
-          "end": 2012373,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0473",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "j'apprends plein d'choses en fait dans ces: dans ces entretiens ouais c'est fascinant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0473"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0713",
-          "begin": 2007710,
-          "end": 2012373,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0473",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ben oui + ben oui mais c'est sûr hein + c'est sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0473"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0714",
-          "begin": 2012373,
-          "end": 2017307,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0474",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "à chaque fois il y a quelque chose + ouais + ouais ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0474"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0715",
-          "begin": 2012373,
-          "end": 2017307,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0474",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "des questions euh: + c'est ça les personnes âgées + il y a d'belles choses hein +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0474"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0716",
-          "begin": 2017307,
-          "end": 2020548,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0475",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et vous madame Pollet votre: votre école: ça s-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0475"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0717",
-          "begin": 2020548,
-          "end": 2024762,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0476",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ça s'est bien passé dans la Nièvre là ? + ouais + vous avez de:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0476"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0718",
-          "begin": 2020548,
-          "end": 2024762,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0476",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ben non moi j'étais à l'école dans la Nièvre + les monts d'Morvan vraiment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0476"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0719",
-          "begin": 2024762,
-          "end": 2027538,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0477",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "vraiment les monts du Morvan"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0477"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0720",
-          "begin": 2024762,
-          "end": 2027538,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0477",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "XXX (rires Marc)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0477"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0721",
-          "begin": 2027538,
-          "end": 2033720,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0478",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "euh: je suis venue j'avais neuf ans + mais une grand-mère à: + Champigny-sur-Marne"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0478"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0722",
-          "begin": 2033720,
-          "end": 2039902,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0479",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0479"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0723",
-          "begin": 2033720,
-          "end": 2039902,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0479",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais comme c'était en pleine guerre je n'suis pas restée longtemps parce que moi: descendre tout l'temps à la cave: les bombardements +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0479"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0724",
-          "begin": 2039902,
-          "end": 2040731,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0480",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0480"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0725",
-          "begin": 2040731,
-          "end": 2048817,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0481",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "très peu pour moi j'ai préféré retourner chez ma mère (rires) à la campagne j'étais plus tran- plus tranquille + et puis donc euh non: +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0481"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0726",
-          "begin": 2048817,
-          "end": 2056945,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0482",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben j'ai fait mes écoles: dans l'Morvan"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0482"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0727",
-          "begin": 2048817,
-          "end": 2056945,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0482",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ça s'est bien passé + est-ce que vous vous souvenez d'une d'un enseignant qui vous a marquée euh? +++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0482"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0728",
-          "begin": 2056945,
-          "end": 2063529,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0483",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "madame Legris elle s'appelait + euh elle m'a elle m'a fait pra-pratiquement toutes mes classes + de la maternelle à:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0483"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0729",
-          "begin": 2063529,
-          "end": 2067405,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0484",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il y avait trois écoles quand même dans ce bourg c'était un bourg important"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0484"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0730",
-          "begin": 2063529,
-          "end": 2067405,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0484",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ++ ouais ouais +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0484"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0731",
-          "begin": 2067405,
-          "end": 2068679,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0485",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "où est enterré Paul d'ailleurs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0485"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0732",
-          "begin": 2068679,
-          "end": 2069470,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0486",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0486"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0733",
-          "begin": 2069470,
-          "end": 2074615,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0487",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "cimetière on avait: boulanger épicier euh mairie: enfin tout quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0487"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0734",
-          "begin": 2074615,
-          "end": 2076714,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0488",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ++ ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0488"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0735",
-          "begin": 2074615,
-          "end": 2076714,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0488",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "c'était vraiment un bourg important"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0488"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0736",
-          "begin": 2076714,
-          "end": 2079320,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0489",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "maintenant dans: j'y suis allée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0489"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0737",
-          "begin": 2076714,
-          "end": 2079320,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0489",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et vous êtes dans le Loiret non? +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0489"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0738",
-          "begin": 2079320,
-          "end": 2080107,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0490",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "non dans l'Morvan"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0490"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0739",
-          "begin": 2079320,
-          "end": 2080107,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0490",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "dans la Nièvre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0490"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0740",
-          "begin": 2080107,
-          "end": 2083052,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "dans la ah dans les monts d'Morvan + ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0741",
-          "begin": 2080107,
-          "end": 2083052,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "cinquante-huit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0742",
-          "begin": 2083052,
-          "end": 2086653,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0492",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'y suis allée donc lundi dernier (brouhaha)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0492"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0743",
-          "begin": 2083052,
-          "end": 2086653,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0492",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "mais ça a dû changer hein depuis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0492"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0744",
-          "begin": 2086653,
-          "end": 2087613,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0493",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "hein?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0493"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0745",
-          "begin": 2086653,
-          "end": 2087613,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0493",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah il y a plus rien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0493"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0746",
-          "begin": 2087613,
-          "end": 2089860,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0494",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah ben oui hein parce que: X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0494"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0747",
-          "begin": 2087613,
-          "end": 2089860,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0494",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'est l'pays à Mitterrand la Nièvre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0494"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0748",
-          "begin": 2089860,
-          "end": 2090950,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0495",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oui tout à fait XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0495"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0749",
-          "begin": 2090950,
-          "end": 2092333,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0496",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui c'est pour ça que vous vous êtes:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0496"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0750",
-          "begin": 2092333,
-          "end": 2093241,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0497",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oui + oui oui ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0497"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0751",
-          "begin": 2093241,
-          "end": 2095076,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0498",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "vous l'avez connu non?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0498"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0752",
-          "begin": 2093241,
-          "end": 2095076,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0498",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "+ j'étais très bien avec Mitterrand"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0498"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0753",
-          "begin": 2095076,
-          "end": 2099998,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0499",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mes parents étaient très bien il venait chez nous euh: comme moi j'étais reçue en [hiver;X] euh: chez Mitterrand"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0499"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0754",
-          "begin": 2099998,
-          "end": 2100818,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0500",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'ai été euh ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0500"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0755",
-          "begin": 2100818,
-          "end": 2102529,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0501",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et c'est pour ça que: ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0501"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0756",
-          "begin": 2102529,
-          "end": 2108638,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0502",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il ét- on déjeunait au même: restaurant le vieux Morvan + à: Chateau-Chinon + il était maire de Chateau-Chinon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0502"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0757",
-          "begin": 2102529,
-          "end": 2108638,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0502",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'ai bien regretté euh Mitterrand euh ++ parce que certainement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0502"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0758",
-          "begin": 2108638,
-          "end": 2109869,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0503",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui il était maire oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0503"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0759",
-          "begin": 2108638,
-          "end": 2109869,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0503",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais c'est ça ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0503"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0760",
-          "begin": 2109869,
-          "end": 2117955,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0504",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "je l'ai vu là + on a parlé ensemble ++ oui ++ Chateau-Chinon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0504"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0761",
-          "begin": 2109869,
-          "end": 2117955,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0504",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il a son musée là-bas [à Chinon;chez nous] + il y a l'musée là + de tout: de beaucoup d'objets qu'il ramenait de: + qu'on lui offrait quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0504"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0762",
-          "begin": 2117955,
-          "end": 2120739,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0505",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "mais il paraît que sa femme a mis en vente ses euh ses: ses [affaires;X]"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0505"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0763",
-          "begin": 2117955,
-          "end": 2120739,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0505",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais c'est ça + mm + mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0505"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0764",
-          "begin": 2120739,
-          "end": 2123049,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0506",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "(brouhaha) elle a vendu tous ses vêtements"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0506"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0765",
-          "begin": 2120739,
-          "end": 2123049,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0506",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui ça y est c'est vendu hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0506"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0766",
-          "begin": 2123049,
-          "end": 2126062,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0507",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "(brouhaha) XXX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0507"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0767",
-          "begin": 2123049,
-          "end": 2126062,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0507",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais ça s'est vendu cher hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0507"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0768",
-          "begin": 2126062,
-          "end": 2127843,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0508",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "au moins trente mille costumes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0508"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0769",
-          "begin": 2126062,
-          "end": 2127843,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0508",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui hein ça fait XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0508"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0770",
-          "begin": 2127843,
-          "end": 2130454,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0509",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "(brouhaha) enfin c'est pour son association c'est pour euh:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0509"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0771",
-          "begin": 2127843,
-          "end": 2130454,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0509",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui oui oui + oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0509"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0772",
-          "begin": 2130454,
-          "end": 2131897,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0510",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + oui c'est ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0510"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0773",
-          "begin": 2130454,
-          "end": 2131897,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0510",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "c'est pas pour elle elle a pas besoin de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0510"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0774",
-          "begin": 2131897,
-          "end": 2135392,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0511",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "X c'est pas pour elle bien sûr hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0511"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0775",
-          "begin": 2131897,
-          "end": 2135392,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0511",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "mais moi quand je l'ai vu il était pas président de la République +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0511"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0776",
-          "begin": 2135392,
-          "end": 2138951,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0512",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et j'me rappelle: X et j'av- euh oui ben il était:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0512"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0777",
-          "begin": 2135392,
-          "end": 2138951,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0512",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "il devait être ministre non?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0512"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0778",
-          "begin": 2138951,
-          "end": 2142848,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0513",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "déjà + euh: député: maire de son patelin X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0513"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0779",
-          "begin": 2138951,
-          "end": 2142848,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0513",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui il a été pas mal ministre hein + oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0513"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0780",
-          "begin": 2142848,
-          "end": 2150447,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0514",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'avais acheté une carte postale + petite X deviendra grande + alors je lui dis vous pouvez me signer une car- ah ben oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0514"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0781",
-          "begin": 2142848,
-          "end": 2150447,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0514",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais Chateau-Chinon XX à partir du moment que: Mitterrand est: ++ n'a plus été président"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0514"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0782",
-          "begin": 2150447,
-          "end": 2157010,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0515",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'dis + avant + lisez ce qu'il y a dessus + j'dis j'vous souhaite la même chose ah ben ça c'est gentil (rires Marc)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0515"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0783",
-          "begin": 2157010,
-          "end": 2160611,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0516",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "il était ministre sous De Gaulle (brouhaha)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0516"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0784",
-          "begin": 2157010,
-          "end": 2160611,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0516",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "vous êtes très bien X (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0516"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0785",
-          "begin": 2160611,
-          "end": 2164698,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0517",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais moi je sais j'ai beau-beaucoup regretté comme comme monsieur Lefort d'ailleurs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0517"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0786",
-          "begin": 2160611,
-          "end": 2164698,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0517",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "toutes les deux +++ mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0517"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0787",
-          "begin": 2164698,
-          "end": 2167643,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0518",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "comme disent les bons copains + hein ben voilà ben voilà"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0518"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0788",
-          "begin": 2164698,
-          "end": 2167643,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0518",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ouais + ça n'a rien à voir hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0518"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0789",
-          "begin": 2167643,
-          "end": 2169107,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0519",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "mais il est décédé ce monsieur Lefort?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0519"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0790",
-          "begin": 2167643,
-          "end": 2169107,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0519",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben voilà"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0519"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0791",
-          "begin": 2169107,
-          "end": 2170317,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0520",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah: il y a longtemps"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0520"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0792",
-          "begin": 2169107,
-          "end": 2170317,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0520",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0520"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0793",
-          "begin": 2170317,
-          "end": 2171591,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0521",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oh ben oui ça fait un moment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0521"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0794",
-          "begin": 2170317,
-          "end": 2171591,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0521",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "Fernand Lefort euh:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0521"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0795",
-          "begin": 2171591,
-          "end": 2172505,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0522",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "quarante ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0522"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0796",
-          "begin": 2172505,
-          "end": 2176626,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0523",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oh c'est il y a pas des masses d'années quand même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0523"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0797",
-          "begin": 2172505,
-          "end": 2176626,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0523",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "cinquante-huit et il a dû décéder vers dans les années soixante"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0523"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0798",
-          "begin": 2176626,
-          "end": 2179042,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0524",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh oui il y a une quarantaine d'années oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0524"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0799",
-          "begin": 2176626,
-          "end": 2179042,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0524",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "à peu près +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0524"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0800",
-          "begin": 2179042,
-          "end": 2179564,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0525",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "tant que ça?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0525"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0801",
-          "begin": 2179042,
-          "end": 2179564,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0525",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "X après"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0525"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0802",
-          "begin": 2179564,
-          "end": 2181162,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0526",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0526"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0803",
-          "begin": 2179564,
-          "end": 2181162,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0526",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "oh oui oui oui +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0526"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0804",
-          "begin": 2181162,
-          "end": 2183684,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0527",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "dans les années soixante après c'était Paulette après"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0527"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0805",
-          "begin": 2181162,
-          "end": 2183684,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0527",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "mm + ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0527"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0806",
-          "begin": 2183684,
-          "end": 2184831,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0528",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "oui oui + oui +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0528"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0807",
-          "begin": 2184831,
-          "end": 2189342,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0529",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "pas tant que ça quand même ++ il y a pas oh non:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0529"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0808",
-          "begin": 2184831,
-          "end": 2189342,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0529",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "Paulette elle a fait + trois mandatures ++ ah si ah si"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0529"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0809",
-          "begin": 2189342,
-          "end": 2192456,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0530",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il y a pas quarante ans qu- oh non:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0530"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0810",
-          "begin": 2189342,
-          "end": 2192456,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0530",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "euh: peut-être pas soi-soixante cinq? +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0530"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0811",
-          "begin": 2192456,
-          "end": 2201963,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0531",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "dans les années soixante quand même hein monsieur Lefort ++ oh oui oui + oui oui + oui ++ oui oui + oui + puis après c'est:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0531"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0812",
-          "begin": 2192456,
-          "end": 2201963,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0531",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oui mais il y a au moins trente ans quand même hein + parce que son fils il a t- soixante-quatre ans ++ et: il était déjà marié"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0531"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0813",
-          "begin": 2201963,
-          "end": 2206854,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0532",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "après c'était Paulette"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0532"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0814",
-          "begin": 2201963,
-          "end": 2206854,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0532",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "parce que moi c'ét- j'ai connu euh donc euh monsieur Lefort puisque ils étaient copains vers enfin copains"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0532"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0815",
-          "begin": 2206854,
-          "end": 2209037,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0533",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "je ne sais pas s'ils étaient vraiment copains mais enfin [bref;bon]"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0533"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0816",
-          "begin": 2206854,
-          "end": 2209037,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0533",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "ben ils étaient du même parti X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0533"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0817",
-          "begin": 2209037,
-          "end": 2211770,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0534",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "il a inauguré pas mal de bâtiments en cinquante-huit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0534"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0818",
-          "begin": 2209037,
-          "end": 2211770,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0534",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "avec monsieur: Mitterrand"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0534"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0819",
-          "begin": 2211770,
-          "end": 2219814,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0535",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "en soixante il était encore là euh: il a dû par- oui c'est ça il a dû partir euh vers les années soixante-cinq"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0535"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0820",
-          "begin": 2211770,
-          "end": 2219814,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0535",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "et c'était sa secrétaire: Paulette Fost"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0535"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0821",
-          "begin": 2219814,
-          "end": 2222569,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0536",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il est venu inaugurer les bâtiments"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0536"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0822",
-          "begin": 2219814,
-          "end": 2222569,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0536",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah partir mais il est pas mort"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0536"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0823",
-          "begin": 2222569,
-          "end": 2223377,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0537",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il est pas mort à"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0537"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0824",
-          "begin": 2222569,
-          "end": 2223377,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0537",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah si si"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0537"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0825",
-          "begin": 2223377,
-          "end": 2226132,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0538",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "si si si ben si + il a été X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0538"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0826",
-          "begin": 2223377,
-          "end": 2226132,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0538",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "si + si si + il est mort euh:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0538"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0827",
-          "begin": 2226132,
-          "end": 2231489,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0539",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "attends j'pensais j'pensais que j'étais ici déjà moi quand euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0539"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0828",
-          "begin": 2226132,
-          "end": 2231489,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0539",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "dans les années soixante-cinq + ah non non non non non + non non + monsieur Lefort"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0539"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0829",
-          "begin": 2231489,
-          "end": 2233101,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0540",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'le vois encore quand il XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0540"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0830",
-          "begin": 2231489,
-          "end": 2233101,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0540",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "après c'est: + après c'est Paulette"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0540"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0831",
-          "begin": 2233101,
-          "end": 2234967,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0541",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "la maison + dans la rue:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0541"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0832",
-          "begin": 2233101,
-          "end": 2234967,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0541",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ça alors là + j'suis pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0541"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0833",
-          "begin": 2234967,
-          "end": 2238547,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0542",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "alors là j'suis pas convaincue + (rires Marc) faudra que j'me renseigne de ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0542"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0834",
-          "begin": 2234967,
-          "end": 2238547,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0542",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "non non non (brouhaha)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0542"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0835",
-          "begin": 2238547,
-          "end": 2239694,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0543",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "avant d'aller X ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0543"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0836",
-          "begin": 2238547,
-          "end": 2239694,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0543",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui faudra vous renseigner"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0543"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0837",
-          "begin": 2239694,
-          "end": 2241983,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0544",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "(rires Marc) regardez dans l'di- + regardez dans l'dico il va vous l'dire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0544"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0838",
-          "begin": 2241983,
-          "end": 2243024,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0545",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui + dans le:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0545"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0839",
-          "begin": 2243024,
-          "end": 2243705,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0546",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "dans l'dictionnaire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0546"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0840",
-          "begin": 2243705,
-          "end": 2244217,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oh non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0841",
-          "begin": 2243705,
-          "end": 2244217,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0842",
-          "begin": 2244217,
-          "end": 2244754,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0548",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0548"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0843",
-          "begin": 2244754,
-          "end": 2247784,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0549",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oh non il y est pas dans + dans [-;l']dictionnaire ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0549"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0844",
-          "begin": 2247784,
-          "end": 2249185,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0550",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "bon on va pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0550"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0845",
-          "begin": 2247784,
-          "end": 2249185,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0550",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "il a été sénateur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0550"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0846",
-          "begin": 2249185,
-          "end": 2250755,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0551",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "un moment mais pas longtemps"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0551"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0847",
-          "begin": 2249185,
-          "end": 2250755,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0551",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui sénateur de Seine"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0551"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0848",
-          "begin": 2250755,
-          "end": 2255443,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0552",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'vais pas dire que j'vais demander à un de mes voisins parce qu'ils n'sa- la moitié savent pas lire ni écrire (brouhaha général) ni compter"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0552"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0849",
-          "begin": 2255443,
-          "end": 2258578,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0553",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "dans dans l'dictionnaire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0553"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0850",
-          "begin": 2255443,
-          "end": 2258578,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0553",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "eh ben voilà + monsieur: Béranger aurait su nous l'dire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0553"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0851",
-          "begin": 2258578,
-          "end": 2259323,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0554",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "non: [j'vais;j'ai] la"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0554"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0852",
-          "begin": 2258578,
-          "end": 2259323,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0554",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0554"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0853",
-          "begin": 2259323,
-          "end": 2260491,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0555",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0555"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0854",
-          "begin": 2259323,
-          "end": 2260491,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0555",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "bien sûr + bien sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0555"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0855",
-          "begin": 2260491,
-          "end": 2262294,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0556",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "monsieur Béranger (brouhaha)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0556"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0856",
-          "begin": 2260491,
-          "end": 2262294,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0556",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'vais l'dem- non: mais j'vais l'demander"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0556"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0857",
-          "begin": 2262294,
-          "end": 2265387,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0557",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "si vous voulez vraiment être + sur Saint-Ouen"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0557"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0858",
-          "begin": 2262294,
-          "end": 2265387,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0557",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "demander à la mairie hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0557"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0859",
-          "begin": 2265387,
-          "end": 2268861,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0558",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "bon alors vous allez interviewer XXX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0558"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0860",
-          "begin": 2265387,
-          "end": 2268861,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0558",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "téléphonez à monsieur + Béranger rue Saint-Denis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0558"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0861",
-          "begin": 2268861,
-          "end": 2271891,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0559",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "oui + oui oui j'vais j'vais peut-être le faire ouais mm + ouais ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0559"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0862",
-          "begin": 2268861,
-          "end": 2271891,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0559",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "(brouhaha) XXX tout hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0559"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0863",
-          "begin": 2271891,
-          "end": 2273630,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0560",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "d'abord il fait partie d'la Réa +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0560"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0864",
-          "begin": 2273630,
-          "end": 2277844,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0561",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + l'associa- historique ++ c'est c'est quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0561"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0865",
-          "begin": 2273630,
-          "end": 2277844,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0561",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'est: + X connaître la Réa"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0561"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0866",
-          "begin": 2277844,
-          "end": 2283201,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0562",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "un service historique de Saint-Ouen"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0562"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0867",
-          "begin": 2277844,
-          "end": 2283201,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0562",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'ai: rendez-vous avec un avocat là le vingt-sept j'demanderai l'avocat le: saura peut-être j'sais pas +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0562"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0868",
-          "begin": 2283201,
-          "end": 2287056,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0563",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "il s'occupe de: de l'association historique c'est ça ouais + sur Saint-Ouen ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0563"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0869",
-          "begin": 2283201,
-          "end": 2287056,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0563",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oui + oui avec Jean Lefort"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0563"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0870",
-          "begin": 2287056,
-          "end": 2291588,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0564",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais j'ai bien vu ++ ses articles dans le: + dans l'journal municipal"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0564"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0871",
-          "begin": 2287056,
-          "end": 2291588,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0564",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "c'est drôle il me semble pourtant que:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0564"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0872",
-          "begin": 2291588,
-          "end": 2297770,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0565",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ben + si vous voulez le contacter ben + sans l'déranger le mieux c'est + d'aller euh rue Anselme"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0565"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0873",
-          "begin": 2291588,
-          "end": 2297770,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0565",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "savez qu'il ait quitté XX hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0565"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0874",
-          "begin": 2297770,
-          "end": 2307193,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0566",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ++ d'accord + d'accord ++ ah: ok + ah ben c'est c'est un bon tuyau ouais merci ouais mm ouais + c'est un bon tuyau"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0566"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0875",
-          "begin": 2297770,
-          "end": 2307193,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0566",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "au jumelage + ils font leurs réunions au jumelage tous les jeudis après-midi +++ tous les jeudis après-midi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0566"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0876",
-          "begin": 2307193,
-          "end": 2308716,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0567",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "parce qu'il me semble quand même euh:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0567"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0877",
-          "begin": 2308716,
-          "end": 2324207,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0568",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "alors je: en j'vais vous: ramener à: au questionnaire donc euh en + j'voulais parler un petit peu des langues + qui se parlent donc euh dans la ville + euh: + est-ce que vous avez idée des langues qui se parlent: autour de vous euh? ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0568"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0878",
-          "begin": 2324207,
-          "end": 2326750,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0569",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben un petit peu [de;-] tout hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0569"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0879",
-          "begin": 2324207,
-          "end": 2326750,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0569",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "non pas trop (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0569"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0880",
-          "begin": 2326750,
-          "end": 2328256,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0570",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "je les connais pas toutes hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0570"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0881",
-          "begin": 2328256,
-          "end": 2329851,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0571",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0571"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0882",
-          "begin": 2329851,
-          "end": 2333812,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0572",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "vous avez pas assez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0572"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0883",
-          "begin": 2329851,
-          "end": 2333812,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0572",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "je trouve que justement on (n')entend plus suffisamment l'français"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0572"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0884",
-          "begin": 2333812,
-          "end": 2335932,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0573",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah ouais (rires) +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0573"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0885",
-          "begin": 2335932,
-          "end": 2337375,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0574",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "autour de nous +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0574"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0886",
-          "begin": 2337375,
-          "end": 2341272,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0575",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + et vous-même vous parlez pas d'autre langue que le: le français?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0575"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0887",
-          "begin": 2341272,
-          "end": 2345571,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0576",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "vous avez pas l'occasion de ++ mm + d'accord (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0576"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0888",
-          "begin": 2341272,
-          "end": 2345571,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0576",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "non: j'ai fait de l'anglais mais je l'ai pas continué alors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0576"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0889",
-          "begin": 2345571,
-          "end": 2353506,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0577",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "comme c'était Paul qui était: ++ enfin j'avais un professeur mais comme c'était Paul surtout qui me: ++ qui le parlait donc euh évidemment: +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0577"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0890",
-          "begin": 2353506,
-          "end": 2355647,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0578",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "Paul c'était votre compagnon c'est ça d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0578"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0891",
-          "begin": 2355647,
-          "end": 2357111,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0579",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "eh ben maintenant:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0579"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0892",
-          "begin": 2355647,
-          "end": 2357111,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0579",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "OK"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0579"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0893",
-          "begin": 2357111,
-          "end": 2365366,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0580",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ben si on parlait du français euh: + est-ce que vous voyez différentes façons de parler français dans euh + de de parler le français:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0580"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0894",
-          "begin": 2365366,
-          "end": 2369686,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0581",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "dans dans les différents quartiers: à Pa-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0581"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0895",
-          "begin": 2365366,
-          "end": 2369686,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0581",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ben: le le français si on le p- si on le parle bien +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0581"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0896",
-          "begin": 2369686,
-          "end": 2372589,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0582",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh il y avait les: les + les chiffonniers qui parlaient argot +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0582"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0897",
-          "begin": 2372589,
-          "end": 2375597,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0583",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'est une langue un peu fermée évidemment c'est hermétique"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0583"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0898",
-          "begin": 2372589,
-          "end": 2375597,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0583",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais ç-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0583"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0899",
-          "begin": 2375597,
-          "end": 2388232,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0584",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ben c'est comme les patois + ils ont tourné un film là sur les euh le Nord + là X quand ils vous parlent: + j'ai une amie qui est du Nord + alors elle disait euh + le: ils: faisaient le matin + ils buvaient d'la chicorée +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0584"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0900",
-          "begin": 2388232,
-          "end": 2388786,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0585",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0585"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0901",
-          "begin": 2388786,
-          "end": 2396407,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0586",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "X chicorée Leroux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0586"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0902",
-          "begin": 2388786,
-          "end": 2396407,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0586",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et puis + ils faisaient des tran- ils coupaient des tranches de pain + [et;ils] les tartinaient avec du maroual ++ [puis;-] ils trempaient ça dans le: chicorée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0586"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0903",
-          "begin": 2396407,
-          "end": 2399119,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0587",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah ouais ça dans l'Midi ça se fait beaucoup dans l'Nord ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0587"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0904",
-          "begin": 2396407,
-          "end": 2399119,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0587",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "c'est une marque c'est quoi le maroual?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0587"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0905",
-          "begin": 2399119,
-          "end": 2400985,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0588",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'est dans l'Nord elle [est;était] d'la région d'Lille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0588"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0906",
-          "begin": 2399119,
-          "end": 2400985,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0588",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "c'est du fromage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0588"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0907",
-          "begin": 2400985,
-          "end": 2402475,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0589",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "c'est un fromage très fort"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0589"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0908",
-          "begin": 2400985,
-          "end": 2402475,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0589",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah: d'accord + oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0589"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0909",
-          "begin": 2402475,
-          "end": 2404701,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0590",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "du fromage ++ du fromage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0590"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0910",
-          "begin": 2402475,
-          "end": 2404701,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0590",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "non ça y est je je vois oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0590"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0911",
-          "begin": 2404701,
-          "end": 2405827,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0591",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "sent fort"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0591"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0912",
-          "begin": 2404701,
-          "end": 2405827,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0591",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah ben dis donc +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0591"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0913",
-          "begin": 2405827,
-          "end": 2411078,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0592",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et vous vous vous souvenez de: d'exemples de leur euh: + argot + des chiffonniers euh +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0592"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0914",
-          "begin": 2411078,
-          "end": 2417620,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0593",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "alors euh: +++ l'argot"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0593"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0915",
-          "begin": 2411078,
-          "end": 2417620,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0593",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah oui ben moi j'ai connu les chiffonniers + comme comme j'ai connu les nomades euh: vous savez là euh: + où il y a"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0593"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0916",
-          "begin": 2417620,
-          "end": 2421517,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0594",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mais vous vous souvenez comment ils parlaient?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0594"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0917",
-          "begin": 2417620,
-          "end": 2421517,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0594",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "où Augusto Baldi avait son petit café là dans la rue euh +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0594"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0918",
-          "begin": 2421517,
-          "end": 2433454,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0595",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "le long du périphérique maintenant + à la place du péri- il y a l'périphérique maintenant + j'ai connu les nomades là euh + qui étaient très gentils tout l'monde en avait peur mais: moi j'en avais pas peur jamais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0595"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0919",
-          "begin": 2421517,
-          "end": 2433454,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0595",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui oui ben c'est au périphérique c'est sûr hein + oui + mm + XX tout ça + il y avait X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0595"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0920",
-          "begin": 2433454,
-          "end": 2433881,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0596",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0596"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0921",
-          "begin": 2433881,
-          "end": 2438222,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0597",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ils étaient très corrects et tout: ils m'demandaient l'heure les petits les petits bonhommes et puis bon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0597"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0922",
-          "begin": 2438222,
-          "end": 2440448,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0598",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah ouais + mm + (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0598"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0923",
-          "begin": 2438222,
-          "end": 2440448,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0598",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "non non moi +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0598"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0924",
-          "begin": 2440448,
-          "end": 2447683,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0599",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "jamais eu d'problèmes avec eux il y avait Augusto Baldi qu'avait son café euh: + il était pas dedans bien sûr pas s- oh en tous cas pas souvent +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0599"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0925",
-          "begin": 2447683,
-          "end": 2460381,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0600",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord donc euh le + non ça vous: + revient pas X ++ ouais ++ ouais ouais bien sûr oui des jargons: + mm ++ ouais + ouais:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0600"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0926",
-          "begin": 2447683,
-          "end": 2460381,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0600",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ben de l'argot c'est pas + évident c'est parce que + comme dans tous les métiers il y a de la: + X mots [ça;c'est] c'est typique + que vous: qui sont un peu imperméables + euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0600"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0927",
-          "begin": 2460381,
-          "end": 2463284,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0601",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'était fait pour ça dans les premiers temps"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0601"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0928",
-          "begin": 2460381,
-          "end": 2463284,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0601",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'ai pas parlé l'argot euh j'ai pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0601"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0929",
-          "begin": 2463284,
-          "end": 2468006,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0602",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et dans dans la autour de vous: vous sentez une différence entre par exemple les jeunes et les vieux: ou"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0602"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0930",
-          "begin": 2468006,
-          "end": 2469639,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0603",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "à l'époque non +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0603"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0931",
-          "begin": 2469639,
-          "end": 2470274,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0604",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "à l'époque non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0604"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0932",
-          "begin": 2470274,
-          "end": 2470553,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0605",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0605"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0933",
-          "begin": 2470553,
-          "end": 2471319,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0606",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "[-;et] aujourd'hui?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0606"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0934",
-          "begin": 2471319,
-          "end": 2472532,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0607",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "maintenant oui +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0607"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0935",
-          "begin": 2472532,
-          "end": 2473306,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0608",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "au fur à mesure"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0608"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0936",
-          "begin": 2472532,
-          "end": 2473306,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0608",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh aujourd'hui +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0608"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0937",
-          "begin": 2473306,
-          "end": 2482705,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0609",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'vis en pavillon j'suis: + chez moi + (rires Marc) elle connaît Jeanne + ben: ben Farah aussi elle est venue chez moi + là j'vois personne pratiquement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0609"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0938",
-          "begin": 2482705,
-          "end": 2483256,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0610",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0610"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0939",
-          "begin": 2483256,
-          "end": 2488274,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0611",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "puis à côté ben c'est une maison en ruines + et puis à droite: c'est ma voisine +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0611"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0940",
-          "begin": 2488274,
-          "end": 2492975,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0612",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui puis il y a pas d'enfants il y a rien donc euh vous pouvez pas: voir euh + des différences"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0612"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0941",
-          "begin": 2488274,
-          "end": 2492975,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0612",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ben: ++ ah non non non non ah non + non + non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0612"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0942",
-          "begin": 2492975,
-          "end": 2495201,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0613",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et vous avez des: des enfants des petits-enfants?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0613"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0943",
-          "begin": 2495201,
-          "end": 2497279,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0614",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "qui moi? + oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0614"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0944",
-          "begin": 2495201,
-          "end": 2497279,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0614",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ben vous deux vous ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0614"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0945",
-          "begin": 2497279,
-          "end": 2499780,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0615",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oui j'ai deux enfants moi + deux jeunes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0615"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0946",
-          "begin": 2499780,
-          "end": 2501985,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0616",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et des petits-enfants? ++ ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0616"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0947",
-          "begin": 2499780,
-          "end": 2501985,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0616",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oui:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0616"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0948",
-          "begin": 2501985,
-          "end": 2503936,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0617",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "puis j'vais être arrière-grand-mère au: mois prochain"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0617"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0949",
-          "begin": 2503936,
-          "end": 2512530,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0618",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah: félicitations (rires) + pour la première fois? + ouais ++ mm (rires) ++ mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0618"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0950",
-          "begin": 2503936,
-          "end": 2512530,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0618",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah oui ++ oui + ben oui oh ben ils se sont pas décidés de bonne heure + c'est ma petite fille elle a trente-et-un ans hein +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0618"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0951",
-          "begin": 2512530,
-          "end": 2514422,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0619",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "elle avait dit pour mes trente ans j'veux un enfant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0619"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0952",
-          "begin": 2514422,
-          "end": 2518256,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0620",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "(rires) un beau cadeau"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0620"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0953",
-          "begin": 2514422,
-          "end": 2518256,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0620",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "XXX + ça y est ils ont acheté un enfant X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0620"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0954",
-          "begin": 2518256,
-          "end": 2520291,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0621",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "ben ça y est + c'est X là hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0621"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0955",
-          "begin": 2520291,
-          "end": 2527679,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0622",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "et vous entre: + la façon d'parler français de vos: petits-enfants et votre façon d'parler vous voyez des: différences + [-;ou] pas spécialement +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0622"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0956",
-          "begin": 2520291,
-          "end": 2527679,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0622",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh non ben non + oh non: ben non +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0622"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0957",
-          "begin": 2527679,
-          "end": 2546964,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0623",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + OK + euh: ++ d'accord ++ hum + alors est-ce que: + le quartier où vous habitez à Saint-Ouen est-ce que est-ce que vous: + vous avez vu des: + des problèmes économiques ou est-ce que vous avez senti que: + que l'quartier a été touché par des: des problèmes économiques:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0623"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0958",
-          "begin": 2546964,
-          "end": 2547811,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0624",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "oh certainement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0624"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0959",
-          "begin": 2547811,
-          "end": 2548852,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0625",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0625"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0960",
-          "begin": 2548852,
-          "end": 2556071,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0626",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "certainement pour que + c'est malheureux à dire mais quand vous quittez votre pays c'est pas d'bon coeur + ou alors faut vraiment avoir une situation extraordinaire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0626"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0961",
-          "begin": 2556071,
-          "end": 2556477,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0627",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0627"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0962",
-          "begin": 2556477,
-          "end": 2562934,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0628",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais: Farah j'sais pas si c'est ++ vous êtes venue parce que vous étiez + on vous a mis un travail intéressant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0628"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0963",
-          "begin": 2562934,
-          "end": 2565625,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0629",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "non moi je suis venue ici quand j'avais deux ans et demi +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0629"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0964",
-          "begin": 2565625,
-          "end": 2567216,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0630",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah oui c'est: déjà les parents"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0630"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0965",
-          "begin": 2567216,
-          "end": 2571578,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0631",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "X vous êtes X quelle origine?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0631"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0966",
-          "begin": 2567216,
-          "end": 2571578,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0631",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "donc euh: algérienne ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0631"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0967",
-          "begin": 2571578,
-          "end": 2575010,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0632",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "c'est vrai que que quand j'vois mon pays je ça ça me crève le coeur quoi +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0632"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0968",
-          "begin": 2575010,
-          "end": 2579013,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0633",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "XX pauvre(s) X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0633"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0969",
-          "begin": 2575010,
-          "end": 2579013,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0633",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah oui ça c'est sûr + c'est sûr ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0633"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0970",
-          "begin": 2579013,
-          "end": 2585665,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0634",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "donc les dans dans le: dans Saint-Ouen les les problèmes économiques: + sont plus: marqués aujourd'hui que:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0634"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0971",
-          "begin": 2585665,
-          "end": 2589097,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0635",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "qu'il y a vingt ans trente ans + c'est + d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0635"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0972",
-          "begin": 2585665,
-          "end": 2589097,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0635",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'est différent c'est totalement différent ça n'a rien à voir"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0635"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0973",
-          "begin": 2589097,
-          "end": 2592211,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0636",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "autrefois X + oh c'était à peu près tout l'monde pareil"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0636"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0974",
-          "begin": 2592211,
-          "end": 2601930,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0637",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm +++ ouais + ouais ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0637"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0975",
-          "begin": 2592211,
-          "end": 2601930,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0637",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "les trois quarts ils travaillaient en usine dans notre mon quartier là + bon ben: tous les jours tous les jours ben ils allaient là rue Blanqui là + il y avait: j'sais plus + combien d'usines"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0637"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0976",
-          "begin": 2601930,
-          "end": 2604473,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0638",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "(brouhaha) oh il y avait X il y avait: j'sais plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0638"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0977",
-          "begin": 2604473,
-          "end": 2605472,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0639",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0639"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0978",
-          "begin": 2604473,
-          "end": 2605472,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0639",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0639"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0979",
-          "begin": 2605472,
-          "end": 2607000,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0640",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0640"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0980",
-          "begin": 2605472,
-          "end": 2607000,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0640",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "il y avait énormément de:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0640"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0981",
-          "begin": 2607000,
-          "end": 2610008,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0641",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ben il y avait des ouvriers spécialisés XX +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0641"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0982",
-          "begin": 2610008,
-          "end": 2615386,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0642",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm + mais ils étaient moins touchés par l'chômage paut-être ou euh + ouais +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0642"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0983",
-          "begin": 2610008,
-          "end": 2615386,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0642",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ah ben c'était différent ++"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0642"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0984",
-          "begin": 2615386,
-          "end": 2622266,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0643",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "on connaissait pas l'chômage + moi j'ai jamais connu + oh peut-être mais enfin moi j'en ai j-j'ai jamais connu l'chômage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0643"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0985",
-          "begin": 2615386,
-          "end": 2622266,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0643",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "complètement différent + oh XX il y en a toujours eu mais XX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0643"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0986",
-          "begin": 2622266,
-          "end": 2637588,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0644",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "j'ai payé + ma c- ma [cot-;côte] euh: + comme tout l'monde + j'voyais chômage sur ma feuille de paie + mais j'ai jamais été au chômage pas une seule journée + parce qu'à c-c'est une époque + euh vous vous: pouviez quitter une maison et hop sortir s- + aller dans l'autre le lendemain:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0644"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0987",
-          "begin": 2637588,
-          "end": 2641866,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0645",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais + ouais ouais + (rires)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0645"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0988",
-          "begin": 2637588,
-          "end": 2641866,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0645",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah oui vous avez du boulot partout ++ il y avait de l'emploi partout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0645"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0989",
-          "begin": 2641866,
-          "end": 2651539,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0646",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'me rappelle être allée au ministère du travail là quand mes parents ont: co- + comme j'travaillais avec eux + à un moment donné j'dis: quand ils vont prendre leur retraite qu'est-ce que j'fais moi?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0646"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0990",
-          "begin": 2641866,
-          "end": 2651539,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0646",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "avec un peu d'connaissances un peu d'intelligence: pff"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0646"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0991",
-          "begin": 2651539,
-          "end": 2652199,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0647",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah ben oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0647"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0992",
-          "begin": 2651539,
-          "end": 2652199,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0647",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0647"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0993",
-          "begin": 2652199,
-          "end": 2664939,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0648",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ça c'est l'problème hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0648"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0994",
-          "begin": 2652199,
-          "end": 2664939,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0648",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "alors j'ai été au ministère du travail et puis j'leur dis ben + j'habite Saint-Ouen ah + ben il y a du travail à Saint-Ouen mais vous allez peut-être pas en vouloir + j'dis pourquoi j'en voudrais pas? + c'est à côté + j'ai travaillé à l'Alstom"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0648"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0995",
-          "begin": 2664939,
-          "end": 2665282,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0649",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0649"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0996",
-          "begin": 2665282,
-          "end": 2667910,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0650",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "ah oui l'Alstom tout ça [moche comme tout;moi j'XX]"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0650"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0997",
-          "begin": 2665282,
-          "end": 2667910,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0650",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "service: + bureau(x) là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0650"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0998",
-          "begin": 2667910,
-          "end": 2668422,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0651",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0651"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0999",
-          "begin": 2668422,
-          "end": 2675768,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0652",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "j'y allais à pieds j'prenais la rue: XXX c'était rue: + ça donnait sur le boulevard Victor Hugo"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0652"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1000",
-          "begin": 2668422,
-          "end": 2675768,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0652",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "dans la rue des Bateliers? (brouhaha) ++ ouais + ouais ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0652"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1001",
-          "begin": 2675768,
-          "end": 2677338,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0653",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "non + Docteur Bauer Alstom"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0653"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1002",
-          "begin": 2675768,
-          "end": 2677338,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0653",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "moi j'ai fait des: stages d'ailleurs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0653"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1003",
-          "begin": 2677338,
-          "end": 2678231,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0654",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "euh non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0654"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1004",
-          "begin": 2677338,
-          "end": 2678231,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0654",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "chez X là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0654"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1005",
-          "begin": 2678231,
-          "end": 2678933,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0655",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "non?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0655"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1006",
-          "begin": 2678231,
-          "end": 2678933,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0655",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "pour mon métier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0655"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1007",
-          "begin": 2678933,
-          "end": 2682132,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0656",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ben non + Alstom c'était la der- rue des Bateliers"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0656"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1008",
-          "begin": 2682132,
-          "end": 2684167,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0657",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "Bateliers ouais + ouais c'est ça mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0657"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1009",
-          "begin": 2682132,
-          "end": 2684167,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0657",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah aux Bateliers ah oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0657"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1010",
-          "begin": 2684167,
-          "end": 2685293,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0658",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "c'était là l'entrée X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0658"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1011",
-          "begin": 2685293,
-          "end": 2686059,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0659",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "près des petits jardins"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0659"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1012",
-          "begin": 2686059,
-          "end": 2688898,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0660",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et alors ce qu'il y avait + à l'époque"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0660"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1013",
-          "begin": 2686059,
-          "end": 2688898,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0660",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah oui derrière là-bas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0660"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1014",
-          "begin": 2688898,
-          "end": 2690574,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0661",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui c'est vrai"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0661"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1015",
-          "begin": 2688898,
-          "end": 2690574,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0661",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "(brouhaha) il y avait tous les petits jardins"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0661"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1016",
-          "begin": 2690574,
-          "end": 2695423,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0662",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "oui voilà c'est ça les jardins oui ++ c'est vrai?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0662"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1017",
-          "begin": 2690574,
-          "end": 2695423,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0662",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "c'était une grosse X + ben moi j'me suis trouvée enfermée moi un soir ben oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0662"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1018",
-          "begin": 2695423,
-          "end": 2697479,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0663",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "les jardins oui c'est ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0663"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1019",
-          "begin": 2695423,
-          "end": 2697479,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0663",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ils vendaient des légumes oh la"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0663"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1020",
-          "begin": 2697479,
-          "end": 2700297,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0664",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "me suis retrouvée enfermée dans les jardins"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0664"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1021",
-          "begin": 2697479,
-          "end": 2700297,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0664",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ah oui? ++ les les jardiniers?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0664"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1022",
-          "begin": 2700297,
-          "end": 2702861,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0665",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh oui il y avait des jardiniers mais c'étaient des ouvriers d'Alstom"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0665"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1023",
-          "begin": 2702861,
-          "end": 2708345,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0666",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "com-comment ça se passait la vente: + ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0666"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1024",
-          "begin": 2702861,
-          "end": 2708345,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0666",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "on leur concédait un morceau d'jardin + mais j'allais acheter les tomates oh ben dis donc alors +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0666"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1025",
-          "begin": 2708345,
-          "end": 2711653,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0667",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "(brouhaha) c'était: ponctuel les ventes: ou euh + comme ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0667"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1026",
-          "begin": 2708345,
-          "end": 2711653,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0667",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "oh c'était formidable X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0667"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1027",
-          "begin": 2711653,
-          "end": 2714958,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0668",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "est-ce qu'ils existent encore les petits jardins c'est tout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0668"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1028",
-          "begin": 2711653,
-          "end": 2714958,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0668",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "non: non: non non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0668"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1029",
-          "begin": 2714958,
-          "end": 2717501,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0669",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "XXX"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0669"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1030",
-          "begin": 2714958,
-          "end": 2717501,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0669",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "vous avez pas vu il y a cinq grues là dans les: terrains"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0669"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1031",
-          "begin": 2717501,
-          "end": 2722498,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0670",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et puis bon ben le: + le château d'Saint-Ouen + était concédé + à l'Alstom"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0670"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1032",
-          "begin": 2717501,
-          "end": 2722498,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0670",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ça construit [ça monte;XX] + pfff"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0670"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1033",
-          "begin": 2722498,
-          "end": 2728472,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0671",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "oui ils en ont fait euh des jardins dans le vieux Saint-Ouen euh: pour euh: + pour les personnes de la ville"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0671"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1034",
-          "begin": 2722498,
-          "end": 2728472,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0671",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "pour un: + un: + un bail + de quatre-vingt-dix-neuf ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0671"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1035",
-          "begin": 2728472,
-          "end": 2733000,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0672",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord + d'accord + oui oui oui mm + mm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0672"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1036",
-          "begin": 2728472,
-          "end": 2733000,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0672",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "où chaque année ils euh: cultivent un petit peu de: + de terre bien à eux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0672"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1037",
-          "begin": 2733000,
-          "end": 2733931,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0673",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "d'accord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0673"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1038",
-          "begin": 2733000,
-          "end": 2733931,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0673",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "et après la ville a"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0673"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1039",
-          "begin": 2733931,
-          "end": 2735813,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0674",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ah c'est peut-être vers le:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0674"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1040",
-          "begin": 2733931,
-          "end": 2735813,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0674",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais + ouais ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0674"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1041",
-          "begin": 2735813,
-          "end": 2736507,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0675",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "vous savez vers les"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0675"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1042",
-          "begin": 2735813,
-          "end": 2736507,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0675",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "maintenant ils cassent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0675"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1043",
-          "begin": 2736507,
-          "end": 2738648,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0676",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "vignes là les anciennes vignes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0676"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1044",
-          "begin": 2736507,
-          "end": 2738648,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0676",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "maintenant ils cassent: + oui c'est vrai"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0676"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1045",
-          "begin": 2738648,
-          "end": 2741230,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0677",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
-              },
-              "content": "ben eux ils ont refait XXX (brouhaha)"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0677"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1046",
-          "begin": 2741230,
-          "end": 2744318,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0678",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "ben non il y a pas de terrain là + c'est indivisible"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0678"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1047",
-          "begin": 2741230,
-          "end": 2744318,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0678",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "le: TGV c'est Alstom encore"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0678"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1048",
-          "begin": 2744318,
-          "end": 2746032,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0679",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "mm ++ ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0679"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1049",
-          "begin": 2744318,
-          "end": 2746032,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0679",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
-              },
-              "content": "mais c'était à Saint-Ouen avant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0679"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1050",
-          "begin": 2746032,
-          "end": 2747428,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0680",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "ah peut-être au fond"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0680"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1051",
-          "begin": 2746032,
-          "end": 2747428,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0680",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "ouais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0680"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1052",
-          "begin": 2747428,
-          "end": 2748296,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0681",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
-              },
-              "content": "il y a rien +"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0681"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1053",
-          "begin": 2748296,
-          "end": 2750136,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0682",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
-              },
-              "content": "je vais juste + euh:"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0682"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1054",
-          "begin": 2748296,
-          "end": 2750136,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0682",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "peut-être en bas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0682"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1055",
-          "begin": 2750136,
-          "end": 2752041,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0683",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
-              },
-              "content": "je sais pas moi je sais que c'est j-j- X"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0683"
-          }
-        },
-        {
-          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1056",
-          "begin": 2750136,
-          "end": 2752041,
-          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
-          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0683",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
-              },
-              "content": "qu'est-ce qu'ils en ont fait:?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0683"
-          }
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-FRA_PK_IV_10_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:51+00:00",
-        "dc:modified": "2016-06-01T23:47:51+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "Le jour des petits (B)"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/145183_IV_10_22km.wav",
-          "meta": {
-            "dc:duration": 821000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "Le jour des petits (B)"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/145183.wav",
-          "meta": {
-            "dc:duration": 821000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "Le jour des petits (B)"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/145183_IV_10_44k.mp3",
-          "meta": {
-            "dc:duration": 821000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "Le jour des petits (B)"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a001",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "44",
-              "content": "jaɛ̃mpsjøla / iladøtɛt / epijaɛ̃mɔl> + jaɑ̃kɔ:ɛ̃mpsjø + lakatpje / mpsjøa + isɛpama:ʃe / isɛpama:ʃe / isɛpama:ʃe / epʏilalɛ / ilakite / ɑ̃vənɑ̃jəpatɛ + opɔ̃(danma) + sɛajəvənɛ / sɛaləmpsjødaɛ(k) / døtɛtla / aɛklʏi - - - - / ledømɔ̃fɛpalab / jalodla(a)ʒəte + tɔnami + dɑ̃lo: / lodlalagynla /",
-              "transl": {
-                "@value": "il y a un monsieur là il a deux têtes et puis il y a un (mort) il y a encore un monsieur il a quatre pieds monsieur il sait pas marcher il sait pas marcher il sait pas marcher et puis il allait il a quitté en venant ouais il est parti au pont (XX) c'est là il est venu c'est là le monsieur avec deux têtes là avec lui (XXXX) les deux ont fait (des) palabres il y a l'autre-là (il) a jeté ton ami dans l'eau l'eau de (la) lagune-là",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 145.2,
-          "end": 31940.8
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a002",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "44",
-              "content": "/ lalʏilɛsɔ:timɛ̃nɑ̃ + pu:tyelodla / lamɛ̃nɑ̃ + jɛmwajf> + jɛf> / jɛfʏi + puvəni: / wɛi + selʏila / lʏisempsjø: / lamɛ̃nɑ̃ / lamɛ̃ntənɑ̃  + ajɛtroprɛse / jɛfʏimɛ̃dnɑ̃ + jəfraja + puvəni: / jɛfrajapuvəni: / sɛla + jsialedɔmialaga: /",
-              "transl": {
-                "@value": "là lui il est sorti maintenant pour tuer l'autre-là là maintenant moi j'ai [f] jai [f] j'ai fui pour venir ouais mon (X) lui là (ah ouais) c'est lui là lui c'est monsieur (j'ai oublié son nom) là maintenant là maintenant j'ai trop pressé c'est ça j'ai fui maintenant j'ai (fraya, fugué) pour venir j'ai (fraya, fugué) pour venir je suis allé dormir à la gare",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 31940.8,
-          "end": 70560.2
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a003",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "44",
-              "content": "/ sɛlaləmpsjømapuse + ʒykɑ̃: : : / jisajə -ɔ -e alaga: / aɛdepje / mapuse / salɛga:djɛ̃lõ + tye / kɑ̃lɛga:djɛ̃ + ɔ̃finidələtyela / ɑ̃sɔ:sɛlriɑ̃kɔ: + jɛvi> / lə(mɔʀɔsɑ̃)ləmɑ̃ʒe + sɛajɛfʏimɛ̃nɑ̃ + jsialɛ + tɔ̃tɔ̃konɑ̃ + maprimɛ̃nɑ̃ + pu:alealemezɔ̃ / dɑ̃ʀɛv: / jalətɔ̃tɔ̃konɑ̃ + imaprimɛ̃nɑ̃ + pu:mɑ̃vwajalamezɔ̃ / jɛfini",
-              "transl": {
-                "@value": "c'est là le monsieur m'a poursuivi (jusqu'en, pendant longtemps) c'est ça il est tombé à la gare avec deux pieds (il) m'a poursuivi jusqu'à (tomber) la gare (dedans, donc) les gardiens l'ont tué quand les gardiens ont fini de le tuer là en sorcellerie encore j'ai vu les (morts sont) allés manger (c'est un film maintenant) c'est ça il y avait tonton Konan il m'a pris pour aller à la maison dans (le) rêve donc le tonton Konan il m'a pris maintenant pour m'envoyer à la maison (c'est, j'ai) fini.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 70560.2,
-          "end": 94806.2
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a004",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "33",
-              "content": "// jaɛ̃mpsjø / ivɛ>irɛsetuʒu: + loɑ̃>ɑ̃ba / isapəlevɔpi / mɛntənɑ̃",
-              "transl": {
-                "@value": "il y a un monsieur il versait toujours l'eau en bas il s'appellait Vopi maintenant",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 101361.3,
-          "end": 109009.9
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a005",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "34",
-              "content": "sapɛkɔmɑ̃",
-              "transl": {
-                "@value": "il s'appelle comment.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 109034.4,
-          "end": 109861.3
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a006",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "33",
-              "content": "vɔpi / vɔpi (*) / mɛ̃tnɑ̃ + ɔ̃lapɛlɛ / ɔ̃di / vɔpi / dwavɛseloɑ̃baisi / idi + wi / kɑ̃jɛrɑ̃ntre / - - - vɛ:seloɑ̃ba / ɔ̃di + (pu)kwatyvɛ:sloɑ̃ba / ɛs>ɛsɔ̃papadi + dɛsɑ̃vit / vapati: / atʀapelola / lakurykurykury + napapyatrape / lo / dɔ̃loɛvɛ:seɑ̃ba /",
-              "transl": {
-                "@value": "Vopi. Vopi (*). maintenant on l'a appelé on dit Vopi (tu vas) verser l'eau en bas ici il dit oui quand je vais rentrer maintenant il a versé l'eau en bas on dit pourquoi tu verses l'eau en bas et et son papa dit descend vite vas partir rattraper l'eau-là il a couru couru couru (il) a pas pu rattraper l'eau donc l'eau est versée en bas.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 109861.3,
-          "end": 134736.5
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a007",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "33",
-              "content": "/ mɛdnɑ̃ / sɔ̃papalapɛle / sɔ̃ppaap>a:pəti / ilɛpatiapɛle + sezami / mɛ̃dnɑ̃ + idi / atrapevɔpilatrapevo + pil / øisavɛpa / ø(o)sizatrapelɛpil / mɛdnɑ̃ / mɛdnɑ̃ / ɔ̃di / tyɑ̃vwapilmɛ̃dnɑ̃ / tyɑ̃vwapilmɛ̃dnɑ̃ / vɔpilɛpa:ti / lɛpatidɑ̃laʀ> / ilɛpatidɑ̃laʀy / iletɛpati + truvesezami / lɛtɛlaʒue / mɛdnɑ̃ + lɛrɛselaba / sɛtu //",
-              "transl": {
-                "@value": "maintenant son papa l'appellait son papa (appelait) à petit il est parti appeler ses amis maintenant il dit attraper Vopi il attrapait Vopi eux ils savaient pas eux (aussi) s'ils attrapaient (Vopi) maintenant maintenant on dit tuez Vopi maintenant on l'a tué Vopi maintenant Vopi il est parti il est parti dans la [r] il est parti dans la rue il était parti trouver ses amis il était là à jouer maintenant il est resté là-bas c'est tout.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 134736.5,
-          "end": 167191.4
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a008",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "111",
-              "content": "œ̃ʒu: + jaɛ̃mpsjø / (*) / isapɛ + balaf: / izapɛbalaf / (**) / ømɛ̃dnɑ̃ / idi / idi + kəlavɛsɔnami / kitravaj / kisavɛkravat / iletɛpa:tiœ̃ʒu:oʃɑ̃ /",
-              "transl": {
-                "@value": "un jour il y a un monsieur (*) il s'appelle balafre il s'appelle balafre (**) et puis maintenant il dit il dit comme il avait son ami qui travaille il s'appelle Cravate ils étaient parti un jour au champs",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 174851.2,
-          "end": 204251.3
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a009",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "111",
-              "content": "/ tuʒu: : / tuʒu:sɔ̃> + kɑ̃sɔnamisɔ̃(ʃa) / igajamɑ̃ʒe / mɛdnɑ̃ + balafdi + sɛu + tigajn / mɑ̃ʒe / ɔ: : :",
-              "transl": {
-                "@value": "toujours toujours son quand son ami sort au champs il gagne à manger maintenant balafre dit c'est où (que) tu gagnes à manger maintenant",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 204469.7,
-          "end": 214598.9
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a010",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "34",
-              "content": "sɛpabagrɔsɔ: /",
-              "transl": {
-                "@value": "c'est pas bakro (X).",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 212526,
-          "end": 214463.9
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a011",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "43",
-              "content": "ta -i + -a - balaflamem",
-              "transl": {
-                "@value": "t'as vu tu as balafre là même.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 214540.7,
-          "end": 216750
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a012",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "41",
-              "content": "jakwamɛm",
-              "transl": {
-                "@value": "il y a quoi même.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 216012.7,
-          "end": 216747.7
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a013",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "34",
-              "content": "- - -̠ dəkipalɛ:",
-              "transl": {
-                "@value": "(XXX) de qui parler",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 216982.5,
-          "end": 218145.3
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a014",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "50",
-              "content": "tɔ̃dikɛ / ʒamɛ",
-              "transl": {
-                "@value": "(ils) t'ont dit que jamais",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 218146.1,
-          "end": 219076.3
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a015",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "34",
-              "content": "dɔ̃-ɛ-iba:lɛ / -ɛ-ipa:l + - tɔ̃kɔ̃sa",
-              "transl": {
-                "@value": "(XX) eux il parlent moi je (donne) comme ça",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 218931.7,
-          "end": 221787.6
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a016",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "50",
-              "content": "- - pualetɔs + atɛmɔ:",
-              "transl": {
-                "@value": "(XX) tu parlais (X) à tes morts",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 222242.9,
-          "end": 224974.6
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a017",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "34",
-              "content": "---- ɔ̃ -tɑ̃ / abɔ̃ / abɔ̃ / twata ---- brʏidədɑ̃ / takɔmprinɔ̃",
-              "transl": {
-                "@value": "(XXXX) (attend) ah bon ah bon toi tu as (XXXX) bruit dedans tu as compris non",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 227772.7,
-          "end": 232525.7
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a018",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "41",
-              "content": "fo + pa:le / fo + pa:le",
-              "transl": {
-                "@value": "(il) faut parler (il) faut parler",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 226645.7,
-          "end": 229487.7
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a019",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "34",
-              "content": "- - -tɛ>tɛdʒau --- la:bla - - / - - - kwamɛm / twatyapri / tapri ---",
-              "transl": {
-                "@value": "(XXXXXXXXXXXXXX) quoi même toi tu as pris tu as pris (XXX)",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 232373.1,
-          "end": 241592.7
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a020",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "41",
-              "content": "----",
-              "transl": {
-                "@value": "(XXXX)",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 238985.1,
-          "end": 243641.5
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a021",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "34",
-              "content": "---",
-              "transl": {
-                "@value": "(XXXXXX)",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 244054,
-          "end": 249063.3
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a022",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "41",
-              "content": "- - - a-oko",
-              "transl": {
-                "@value": "(XXXXXX)",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 249122.2,
-          "end": 254131.5
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a023",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "34",
-              "content": "a- - ɛburkinabe / samty / - - - - labanɔ̃",
-              "transl": {
-                "@value": "(XX) est Burkinabé (ça me tue) (XXXX) là-bas non",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 254092.6,
-          "end": 259313.6
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a024",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "111",
-              "content": "mɛdnɑ̃ + safametɛɑ̃sɛ̃t / inapa + la:ʒɑ̃ / inapalaʒɑ̃ / mɛdnɑ̃ + il> + iladəmɑ̃nde / pa:tulaprikredi / epʏi + mɛdnɑ̃ / kɑ̃ / ilaparɑ̃mbu:se + mɛdnɑ̃ / iletɛmɔ: /",
-              "transl": {
-                "@value": "maintenant sa femme était enceinte il n'a pas (l', d') argent il n'a pas (l', d') argent maintenant il il a demandé partout il a pris (du) crédit et puis maintenant quand il a pas remboursé maintenant il était mort.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 230386.3,
-          "end": 244930.6
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a025",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "111",
-              "content": "sə>sə>s + tuspkəʃezø:kə + laprikredi / isɔ̃pa:tiʃelʏi / mɛdnɑ̃ / iladəmɑ̃ndeasafam / uɛtɔ̃mari / safamdi- + sɔ̃mariɛmɔ: / sɔ̃mariɛmɔ: / mɛdnɑ̃ / - - di / ivɔ̃prɑ̃n + tuskətedɑ̃mezɔ̃la / epʏi / kɑ̃izɔ̃pri / lanʏi / mɛdnɑ̃ + balafla + ɛsɔ̃ti / (*) /  - - ɛsɔ:ti /",
-              "transl": {
-                "@value": "tous ceux que [ʃ] tous ceux que chez eux il a pris crédit ils sont partis chez lui maintenant ils ont demandé à sa femme où est ton mari sa femme dit ton mari est mort son mari est mort maintenant (il) dit ils vont prendre tous qui était dans (la) maison-là et puis quand ils ont pris la nuit maintenant (la) balafre-là est sorti (*) (XX) est sorti",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 245079.8,
-          "end": 267455.7
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a026",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "111",
-              "content": "kɑ̃lɛsɔ:ti + lɛvənilabufeɑ̃soslɛri / mɛdnɑ̃ / ʃos / iletɛpa> / idəmɑ̃ndɛdɑ̃ - - / isamyzɛ / ilavylɛzɑ̃fɑ̃ / ʒeni / lafama + krie / mɛdnɑ̃ / lezamisɔ̃vəni / - - - (ʃɛ:ʃe) / ɛlavylɛzanimo / ɛlamɑ̃ʒe / ɛlavɑ̃ndy / ɛlɛdɪvɪni + riʃ / mɛdnɑ̃ / mɛdnɑ̃ / jaɛ̃kɔk / ɛlatrapeləkɔk /",
-              "transl": {
-                "@value": "quand il est sorti il est venu (l') a bouffé en sorcellerie maintenant chose il était pas le moment dans la nuit il dormait il s'amusait il a vu les enfants (génie) la femme a crié maintenant les amis sont venus chercher elle a vu les animaux elle a mangé elle a vendu elle est devenue riche maintenant maintenant il y a un coq le coq elle a attrapé le coq",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 267455.7,
-          "end": 301616.2
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a027",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "111",
-              "content": "/ mɛdnɑ̃ / ləkɔkafɛlɛzø / ʒikɑ̃: : : / lɛdɪvɪni: / ɛlɛdəvɪniʀiʃ / ɛlakɔ̃strʏilɛmezɔ̃: / mɛdnɑ̃ɛdi + ɛva> / ɛ:di / ɛ:di / ɛva / ɛ:di + ɛ:vakɔ̃> / ɛ:di + ɛ:va / ʃos: / kɔ̃strʏilɛmezɔ̃ / ɛlakɔ̃strʏi + mɛdnɑ̃ / ɛladi + ɛvamɑ̃jləkɔkla / ɛ:di / epʏikɑ̃lamɑ̃ʒe / epʏi:ləkɔkl> + ləkɔklaʃɑ̃ntɛ /",
-              "transl": {
-                "@value": "maintenant le coq a fait les oeufs (jusqu'en, pendant longtemps) il a devenu elle a devenu riche elle a construit (les, des) maisons maintenant elle dit elle va elle dit elle +dit elle va elle va (X) elle va elle dit elle va chose construire les maisons elle a construit maintenant elle dit elle va (manger) le coq-là elle dit et puis quand elle a mangé lui le coq euh le coq a chanté",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 301616.2,
-          "end": 328318.1
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a028",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "111",
-              "content": "/ epʏimɛ̃dnɑ̃ / ɛ>ɛ>ɛ:di + ta + rɛzɔ̃ / kɑ̃tɛpaɑ̃kɔmɑ̃ʒe / sity>kɑ̃tɛpaɑ̃kɔ: / kɑ̃tɛpaɑ̃kɔ:tye / tyʃɑ̃nt / mɛdnɑ̃ + ɛlatyeləkɔklaʃɑ̃ntɛ / mɛdnɑ̃ / mɛdnɑ̃ / mɛdnɑ̃lafam> + ləkɔkla + ʃɑ̃ntɛtuʒu: / mɛdnɑ̃ / kã + ɛdi>ɛ:di / kɑ̃ + tɛpaɑ̃kɔ:mɑ̃ʒe / ɛ>tyʃɑ̃nt / ɛ:di + tyarɛzɔ̃ /",
-              "transl": {
-                "@value": "et puis maintenant elle elle dit tu as raison quand tu es pas encore mangé (si tu) quand tu es pas encore quand tu as pas encore tué tu chantes maintenant elle a tué le coq il a chanté maintenant maintenant maintenant la femme le coq-là chantait toujours mantenant quand elle dit elle dit quand t'es pas encore mangé euh tu chantes elle dit tu as raison",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 328318.1,
-          "end": 354581.8
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a029",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "111",
-              "content": "mɛdnɑ̃ + lamɑ̃ʒeləkɔk + ləʃɑ̃nt> + (kɑ̃mɛm~kɔkla) / ɑʃɑ̃ntedɑ̃sɔ̃vɑ̃ntr / sɔ̃vɑ̃nlaɛvəni + gro: : / elapɔtedɑ̃ - - + epiɛlɛmɔ:t //",
-              "transl": {
-                "@value": "maintenant elle a mangé le coq le chante (le) coq a chanté dans son ventre son ventre là est venu gros et l'a porté dedans et puis elle est morte.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 354581.8,
-          "end": 362385.4
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a030",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "00",
-              "content": "dakɔr / nɔ̃atɑ̃ /la + sete (NOM) + sesa",
-              "transl": {
-                "@value": "d'accord. non attends là c'était (NOM) c'est ça.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 362385.4,
-          "end": 367844.4
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a031",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "43",
-              "content": "nɔ̃ / sɛɛ̃ + vwojɛa + nɔ̃",
-              "transl": {
-                "@value": "// non. c'est un voyeur non.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 368773.6,
-          "end": 371677.3
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a032",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "111",
-              "content": "isapɛ + (NOM) / ila - - + - - / isapɛ (XXX) --->",
-              "transl": {
-                "@value": "il s'appelle (NOM) il a (XXXX) il s'appelle (NOM) (XXX)",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 373293.6,
-          "end": 381768.5
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a033",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "35",
-              "content": "jəɛtəfrape / jəɛtəfrapeɛ̃",
-              "transl": {
-                "@value": "je vais te frapper je vais te frapper hein",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 379586.8,
-          "end": 382775.4
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a034",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "111",
-              "content": "ɑ - - rakɔnsɔnistwa:",
-              "transl": {
-                "@value": "alors (NOM) ton histoire",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 382369.6,
-          "end": 384886.8
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a035",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "35",
-              "content": "(*) / bɔ̃iletɛynfwa / jve>javɛɛ̃nanaŋgo / avɛkɛ̃luba: / i> / jvɛasɛkafrika + ləluba:lʏi + spɔ:tɛafrika / l>lanaŋgo / lʏi + sypɔ:tɛ / sypɔ:tɛ + lasɛk / mɛ̃tənɑ̃ / ləmatɕ>ləmatɕakɔmɑ̃>matɕakɔmɑ̃se / ɔ̃di + asɛkipa: + asɛkipa: / asɛkika: + ɔ̃papu ---  / by /",
-              "transl": {
-                "@value": "bon il était une fois il y avait un anango avec un loubard qui il y avait ASEC Africa le loubard lui supportait Africa l'anango lui supportait il supportait l'ASEC maintenant le match a (commencé) (le) match a commencé on dit (c'est) ASEC qui part ASEC qui part ASEC qui part ASEC qui quoi (XXXXX) but",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 384886.8,
-          "end": 410563.1
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a036",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "35",
-              "content": "/ lanaŋgoprɑ̃s> / lanaŋgoapɛl / ləluba:idi + (bɔra) / ləlubaidi + wi / idi / amɛntwa + isi / lə>ləlanaŋgomɛ + pa: (*) + dɑ̃laʒudanaŋgo> + lə>lə> + luba: / ləlubanədirjɛ̃ / ɔ̃di + anaŋ>asɛk + kipa: + asɛk + asɛk / pa:ləpulasɛk + pulasɛk + typulasɛk / b:ylasɛk /",
-              "transl": {
-                "@value": "l'anango prend [s] l'anango appelle le loubard il dit (voilà) le loubard il dit oui il dit mets ta joue ici le l'anango (la) met pan dans (la) joue de l'anango le loubard le loubard ne dit rien on dit (l'anango) ASEC qui part ASEC ASEC part le pour l'ASEC pour l'ASEC [tyy] pour l'ASEC but d'ASEC",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 410563.1,
-          "end": 426776
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a037",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "35",
-              "content": "afr>asɛ:> + anaŋgoapri / anaŋgoapri + ləluba:laʒifleləluba: + laʒifleləluba: / mɛ̃ntnɑ̃ / mitɑ̃ + ɔ̃dipɛ:- + mitɑ̃ / lanaŋgoa>ləluba:a(diskyt)syltɛrɛ̃ / ilapɛlɛ / kɔmɑ̃napɛlɔ: : / kɔmɑ̃napɛ + sɔ̃nɔ̃lamɛm / anaŋgo / nɔ̃lodkiʒualafrikala / ɔ: / ɔnapɛ:sɛ:ʃ / idi + lapɛdje:sɛ:ʒ /",
-              "transl": {
-                "@value": "(Africa) (ASEC) (l') anango a pris l'anango a pris le loubard (il) a giflé le loubard (il) a giflé le loubard maintenant mi-temps on dit [pee] mi-temps l'anango le loubard a descendu sur le terrain il appellait comment on appelle euh comment on appelle son nom même. anango. non l'autre qui joue à l'Africa-là (on) on (l') appelle Serge il dit (que) (il) appelle [djesɛʒ̼]",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 426776,
-          "end": 445254.4
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a038",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "35",
-              "content": "/ idi / djesɛ:ʒ / s>s>s> + si:təplɛkp>kp>kp: + fo:mmake + ɛ̃>ɛ̃>ɛ̃ + bysplmɑ̃pumwa / ʒ>ʒ>jøvøpa + bo>bo>bo:ku + jəve + ɛ̃ / sɛ:jladi + ilakɔ̃mpri / ɔ̃di / pɛ: + matɕɛrkɔ>kɔmɑ̃se / pu:lafrika + lab>labalpulafrika: + lafrikakipa: / lafrika / py: + lafrika /",
-              "transl": {
-                "@value": "il dit [djesɛʒ] s'il te plait que (il) faut marquer un but seulement pour moi je veux pas beaucoup je (en) veux un Serge (l', lui) dit il a compris on dit [pee] (le) match est re commencé pour l'Africa la balle pour l'Africa l'Africa part l'Africa but (pour) l'Africa",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 445254.4,
-          "end": 463591.2
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a039",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "35",
-              "content": "/ ləluba:di + vwala / lə(lub)adi / namu (*) / + ɔ̃di + aprɔʃtwa + - ʒyisi / ɛmi / u:wa (**) / larjɛ̃di / lasɛ>djɛsɛ:j + djɛsɛ:jkipa: / bydə + djesɛ:j + bɔ̃ / ləluba:di / bwarɛ + nam(u) / bwa: (**) / safɛ + dødø /",
-              "transl": {
-                "@value": "le loubard (a) dit voilà le loubard dit [namu] (*) on dit approche-toi (X) jusqu'ici (j'ai mis). ouah. il a rien dit là c'est [djesɛʒ̼] [djesɛʒ̼] qui part but de [djesɛʒ̼] bon le loubard a dit bouah (XX) bouah ça fait deux deux",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 463591.2,
-          "end": 478954.5
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a040",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "35",
-              "content": "/ idi + vwala + vwala + vwala / b:wa + kɑ̃lamila / lɛbalafla (*) / lɛtrɛtrɛ + kisɔ̃isiɑ̃ola (**) / lɛtrɛla / sɛmɔ̃nte + -a-e-ʒysla / akozdəla(trɛdɛ)sɔ̃arivela (***) /",
-              "transl": {
-                "@value": "il dit voilà voilà voilà bouah quand (il) a mis là les balafres là (*) il est traits traits qui sont ici en haut-là (**) les traits-là (il sait monter (XXXX) là à cause de la (XX) (ils) sont arrivés ici là",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 478954.5,
-          "end": 490140.7
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a041",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "35",
-              "content": "/ mɛdnɑ̃ / uaf>uafrika + (makako) + lanaŋgolafraja + ilafʏi / mɛ̃nɑ̃jaɛ̃ / jaɛ̃kɔmɑ̃napɛlp: / nɔ̃ / kɔmɑ̃napɛlɛ: / lezotlasɔ̃kwa + ɔ: : / lɛzanji / jaɛ̃nanji + kiavisɛpase / idike + lʏivagifləluba:la / lanjila + lʏospɔtlasɛktuʒu: / mɛ̃dnɑ̃ / lanji / lanji + lʏilɛpa:ti / jyka: + asɛkama:keœ̃ʃ- + ləluba: /",
-              "transl": {
-                "@value": "maintenant ou Africa [macaco] l'anango (il) a (fraja, fugué) il a fui maintenant il y (en) a un comment on appelle euh non comment on appelle les autres-là sont quoi. euh les anyi il y a un anyi qui a vu (ce qui) s'est passé il dit que lui il va gifler (le) loubard-là l'anyi-là lui (aussi) supporte l'ASEC toujours maintenant l'anyi l'anyi lui il est parti (jusqu'à, un moment) ASEC à marqué dans (la) joue (de, du) loubard",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 490140.7,
-          "end": 516902.6
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a042",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "35",
-              "content": "/ kɑ̃afrika + ama:ketrwaby / lanjiafʏi / narjɛ̃di + ləluba:narjɛ̃di / ləluba:dikɛ + silʏitruv + tulezanjikɛ + tuvaleʒifle / mɛnɑ̃ / (mɛ)nɑ̃lɛpa:ti / nɑ̃lavisɔnami / idi + mɔnami + jaɛ̃>jaɛ̃jɑ̃ɛ̃ / kɔmɑ̃napɛl / jaɛ̃nanji + kimaʒiflela / epʏilafʏi / pu:lɛzatrape + - - - / idibɔ̃ / tyvwa + uɛga:dʒawalela / tyɛla /",
-              "transl": {
-                "@value": "quand (l') Africa a marqué trois buts l'anyi a fui (il) n'a rien dit le loubard n'a rien dit le loubard dit que si lui trouve tous les anyi que tous (il) va les gifler maintenant maintenant il est parti maintenant (il) a vu son ami il dit mon ami il y (en) a un comment on appelle un anyi qui m'a giflé là et puis il a fui pour les attraper il dit bon tu vois où est (le) gardien (XXXX) tué là",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 516902.6,
-          "end": 537372.2
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a043",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "35",
-              "content": "/ idi / jamo:j / jamo:j / jəvɛtujudi: + ja: : / kɑ̃isɔ̃arive / isɔ̃arive + jausɛgare + vulɛvolɛ dɛbanjila / ulɛvolɛ:dəbanjila + sɔ̃arive (*) / isɔ̃vəni / isɔ̃vəni + - - ʒueawaleawale / idi /",
-              "transl": {
-                "@value": "il dit il y a (X) il y a (X)  je vais toujours dire il ah quand ils sont arrivés ils sont arrivés il y a où s'est garé (voulait voler) de bangui-là où les voleurs de bangui-là sont arrivés (*) ils sont venus ils sont venus jouer awalé awalé il dit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 537372.2,
-          "end": 557085.2
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a044",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "34",
-              "content": "(*) / kitlamɛm (**) / (***)",
-              "transl": {
-                "@value": "(*) quitte-là même (**) (***)",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 557085.2,
-          "end": 559833.1
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a045",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "44",
-              "content": "kɔntiny + kɔntiny / - - mɛdnɑ̃ / kɔntiny",
-              "transl": {
-                "@value": "continue continue (XX) maintenant continue",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 570187.4,
-          "end": 573453
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a046",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "35",
-              "content": "(*) / mɛdnɑ̃ / mɛdnɑ̃ + isɔ̃ale / lɛrive + ulɛgazetɛ(trɛ̃d)jueawale / ladi / jamoj + jamoj / (**) jalɛdjula: / bete: / (***) bete / djula / (****) / - - osi / ta:pløre /",
-              "transl": {
-                "@value": "(*) maintenant + maintenant ils sont allés il est arrivé où le gars était en train (de) jouer awalé (il, il lui) il y a (X) il y a (X) (**) il y a les dioula bété (***) bété dioula (****). (XX) aussi tu vas pleurer.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 573453,
-          "end": 588546.4
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a047",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "35",
-              "content": "/ akodəmaʒ-nu-ɛ (*) // mɛ̃nɑ̃ + kɑ̃ladi + jamo> + jalɛgere / jalɛguro: / lɛjakuba / tutɛmelaŋje / kɑ̃ladi + jamo(j) + jamo(j) / ø(tusɔ̃)di / ja: + a + jakwa + ʒ:ifle(ʒve) / pɑ̃ + lɛʃjɛ̃ / vuzɛ(tsi) / -- kuʃe + pɑ̃ + pɑ̃ / sɛfini //",
-              "transl": {
-                "@value": "à cause de mon genou (*) maintenant quand (il, il lui) a dit il y a (X) il y a les guéré il y a les gouro les jacouba tout est mélangé quand (il, il lui) a dit il y a (X) il y a (X) eux tous ont dit il y a quoi. gifler (je vais) pan le chien vous êtes ici (XX) couché pan pan c'est fini.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 588546.4,
-          "end": 609244.1
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a048",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "33",
-              "content": "// tɛlmɑ̃fɛ̃fɛ̃ / setɛovilaʒ / mɛdnɑ̃ + ipasɛ / dɑ̃lɛʃɑ̃dəmaɲɔk / mɛdnɑ̃ + ilɛvənidɑ̃kwɛ̃ / dɑ̃ʀa(sĩ)dɛ + maɲɔk / mɛdnɑ̃ + idi / ai / kimakɔɲe / idisɛ + mwa / idi + sɛmwa / idisɛm>iladej>adisɛ + m:wa / mɛdnɑ̃di + arɛɲe / tyafɛ̃ / idi + wiwi / bokudəmɑ̃ʒeɛsɔtis> / bokudəmɑ̃ʒeɛsɔ:ti / lɛ>lɛ + (i)latumɑ̃ʒe /",
-              "transl": {
-                "@value": "tellement faim faim c'était au village maintenant il passait dans les champs de manioc maintenant il est venu (cogner) (une) racine de manioc il dit aïe qui m'a cogné il dit c'est moi il dit c'est moi (il a déjà dit) c'est moi maintenant (il) dit araignée tu as faim il dit oui oui beaucoup de manger est sorti beaucoup de manger est sorti le (il) a tout mangé.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 610988.3,
-          "end": 645174.4
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a049",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "33",
-              "content": "/ mɛdnɑ̃ / isɛavɑ̃se + dɪvɑ̃dɪvɑ̃dɪvɑ̃ / (i)lavi / ɛ̃baʀigdə + m:jɛl / mɛdnɑ̃ / ləpətisuləgudrɔ̃ / ila / kʀøzeɛ̃tʀu / metənɑ̃ + ila(mi~mjɛl)dədɑ̃ / tuʒu: / kɑ̃ikitovilaʒ / kɑ̃ivjɛ̃ / kɑ̃laswaf / ivjɛ̃ / i(vaprɑ̃n) / m:m:m (*) / epʏi + ibwa / isɑ̃va /",
-              "transl": {
-                "@value": "maintenant il s'est avancé devant devant devant (il) a vu (un, une) barrique de miel maintenant le petit se soulait (dans le) goudron il a creusé un trou maintenant il a mis (le) miel dedans toujours quand il (quitte, part) (au) village quand il vient quand il a soif il vient il va prendre mh (*) et puis il boit il s'en va",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 645584.8,
-          "end": 666612
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a050",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "33",
-              "content": "/ kɑ̃ivɛ̃ + kɑ̃laswaf + ibwa / m:m:m / kɑ̃: : + sɛfini / ipa:tɛɑ̃kɔ:la + kɔɲe / ila + kɔɲeɑ̃kɔ: / ilakɔɲeɑ̃kɔ: + dɑ̃rasindəmaɲɔk / idi / ai / kimakɔɲe / idi + sɛm:wa / ɛ̃kɛtyafɛ̃ / idi + wi / bokudəmjɛl + sɔ:tɛɑ̃kɔ:sylʏi / ilamɑ̃ʒe + tu / mɛdnɑ̃ + idi / mɛdnɑ̃ / i:idi / mɛdnɑ̃ + idi / i>i + iʃoz /",
-              "transl": {
-                "@value": "quand il vient quand il a soif il boit mh quand c'est fini il partait encore (là, il a) cogné il a cogné encore il a cogné encore dans (la) racine de manioc il dit aïe qui m'a cogné il dit c'est moi hein que tu as faim il dit oui beaucoup de miel sortait encore sur lui il a mangé tout maintenant il dit maintenant il dit maintenant il dit [i] chose",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 666612,
-          "end": 697674.9
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a051",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "33",
-              "content": "/ ila>lavy + ɛ̃baʀidəmjɛl / jal>ɛfɛpaɛspʀɛ / lafɛpaɛspʀɛ / ilakɔɲe / ɛ̃ʀasidəmaɲɔkɑ̃kɔ: / bokudəmɑ̃ʒeɛsɔ:ti / ilatumɑ̃ʒe + ilapry / ləmjɛl / lavyɛ̃mjɛlɑ̃kɔ: + laprypwalealamezɔ̃ / tu: + safɑmiavɛswaf / tusafamavɛswaf / mɛdnɑ̃isəkaʃ + epʏi:bwa /",
-              "transl": {
-                "@value": "il a vu (un, une) barrique de miel il y a (elle, il) fait pas exprès (elle, il) fait pas exprès il a cogné (un, une) racine de manioc encore beaucoup de manger est sorti il a tout mangé il a pris le miel il a vu un miel encore il a pris pour aller à la maison (tout, toute) sa (famille) avait soif (tout, toute) sa famille ils avaient soif maintenant il se cache et puis (il) boit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 697674.9,
-          "end": 722365.9
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a052",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "33",
-              "content": "/ idikp + nɔ̃ + sasɛrjɛ̃ / kɛ + isamys / ʒykɑ̃: : : / jalɛsɛ̃n>alɛsɛ̃napadəbu / ilalɛɑ̃kɔ:oʃɑ̃ / mɛdnɑ̃ / sɔ̃pətifrɛ + aʀɛɲe + sɔ̃pətifrɛ: / lɛvəni + latuby / latubyləmjɛl / mɛdnɑ̃ / (djɛ)kʀaze>laekʀazepimɑ̃ / boku + lamidɑ̃labaʀik / lami + lola + (kulekule~tunetune) / mɛdnɑ̃ / (ja)aʀɛɲe /",
-              "transl": {
-                "@value": "il dit que non ça c'est rien que il s'amuse (jusqu'en, pendent longtemps) il a laissé il a laissé n'a pas bu il allait encore au champs maintenant son petit frère araignée son petit frère (il) est venu il a tout bu il a tout bu le miel maintenant (de) écraser il a écrasé (du) piment beaucoup il (l') a mis dans la barrique il a mis l'eau-là (coulait, tournait) maintenant il y a (l') araignée-là",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 722365.9,
-          "end": 748809.2
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a053",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "33",
-              "content": "/ lɛ>kɑ̃lɛ -a -o la + - - - + - - - / ilavɛswaf / ikuʀɛkuʀɛ + ʀəvəni: / mɛdnɑ̃ + kɑ̃laby / ila>laʒ:əte / ph: (*) / dikɛ + nɔ̃ + sɛpabɔ̃ / jaləpətipʀɑ̃laɑ̃kɔ: + laby / di + nɔ̃ + sɛpimɑ̃ / mɛ̃tənɑ̃ / lʏikjafɛsa + mɛ̃tənɑ̃ + ilafɛpaɛspɛ + lʏimɛm + ilɛvəni /",
-              "transl": {
-                "@value": "quand il est (XXXXXXXXX) il avait soif il courait courait (revenir, revenu) maintenant quand il a bu il a jeté pff (*) (il) dit que non c'est pas bon il y a le petit (il) prend là encore il a bu il dit non c'est (du) piment maintenant lui qui a fait ça maintenant il a fait pas exprès lui-même il est venu",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 748809.2,
-          "end": 766889.4
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a054",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "33",
-              "content": "/ ph: (*) / ilaʒəte / mɛdnɑ̃ / idsa> + idi>ɛ> / idisɛ: / idi + sɛ>sɛpabɔ̃ + kəsɛpimɑ̃ / mɛdnɑ̃ + ilɛpa:tioʃɑ̃ / lafɛpaɛsprɛ / ilakɔɲe / ɛ̃ʀasindɛ>ɛ̃>ɛ / də> / ɛ̃ / lakɔɲelaʀasindəmaɲɔkɑ̃kɔ: / maɲɔkladəmãnde / tyafɛ / idi + wiwi / kɛlafɛ /",
-              "transl": {
-                "@value": "pff (*) il a jeté maintenant il dit ça il dit ah il dit c'est il dit c'est pas bon que c'est (du) piment maintenant il est parti au champs il a fait pas exprès il a cogné (un, une) racine de un il a cogné la racine de manioc encore manioc (l', lui) a demandé tu as faim il dit oui oui que il a faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 766908.2,
-          "end": 790404.5
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a055",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "33",
-              "content": "/ mɛ̃dnɑ̃ / ɛ̃ / ɛ̃ / ləmaɲɔklamɛ̃nɑ̃ / izɔ̃pryʃikɔt / (ɛtuʒu:)ɔ̃pryʃikɔt / mɛdnɑ̃ / javɛlɛmaɲɔkkɔmsa / javɛləmaɲɔk / maɲɔk / maɲɔk / maɲɔk / maɲɔkisi + maɲɔkisi + maɲɔkisi (*) / mɛdnɑ̃ / arɛɲelɛvəni + letɛla (**) /",
-              "transl": {
-                "@value": "maintenant euh le manioc là maintenant ils ont pris (une) chicotte (est toujours) (ils) ont pris (une) chicotte maintenant il y avait (les, le) manioc comme ça il y avait le manioc manioc manioc manioc ici manioc ici manioc ici maintenant (l') araignée il était là (**)",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 790404.5,
-          "end": 809520.1
-        },
-        {
-          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a056",
-          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": "33",
-              "content": "/ mɛdnɑ̃ + ladi / jɛfɛ̃ / mɛdnɑ̃ + lɔ̃tuʒu: - - ʃikɔt / ɔ̃kmɑ̃sela / ʃikote + ʃikote + ʃikote / wala / zɔ̃ʃikote + ʒyskɑ̃: : : / ʃikote + ʃikote / mɛdnɑ̃ / laf:ʏi / lɛpa:ti /  (sakɔ̃:saeble) / lakɔ̃(mɑ̃)selaʀɛɲemɛdnɑ̃ / kɑ̃ / kɑ̃tivjɛ̃ / imɔ̃(t)syləmy: / kɑ̃ntivølɛtye + imɔ̃sylɛmy / sɛtu //",
-              "transl": {
-                "@value": "maintenant (il, il lui) a dit j'ai faim maintenant (ils, ils l') ont toujours (la) chicotte (ils) ont commencé là chicotter chicotter chicotter voilà ils ont chicotté (jusqu'en, pendant longtemps) chicotter chicotter maintenant il a fui il est parti ça comme ça (XX) il a commencé l'araignée maintenant quand il vient il monte sur le mur quand il veut le tuer il monte sur le mur c'est tout.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 809520.1,
-          "end": 835326.3
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-FSL-CUC023_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:52+00:00",
-        "dc:modified": "2016-06-01T23:47:52+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "Corpus LS-Colin sur plusieurs genres discursifs (Josette Bouchauveau et Henri Attia)"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/cuxac/CUC023_low.mp4",
-          "meta": {
-            "dc:duration": 1628000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "Corpus LS-Colin sur plusieurs genres discursifs (Josette Bouchauveau et Henri Attia)"
-            },
-            "dc:format": "video/mp4",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/cuxac/masters/CUC023.mp4",
-          "meta": {
-            "dc:duration": 1628000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "Corpus LS-Colin sur plusieurs genres discursifs (Josette Bouchauveau et Henri Attia)"
-            },
-            "dc:format": "video/mp4",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/cuxac/CUC023_low.ogg",
-          "meta": {
-            "dc:duration": 1628000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "Corpus LS-Colin sur plusieurs genres discursifs (Josette Bouchauveau et Henri Attia)"
-            },
-            "dc:format": "video/ogg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a001",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 2290
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a002",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": " C'est l'histoire d'un cheval. Dans la campagne, sur une étendue vallonnée, il y a de l'herbe verte partout.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 2290,
-          "end": 11670
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a003",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Un cheval galope, il est content de galoper. Soudain, il s'arrête, surpris.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 11670,
-          "end": 16150
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a004",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Il aperçoit une vache qui le regarde : « Tiens, voilà, une vache qui est là, elle rumine ! » se dit-il.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 16150,
-          "end": 20510
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a005",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "\"Oh! J'ai bien envie de la rejoindre!\" se dit le cheval. Il galope pour prendre de l'élan, saute, mais s'emmêle les jambes. La vache s'en approche et le regarde.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 20510,
-          "end": 30480
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a006",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Puis elle regarde vers le haut: c'est l'oiseau qui revient avec une trousse à pharmacie et la dépose par terre.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 30480,
-          "end": 35990
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a007",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "La vache s'approche, saisit quelque chose (une bande) et l'enroule autour de la jambe du cheval, qui se laisse faire. Il se remet debout, tout content de pouvoir marcher. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 35990,
-          "end": 43670
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a008",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Et tous les trois sont contents/ils s'entendent bien. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 43670,
-          "end": 47260
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a009",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 47260,
-          "end": 50150
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a010",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Ça y est..  ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 50150,
-          "end": 52160
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a011",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "La deuxième histoire: \"Les Oiseaux\". ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 52160,
-          "end": 55570
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a012",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Oh là là ! ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 55570,
-          "end": 57050
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a013",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "A la campagne, dans un jardin à la surface bosselée, il y a un arbre. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 57050,
-          "end": 61950
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a014",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Sur une branche fine et ondulée de l'arbre, il y a un nid d'oiseau. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 61950,
-          "end": 67840
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a015",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "L'oiseau s'approche du nid, regarde dedans, il y ses oisillons.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 67840,
-          "end": 70710
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a016",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "L'oiseau est perché sur le nid. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 70710,
-          "end": 71470
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a017",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Un chat s'approche, la queue en l'air, et regarde vers le nid. Il pense: \"J'ai envie de manger les oisillons…\" ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 71470,
-          "end": 78310
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a018",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Puis il voit la mère oiseau qui s'en va. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 78310,
-          "end": 80270
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a019",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Il se demande : \"Ouh...Comment je vais atteindre la branche?\" Il réfléchit, s'approche de l'arbre et grimpe.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 80270,
-          "end": 85950
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a020",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Le chien s'approche et attrape la queue du chat; celui-ci s'agrippe à l'arbre tant qu'il peut mais lâcle prise, tombe par terre et s'enfuit. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 85950,
-          "end": 90790
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a021",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Le chien le poursuit. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 90790,
-          "end": 93160
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a022",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "L'oiseau arrive, avec un ver de terre et donne la becquée à ses oisillons. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 93160,
-          "end": 97290
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a023",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Les oisillons gobent le ver. Et voilà! ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 97290,
-          "end": 99550
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a024",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 99550,
-          "end": 398879
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a025",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Maintenant, je vais vous expliquer une recette de cuisine, j'en choisis une qui vient de mon pays natal. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 398879,
-          "end": 409239
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a026",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Ma grand mère cuisinait et je la regardais, c'est une véritable tradition familliale, une spécialité typique d'une région: l'Allier. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 409239,
-          "end": 423319
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a027",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "C'est du paté Boubonnais. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 423319,
-          "end": 433479
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a028",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "En fait, c'est pas du paté, c'est rond et épais : une tourte, voilà. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 433479,
-          "end": 440159
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a029",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "dans ce plat, il y a des pommes de terre. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 440159,
-          "end": 442079
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a030",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Comment faire ? Donc, on prend de la pâte brisée.              On peut l'acheter toute faite déjà enroulée, on ouvre et elle se déroule très vite.  ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 442079,
-          "end": 454359
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a031",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "c'était la première chose, deuxièmement, on peut la faire avec de la farine, on forme un puit  ...et on y verse de l'eau ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 454359,
-          "end": 460879
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a032",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "on mélange, puis on fait fondre le beurre avec un peu d'eau , du sel et on verse le tout dans la pâte. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 460879,
-          "end": 468359
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a033",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "on mélange avec les mains,  puis on forme une boule qu'on laisse reposer environ 1/2 heure. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 468359,
-          "end": 475559
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a034",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "voilà, ou bien on  achète  tout fait , c'est bien et c'est bon. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 475559,
-          "end": 481159
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a035",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "L'autre pâte, faite à la main, a un meilleur goût mais on peut la rater... ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 481159,
-          "end": 485519
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a036",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Elle peut être trop liquide, tandis que l'autre pâte c'est plus facile, il suffit de l'acheter. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 485519,
-          "end": 488239
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a037",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Alors, on pose la pâte sur le plat et on l'aplatit. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 488239,
-          "end": 492439
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a038",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "L'autre pâte, il faut l'étaler au rouleau, la mettre bien à plat et la laisser. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 492439,
-          "end": 495829
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a039",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "On prend des pommes de terre de belle grosseur, quelques unes ou plusieurs, environ un kilo, peu importe, une certaine quantité. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 495829,
-          "end": 501959
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a040",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "On épluche les pommes de terre, on les lave, puis les sécher avec une serviette. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 501959,
-          "end": 506999
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a041",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Lorqu'elles sont sèches, on les coupe en fines tranches et on les met sur la pâte, on répartit bien et on sale un peu.  ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 506999,
-          "end": 514389
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a042",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "On remet une couche de tranches de pommes de terre, on étale bien puis on sale, et ainsi de suite jusq'à bien remplir le plat. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 514389,
-          "end": 520599
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a043",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "on prend une deuxième pâte qu'on met par dessus les pommes de terre et on ourle les bords. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 520599,
-          "end": 525529
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a044",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "on fait le tour du plat en ourlant, il ne faut pas oublier les œufs. On sépare le blanc du jaune et on jette le blanc. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 525529,
-          "end": 532639
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a045",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "On bat le jaune d'œuf, puis on l'étale sur la pâte, à la main ou avec un pinceau. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 532639,
-          "end": 536359
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a046",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "lorque c'est bien étalé, on met dans le four. Mais avant le four doit être chaud. Environ 10 min à préchauffer, ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 536359,
-          "end": 542679
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a047",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "on enfourne le plat et on met le minuteur sur 30 min environ. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 542679,
-          "end": 546679
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a048",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Le thermostat du four doit être à peu près à 7, …7 c'est environ 180 à 200 degrés. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 546679,
-          "end": 552989
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a049",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Le four chauffe, et lorsqu'on aperçoit, tout dépend du temps, parfois c'est rapide ou lent, on aperçoit la pâte dorée, ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 552989,
-          "end": 559509
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a050",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "lègèrement marron sur le dessus de la tarte, c'est parfait ! On sort le plat. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 559509,
-          "end": 564399
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a051",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Il faut attendre pour découper la pâte. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 564399,
-          "end": 568839
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a052",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "La pâte de dessus, comme un couvercle, avec un couteau, on découpe tout autour",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 568839,
-          "end": 574029
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a053",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "On enlève la pâte et on la pose à côté, et on verse un bon pot de crème fraîche. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 574029,
-          "end": 580599
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a054",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "on l'étale , puis il faut remettre la croûte sur la crème fraîche, et en plus couvrir avec un torchon pour bien garder au chaud. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 580599,
-          "end": 591559
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a055",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "On attend que la crème se diffuse, les pommes de terre… ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 591559,
-          "end": 595559
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a056",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "la crème passe à travers les couches de pommes de terre, puis forme une couche de crème au fond. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 595559,
-          "end": 598959
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a057",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Ceci pendant environ 1/2 heure. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 598959,
-          "end": 602999
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a058",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Ensuite, on porte le plat, on coupe les tranches avec un couteau. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 602999,
-          "end": 608359
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a059",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "La famille ou des amis, sont tous autour à regarder avec gourmandise. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 608359,
-          "end": 611999
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a060",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Cela sort de l'ordinaire, c'est original ! ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 611999,
-          "end": 614359
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a061",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Je leur dis qu'ils vont aimer, c'est facile d'être tenté d'en manger!",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 614359,
-          "end": 620159
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a062",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "On sert des tranches, ils mangent :\"Qu'est-ce que c'est bon!\", ça fond dans la bouche et fait saliver, on en rêve. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 620159,
-          "end": 625389
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a063",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 625389,
-          "end": 625396
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a064",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Ce plat est soit une entrée, soit il se mange avec un rôti, ou bien avec une salade. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 625396,
-          "end": 632316
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a065",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Pas la peine d'ajouter des légumes, ce plat fait office de légume.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 632316,
-          "end": 633996
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a066",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Voilà. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 633996,
-          "end": 634526
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a067",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 634526,
-          "end": 782179
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a068",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "C'est l'histoire d'un cheval.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 782179,
-          "end": 785959
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a069",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Dans un champ vallonné, il y a un cheval qui s'approche d'une barrière et dit: \"bonjour \"",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 785959,
-          "end": 792599
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a070",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "de l'autre côté , la vache répond : \"bonjour\". Sur la barrière, un oiseau est perché. Le cheval avance et dit :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 792599,
-          "end": 797879
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a071",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "\"je veux jouer avec toi\" , la vache répond : \"c'est impossible, la barrière",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 797879,
-          "end": 800919
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a072",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "nous sépare\" \"moi je peux sauter\" dit le cheval. La vache : \"Attention, c'est dangereux\". Le cheval reprend : ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 800919,
-          "end": 806519
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a073",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "\"Attends!\" , il recule, galope, la barrière se rapproche, il saute, mais heurte maladroitement la barrière, ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 806519,
-          "end": 812009
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a074",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "tombe et se blesse. La vache :\" Ben voilà ! Je te l'avais dit de faire attention, c'est dangereux. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 812009,
-          "end": 815599
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a075",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "\"Voilà, je te l'avais bien dit!\". \"Hey, l'oiseau, va chercher (ce qu'il faut)!\" L'oiseau répond: \"Oui\" et il s'envole, saisis quelque chose et revient",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 815599,
-          "end": 820029
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a076",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "là dedans, il y a une boite à pharmacie, et la dépose. La vache saisis une bande avec sa bouche, ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 820029,
-          "end": 824399
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a077",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "et le cheval tend sa jambe, la vache le soigne en enroulant la bande. Et voilà ! ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 824399,
-          "end": 831519
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a078",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 831519,
-          "end": 833929
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a079",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Le deuxième thème est celui des oiseaux. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 833929,
-          "end": 838229
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a080",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Sur le tronc d'un arbre, il y a une branche avec un nid. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 838229,
-          "end": 841839
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a081",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Dans le nid, il y a un oiseau. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 841839,
-          "end": 843119
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a082",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Et là, dans le nid, il y a des bébés oiseaux. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 843119,
-          "end": 845279
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a083",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "L'oiseau sent qu'il a faim, il faut nourrir les petits. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 845279,
-          "end": 848399
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a084",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "L'oiseau part chercher des vers de terre et prend son envol et s'en va. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 848399,
-          "end": 851549
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a085",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Un chat s'approche de l'arbre, il a envie de manger ces bébés qui sont là haut . ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 851549,
-          "end": 855119
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a086",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Il avance et grimpe à l'arbre. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 855119,
-          "end": 857759
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a087",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Un autre (animal), un chien l'aperçoit et s'avance pour attraper la queue du chat qui grimpe. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 857759,
-          "end": 863159
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a088",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Sa queue pendouille, le chien saisit la queue du chat qui s'agrippe à l'arbre mais il lâche prise et tombe. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 863159,
-          "end": 868859
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a089",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Le chien et le chat s'enfuient. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 868859,
-          "end": 871709
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a090",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "L'oiseau revient avec des ver dans le bec et, sans se rendre compte de ce qui s'est passé, donne la becquée aux oisillons. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 871709,
-          "end": 878359
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a091",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 878359,
-          "end": 987409
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a092",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Maintenant, le thème de la cuisine. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 987409,
-          "end": 991599
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a093",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "D'abord, il s'agit d'une recette avec des pommes de terre. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 991599,
-          "end": 995959
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a094",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "En premier, on prend des pommes de terre de belle grosseur, comme ça, puis on les râpe. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 995959,
-          "end": 1000879
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a095",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Les pommes de terre sont râpées. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1000879,
-          "end": 1005119
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a096",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Ensuite on met la râpe de côté. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1005119,
-          "end": 1006479
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a097",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "On râpe deux pommes de terre, c'est tout, puis on les met de côté. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1006479,
-          "end": 1008669
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a098",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Deuxièmement, on prend un oignon assez gros et on le râpe. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1008669,
-          "end": 1013399
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a099",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "De même, les oignons sont râpés. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1013399,
-          "end": 1016599
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a100",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "On ajoute de l'ail, qu'on râpe aussi. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1016599,
-          "end": 1021719
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a101",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "On mélange le tout dans un saladier. Dedans, il y a donc les pommes de terre, l'oignon et l'ail. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1021719,
-          "end": 1025879
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a102",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "On mélange. Moi, j'ajoute deux cuillères à soupe de farine, ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1025879,
-          "end": 1033839
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a103",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Ensuite, on verse un peu d'huile. On malaxe bien, on mélange tout. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1033839,
-          "end": 1039109
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a104",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Il y a aussi un œuf à casser et à jeter dans le mélange. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1039109,
-          "end": 1042469
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a105",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Malaxer et mélanger. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1042469,
-          "end": 1045159
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a106",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Dans une casserole… ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1045159,
-          "end": 1046839
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a107",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "une poëlle moyenne, ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1046839,
-          "end": 1047439
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a108",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "la poser sur le gaz, y verser de l'huile. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1047439,
-          "end": 1051119
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a109",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Chauffer et lorsque c'est bien chaud, je fais une galette et ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1051119,
-          "end": 1052349
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a110",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "je la dépose dans la poëlle. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1052349,
-          "end": 1054759
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a111",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Elle frit, lorsque c' est bien cuit, secouer un peu la poëlle. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1054759,
-          "end": 1057439
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a112",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Le mélange devient marron et un peu dur. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1057439,
-          "end": 1059359
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a113",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Prendre la galette et la mettre à côté. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1059359,
-          "end": 1060719
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a114",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Ah! C'est délicieux à manger!...",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1060719,
-          "end": 1062679
-        },
-        {
-          "id": "11280.100/crdo-FSL-CUC023_SOUND_a115",
-          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "transl": {
-                "@value": "Voilà. ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1062679,
-          "end": 1063079
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:52+00:00",
-        "dc:modified": "2016-06-01T23:47:52+00:00",
-        "dc:title": {
-          "@language": "en",
-          "@value": "Kijin i khîââk ma ko-ak."
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/145138_KHIAAK_KO_AK_22km.wav",
-          "meta": {
-            "dc:duration": 90000,
-            "dc:title": {
-              "@language": "en",
-              "@value": "Kijin i khîââk ma ko-ak."
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/145138.wav",
-          "meta": {
-            "dc:duration": 90000,
-            "dc:title": {
-              "@language": "en",
-              "@value": "Kijin i khîââk ma ko-ak."
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/145138_KHIAAK_KO_AK_44k.mp3",
-          "meta": {
-            "dc:duration": 90000,
-            "dc:title": {
-              "@language": "en",
-              "@value": "Kijin i khîââk ma ko-ak."
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a001",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Vhajama nai khîââk ma ko-ak.",
-              "transl": {
-                "@value": "Conte de la poule sultane et du coq.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 1824,
-          "end": 6004
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a002",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ni naxâât pwagiik xe hli thu gaan khîââk ma ko-ak.",
-              "transl": {
-                "@value": "Un jour, tous deux coloriaient, la poule sultane et le coq.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 6004,
-          "end": 13474
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a003",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "I khabwe a khîââk shi ko-ak khabwe: \"êna xe co taabwa me na diya gââlâ-m\".",
-              "transl": {
-                "@value": "La poule sultane dit au coq: \"maintenant assieds-toi pour que je te colorie\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 13474,
-          "end": 20284
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a004",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "I taabwa axaleny ko-ak ma i u thu gââlâ-n a axaleny khîââk,",
-              "transl": {
-                "@value": "Le coq s'assoit pour que la poule sultane le colorie ;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 20284,
-          "end": 26544
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a005",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "thu gaan khîââk me i na roven yayamewu gaan bwe axaleny ko.",
-              "transl": {
-                "@value": "la poule sultane colorie et met toutes sortes de couleurs sur le coq.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 26544,
-          "end": 32154
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a006",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mon le dua i toven na i khabwe a ko-ak khabwe: \"êna xe mwaa co. Co mwaa taabwa me na diya gââlâ-m\".",
-              "transl": {
-                "@value": "Après, quand elle a fini, le coq dit \"maintenant à ton tour, à ton tour de t'asseoir pour que je te colorie\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 32154,
-          "end": 40934
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a007",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Na i taabwa axaleny khîââk me i thu gââlâ-n a ko.",
-              "transl": {
-                "@value": "La poule sultane s'assoit pour que le coq la colorie.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 40934,
-          "end": 46984
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a008",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Kia fo i diya axaleny ko, i xam tii axaleny me i xau dadan, dadan xûûlî fagau-n na pwâ ulo bwaa-n.",
-              "transl": {
-                "@value": "Ce coq ne s'en fait pas, lui par contre la barbouille et son corps est entièrement noir avec un peu de rouge sur la tête.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 46984,
-          "end": 53954
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a009",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Na i khabwe shi khîââk khabwe: \"Xu toven. Ena xe co tu bwaxexet me yo axe hâlûû-m na ni gelac.\"",
-              "transl": {
-                "@value": "Alors il dit à la poule sultane: \"C'est fini. Maintenant, va au miroir pour voir ton image dans la glace.\"",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 53954,
-          "end": 60984
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a010",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "I khabwe a khîââk khabwe: \"elo\".",
-              "transl": {
-                "@value": "La poule sultane dit \"oui\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 60984,
-          "end": 67024
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a011",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "I tu khîââk xa bwaxexet.",
-              "transl": {
-                "@value": "La poule sultane va se regarder.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 67024,
-          "end": 68564
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a012",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "I u axe xe mwang hlaleny i diya a ko na bwe-n na i u tîlîxââc me i thodavi ko khabwe:",
-              "transl": {
-                "@value": "Elle voit la laideur de ce que le coq a fait sur elle, elle se met en colère et maudit le coq disant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 68564,
-          "end": 76364
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a013",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "\"Thaxapuxet êna ni taan hleny xe co ko xe co khuwo bwa ja, na na xe e (=io) na khuwo habuxi hlaabai aayo.",
-              "transl": {
-                "@value": "\"A partir de maintenant, de ce jour, toi le coq, tu mangeras sur les détritus, mais moi, je mangerai avant les chefs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 76364,
-          "end": 85916
-        },
-        {
-          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a014",
-          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Toven.",
-              "transl": {
-                "@value": "Fin.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 85916,
-          "end": 87456
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-ESLO1_ENT_047",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:53+00:00",
-        "dc:modified": "2016-06-01T23:47:53+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ESLO1: entretien 047"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/eslo/ESLO1_ENT_047.mp3",
-          "meta": {
-            "dc:duration": 3779000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ESLO1: entretien 047"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/eslo/masters/ESLO1_ENT_047.wav",
-          "meta": {
-            "dc:duration": 3779000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ESLO1: entretien 047"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/eslo/ESLO1_ENT_047_22km.wav",
-          "meta": {
-            "dc:duration": 3779000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ESLO1: entretien 047"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [
-        {
-          "id": "topics",
-          "content": {
-            "mimetype": "application/json",
-            "data": [
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc001",
-                "desc": "QP1"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc002",
-                "desc": "QP3"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc003",
-                "desc": "QP4"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc004",
-                "desc": "T1"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc005",
-                "desc": "T2"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc006",
-                "desc": "T3"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc007",
-                "desc": "T4"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc008",
-                "desc": "T5"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc009",
-                "desc": "T7"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc010",
-                "desc": "T8"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc011",
-                "desc": "T9"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc012",
-                "desc": "T10"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc013",
-                "desc": "T11"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc014",
-                "desc": "L1"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc015",
-                "desc": "L2"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc016",
-                "desc": "L3"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc017",
-                "desc": "L4"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc018",
-                "desc": "E1"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc019",
-                "desc": "E2"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc020",
-                "desc": "E3"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc021",
-                "desc": "E4"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc022",
-                "desc": "E5"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc023",
-                "desc": "E6"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc024",
-                "desc": "E7"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc025",
-                "desc": "E8"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc026",
-                "desc": "E9"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc027",
-                "desc": "E12"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc028",
-                "desc": "E13"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc029",
-                "desc": "P1"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc030",
-                "desc": "P3"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc031",
-                "desc": "P4"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc032",
-                "desc": "QHQ1"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc033",
-                "desc": "P5"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc034",
-                "desc": "P6"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc035",
-                "desc": "P7"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc036",
-                "desc": "P8"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc037",
-                "desc": "P9"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc038",
-                "desc": "P10"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc039",
-                "desc": "BLC7"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc040",
-                "desc": "QS1"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc041",
-                "desc": "QS3"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc042",
-                "desc": "QS5"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc043",
-                "desc": "QS7"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc044",
-                "desc": "QS8"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc045",
-                "desc": "QS9"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc046",
-                "desc": "QS10"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc047",
-                "desc": "QS11"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc048",
-                "desc": "QS12"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc049",
-                "desc": "QS13"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc050",
-                "desc": "QS14"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc051",
-                "desc": "QS15"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc052",
-                "desc": "QS16"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc053",
-                "desc": "QS17"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc054",
-                "desc": "QS18"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc055",
-                "desc": "QS19"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc056",
-                "desc": "QS20"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc057",
-                "desc": "QS21"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc058",
-                "desc": "QS22"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc059",
-                "desc": "QS23"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc060",
-                "desc": "QS24"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc061",
-                "desc": "QS25"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc062",
-                "desc": "QS26"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc063",
-                "desc": "QS27"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc064",
-                "desc": "QS28"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc065",
-                "desc": "QS29"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc066",
-                "desc": "QS32"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc067",
-                "desc": "QS34"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc068",
-                "desc": "QS35"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc069",
-                "desc": "QS36"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc070",
-                "desc": "BLC1"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc071",
-                "desc": "BLC2"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc072",
-                "desc": "BLC3"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc073",
-                "desc": "BLC4"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc074",
-                "desc": "BLC5"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_tpc075",
-                "desc": "BLC6"
-              }
-            ]
-          }
-        },
-        {
-          "id": "speakers",
-          "content": {
-            "mimetype": "application/json",
-            "data": [
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_spkr001",
-                "name": "CS"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_spkr002",
-                "name": "BX11"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_spkr003",
-                "name": "047INC1"
-              },
-              {
-                "id": "11280.100/crdo-ESLO1_ENT_047_spkr004",
-                "name": "047INC2"
-              }
-            ]
-          }
-        }
-      ],
-      "lists": [
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn001",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0001"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0002"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0003"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0004"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0005"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0006"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc001"
-            },
-            "corpus:begin": 0,
-            "corpus:end": 19456
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn002",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0007"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0008"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0009"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0010"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0011"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0012"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0013"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0014"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0015"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0016"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc002"
-            },
-            "corpus:begin": 19456,
-            "corpus:end": 35517
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn003",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0017"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0018"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0019"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0020"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0021"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0022"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0023"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0024"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0025"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0026"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0027"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc003"
-            },
-            "corpus:begin": 35517,
-            "corpus:end": 56515
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn004",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0028"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0029"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0030"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0031"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0032"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0033"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0034"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0035"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0036"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0037"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0038"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc004"
-            },
-            "corpus:begin": 56515,
-            "corpus:end": 70014
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn005",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0039"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0040"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0041"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0042"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0043"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0044"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0045"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0046"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0047"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0048"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0049"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0050"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0051"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0052"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0053"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0054"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0055"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0056"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0057"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0058"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0059"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0060"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0061"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0062"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0063"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0064"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0065"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0066"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0067"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0068"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0069"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0070"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0071"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0072"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0073"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0074"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0075"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc005"
-            },
-            "corpus:begin": 70014,
-            "corpus:end": 166752
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn006",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0076"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0077"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0078"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0079"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0080"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0081"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0082"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0083"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0084"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0085"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0086"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0087"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0088"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0089"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0090"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0091"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0092"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0093"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0094"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0095"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0096"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0097"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0098"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0099"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0100"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0101"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0102"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0103"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0104"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc006"
-            },
-            "corpus:begin": 166752,
-            "corpus:end": 245708
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn007",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0105"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0106"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0107"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0108"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0109"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0110"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0111"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0112"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0113"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0114"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0115"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0116"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0117"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0118"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0119"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0120"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0121"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0122"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0123"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0124"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0125"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0126"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0127"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0128"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0129"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0130"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0131"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0132"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0133"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0134"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0135"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0136"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0137"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0138"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0139"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0140"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0142"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0143"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0144"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0145"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0146"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0147"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0148"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0149"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0150"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0151"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0152"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0153"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0154"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0155"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0156"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0157"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0158"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0159"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0160"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0161"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0162"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0163"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc007"
-            },
-            "corpus:begin": 245708,
-            "corpus:end": 386678
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn008",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0165"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0166"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0167"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0168"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0169"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0170"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0171"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0172"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0173"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0174"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0175"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0176"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0177"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0178"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0179"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0180"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0181"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0182"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0183"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0184"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0185"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0186"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0187"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0188"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0189"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0190"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc008"
-            },
-            "corpus:begin": 386678,
-            "corpus:end": 467850
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn009",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0191"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0192"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0193"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0194"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0195"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0196"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc009"
-            },
-            "corpus:begin": 467850,
-            "corpus:end": 480993
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn010",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0197"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0198"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0199"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0201"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0202"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0203"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0204"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0205"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0206"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0207"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0208"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0209"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0210"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc010"
-            },
-            "corpus:begin": 480993,
-            "corpus:end": 530904
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn011",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0211"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0212"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0213"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0214"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0215"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0216"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0217"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc011"
-            },
-            "corpus:begin": 530904,
-            "corpus:end": 542144
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn012",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0218"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0219"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0220"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0221"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0222"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0223"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc012"
-            },
-            "corpus:begin": 542144,
-            "corpus:end": 560616
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn013",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0224"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0225"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0226"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0227"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0228"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0229"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0230"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0231"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0232"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0233"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc013"
-            },
-            "corpus:begin": 560616,
-            "corpus:end": 585902
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn014",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0235"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0236"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0237"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0238"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0239"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0240"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0241"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0242"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0243"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0244"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0245"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0246"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0247"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0248"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0249"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0250"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc014"
-            },
-            "corpus:begin": 585902,
-            "corpus:end": 615718
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn015",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0251"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0252"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0253"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0254"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0255"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0256"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0257"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0258"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0259"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0260"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0261"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0262"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0263"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0264"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0265"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0266"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0267"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0268"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc015"
-            },
-            "corpus:begin": 615718,
-            "corpus:end": 649519
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn016",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0269"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0270"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0271"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0272"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0273"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0274"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0275"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0276"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc016"
-            },
-            "corpus:begin": 649519,
-            "corpus:end": 663127
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn017",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0278"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0279"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0280"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0281"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0282"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0283"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0284"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc017"
-            },
-            "corpus:begin": 663127,
-            "corpus:end": 684099
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn018",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0285"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0286"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0287"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0289"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0290"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0291"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0292"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0293"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0294"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0296"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0297"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0298"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0299"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0300"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0301"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0302"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0304"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0305"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0306"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0307"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0308"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0309"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0310"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0311"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0312"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0313"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0314"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0315"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0316"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0317"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0318"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc018"
-            },
-            "corpus:begin": 684099,
-            "corpus:end": 818988
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn019",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0319"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0321"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0322"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0323"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0324"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0325"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0326"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0327"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0328"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0329"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0331"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0332"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0333"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0334"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0335"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0336"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0337"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0338"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0339"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc019"
-            },
-            "corpus:begin": 818988,
-            "corpus:end": 908743
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn020",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0340"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0341"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0342"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0343"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0344"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0345"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0346"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0348"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc020"
-            },
-            "corpus:begin": 908743,
-            "corpus:end": 935786
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn021",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0349"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0350"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0352"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0353"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0354"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0355"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0356"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0357"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0358"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0359"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0360"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0361"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0362"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc021"
-            },
-            "corpus:begin": 935786,
-            "corpus:end": 991844
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn022",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0363"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0364"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0366"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0368"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0369"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0370"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0371"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0372"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0373"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0374"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0375"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0376"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0377"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0378"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0379"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc022"
-            },
-            "corpus:begin": 991844,
-            "corpus:end": 1048937
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn023",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0380"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0381"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0382"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0384"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0385"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0386"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0387"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0388"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc023"
-            },
-            "corpus:begin": 1048937,
-            "corpus:end": 1084973
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn024",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0389"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0390"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0391"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0392"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0393"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0394"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0395"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0397"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0398"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0399"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0400"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0402"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0403"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0404"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0405"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0406"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0407"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0408"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0409"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc024"
-            },
-            "corpus:begin": 1084973,
-            "corpus:end": 1201006
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn025",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0410"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0412"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0413"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0414"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0415"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc025"
-            },
-            "corpus:begin": 1201006,
-            "corpus:end": 1232303
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn026",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0416"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0417"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0418"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0419"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0420"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0421"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0422"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0423"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0424"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0425"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0426"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0427"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0428"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0429"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0430"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0431"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0432"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0433"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0434"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0435"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0436"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0437"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0438"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0439"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0440"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0441"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0442"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0443"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0444"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0445"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0446"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0447"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0448"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc026"
-            },
-            "corpus:begin": 1232303,
-            "corpus:end": 1320256
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn027",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0449"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0450"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0452"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0454"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0455"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc027"
-            },
-            "corpus:begin": 1320256,
-            "corpus:end": 1353464
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn028",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0456"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0457"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0458"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0460"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0461"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0462"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0463"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc028"
-            },
-            "corpus:begin": 1353464,
-            "corpus:end": 1402104
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn029",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0464"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0466"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0467"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0468"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0469"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0470"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0471"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc029"
-            },
-            "corpus:begin": 1402104,
-            "corpus:end": 1447976
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn030",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0472"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0473"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0474"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0475"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0476"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0477"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0478"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0479"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0480"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0481"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0482"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc030"
-            },
-            "corpus:begin": 1447976,
-            "corpus:end": 1492094
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn031",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0483"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0484"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0485"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0486"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0487"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0488"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0489"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0490"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0492"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0493"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0494"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0495"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0497"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0498"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0499"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0500"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0501"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0502"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc031"
-            },
-            "corpus:begin": 1492094,
-            "corpus:end": 1625611
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn032",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0504"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0506"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc032"
-            },
-            "corpus:begin": 1625611,
-            "corpus:end": 1651033
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn033",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0507"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0508"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0509"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0510"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0511"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0512"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0513"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0514"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0515"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0516"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0517"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0518"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0519"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0520"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0521"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc033"
-            },
-            "corpus:begin": 1651033,
-            "corpus:end": 1716957
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn034",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0522"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0523"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0524"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0525"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0526"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0527"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0528"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0529"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0530"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0531"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc034"
-            },
-            "corpus:begin": 1716957,
-            "corpus:end": 1743094
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn035",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0532"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0533"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0534"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0535"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc035"
-            },
-            "corpus:begin": 1743094,
-            "corpus:end": 1757678
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn036",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0536"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0537"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0538"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0539"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0540"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0541"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0542"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0543"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0544"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0545"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc036"
-            },
-            "corpus:begin": 1757678,
-            "corpus:end": 1800489
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn037",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0546"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0548"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0549"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc037"
-            },
-            "corpus:begin": 1800489,
-            "corpus:end": 1847833
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn038",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0550"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0551"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0552"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0554"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0555"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0556"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0557"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0558"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0559"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0560"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc038"
-            },
-            "corpus:begin": 1847833,
-            "corpus:end": 1881416
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn039",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0561"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0562"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0564"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0565"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0566"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0567"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0568"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0569"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0570"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0571"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0572"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0573"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0574"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc039"
-            },
-            "corpus:begin": 1881416,
-            "corpus:end": 1944521
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn040",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0575"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0576"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0577"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0578"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0579"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0580"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0581"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0582"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0583"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0584"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0585"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0586"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0587"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0588"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0589"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0590"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0591"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0592"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0593"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0594"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0595"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0596"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0597"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0598"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0599"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0600"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0601"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0602"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0603"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0604"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0605"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0606"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0607"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0608"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0609"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0610"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0611"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0612"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0613"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0614"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0615"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0616"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0617"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0618"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0619"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0620"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0621"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0622"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0623"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0624"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0625"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0626"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0627"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0628"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0629"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0630"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0631"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0632"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0633"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0634"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0635"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0636"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0637"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0638"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0639"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0640"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0641"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0642"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0643"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0644"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0645"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0646"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0647"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0648"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0649"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0650"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0651"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0652"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0653"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0654"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0655"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0656"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0657"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0658"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc040"
-            },
-            "corpus:begin": 1944521,
-            "corpus:end": 2180940
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn041",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0659"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0660"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0661"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0662"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0663"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0664"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0665"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0666"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0667"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0668"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0669"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc041"
-            },
-            "corpus:begin": 2180940,
-            "corpus:end": 2215813
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn042",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0670"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0671"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0672"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0673"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0675"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0676"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0677"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0678"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc042"
-            },
-            "corpus:begin": 2215813,
-            "corpus:end": 2243056
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn043",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0679"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0680"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0681"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0682"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0683"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0684"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0685"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0686"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0687"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0688"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0689"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0690"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0691"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0692"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0693"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0694"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0695"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0696"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0697"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0698"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0699"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0700"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0701"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0702"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0703"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0704"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc043"
-            },
-            "corpus:begin": 2243056,
-            "corpus:end": 2312432
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn044",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0705"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0706"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0707"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0708"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0709"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0710"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0712"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0713"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0714"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0715"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0716"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0717"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0718"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0719"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0720"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0721"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0722"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc044"
-            },
-            "corpus:begin": 2312432,
-            "corpus:end": 2388158
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn045",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0723"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0725"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0726"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0727"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0728"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0729"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0730"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0731"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0732"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0733"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc045"
-            },
-            "corpus:begin": 2388158,
-            "corpus:end": 2428438
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn046",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0734"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0735"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0736"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0737"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0738"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0739"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0740"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0741"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc046"
-            },
-            "corpus:begin": 2428438,
-            "corpus:end": 2453030
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn047",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0742"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0743"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0744"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0745"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0746"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0747"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0748"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0749"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0750"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0751"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0752"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0753"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0754"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0755"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0756"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc047"
-            },
-            "corpus:begin": 2453030,
-            "corpus:end": 2499753
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn048",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0757"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0758"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0759"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0760"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0761"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0762"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0763"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0764"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0765"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0766"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0767"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0768"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0769"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0770"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0771"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0772"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0773"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0774"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0775"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0776"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0777"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0778"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0779"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0780"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0781"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0782"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0783"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0784"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc048"
-            },
-            "corpus:begin": 2499753,
-            "corpus:end": 2595246
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn049",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0785"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0786"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0787"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0789"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0790"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0791"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0792"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0793"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0794"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0795"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0796"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0797"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0798"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0799"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0800"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0801"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0802"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc049"
-            },
-            "corpus:begin": 2595246,
-            "corpus:end": 2672084
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn050",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0803"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0804"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0805"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0806"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0807"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0808"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc050"
-            },
-            "corpus:begin": 2672084,
-            "corpus:end": 2693333
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn051",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0809"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0810"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0811"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0812"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0813"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0814"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0815"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0816"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0817"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0818"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0819"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0820"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0821"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0822"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0823"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0824"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc051"
-            },
-            "corpus:begin": 2693333,
-            "corpus:end": 2719698
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn052",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0825"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0826"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0827"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0828"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0829"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0830"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0831"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc052"
-            },
-            "corpus:begin": 2719698,
-            "corpus:end": 2750667
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn053",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0832"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0833"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0834"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0835"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0836"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0837"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0838"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0839"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0840"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0841"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc053"
-            },
-            "corpus:begin": 2750667,
-            "corpus:end": 2774288
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn054",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0842"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0843"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0844"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc054"
-            },
-            "corpus:begin": 2774288,
-            "corpus:end": 2784767
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn055",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0845"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0846"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc055"
-            },
-            "corpus:begin": 2784767,
-            "corpus:end": 2791620
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn056",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0847"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0848"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0849"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0850"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0851"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0852"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0853"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0854"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0855"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0856"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0857"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0858"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0859"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0860"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0861"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0862"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0863"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0864"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0865"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0866"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0867"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0868"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0869"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0870"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0871"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0872"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0873"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc056"
-            },
-            "corpus:begin": 2791620,
-            "corpus:end": 2856603
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn057",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0874"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0875"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0876"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0877"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0878"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0879"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0880"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0881"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0882"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0883"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0884"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0885"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0886"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0887"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0888"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0889"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0890"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0891"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0892"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0893"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc057"
-            },
-            "corpus:begin": 2856603,
-            "corpus:end": 2914680
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn058",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0894"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0895"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0896"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0897"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0898"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc058"
-            },
-            "corpus:begin": 2914680,
-            "corpus:end": 2931962
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn059",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0899"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0900"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0901"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0902"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0903"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0904"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0905"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0906"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0907"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0908"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc059"
-            },
-            "corpus:begin": 2931962,
-            "corpus:end": 2965129
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn060",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0909"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0910"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0911"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0912"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0913"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0914"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0915"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0916"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0917"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0918"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0919"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0920"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0921"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0922"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0923"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0924"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0925"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0926"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc060"
-            },
-            "corpus:begin": 2965129,
-            "corpus:end": 3023350
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn061",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0927"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0928"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0929"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0930"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0931"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0932"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0933"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0934"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0935"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0936"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0937"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0938"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0939"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0940"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0941"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0942"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0943"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0944"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0945"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0946"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0947"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0948"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0949"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0950"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0951"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0952"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0953"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc061"
-            },
-            "corpus:begin": 3023350,
-            "corpus:end": 3073982
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn062",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0954"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0955"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0956"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0957"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0958"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0959"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0960"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0961"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0962"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc062"
-            },
-            "corpus:begin": 3073982,
-            "corpus:end": 3106917
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn063",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0963"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0964"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0965"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0966"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0967"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0968"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0969"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0970"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0971"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0972"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0973"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0974"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0975"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc063"
-            },
-            "corpus:begin": 3106917,
-            "corpus:end": 3148115
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn064",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0976"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0977"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0978"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0979"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0980"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0981"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0982"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0983"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0984"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0985"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0986"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0987"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0988"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0989"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0990"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0991"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0992"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0993"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0994"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0995"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0996"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0997"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0998"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0999"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1000"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1001"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1002"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1003"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1004"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1005"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1006"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc064"
-            },
-            "corpus:begin": 3148115,
-            "corpus:end": 3239411
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn065",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1007"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1008"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1009"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1010"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1011"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1012"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1013"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1014"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1015"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1016"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1017"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1018"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1019"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc065"
-            },
-            "corpus:begin": 3239411,
-            "corpus:end": 3282501
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn066",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1020"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1021"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1022"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1023"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1024"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1025"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1026"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1027"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1028"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1029"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1030"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1031"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1032"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1033"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1034"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1035"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1036"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1037"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1038"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1039"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc066"
-            },
-            "corpus:begin": 3282501,
-            "corpus:end": 3324811
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn067",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1040"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1041"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1042"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1043"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1044"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc067"
-            },
-            "corpus:begin": 3324811,
-            "corpus:end": 3340299
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn068",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1045"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1046"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1047"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1048"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1049"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1050"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1051"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1052"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1053"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1054"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1055"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1056"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1057"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1058"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1059"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1060"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1061"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1062"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1063"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1064"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1065"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1066"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1067"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc068"
-            },
-            "corpus:begin": 3340299,
-            "corpus:end": 3417399
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn069",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1068"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1069"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1070"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1071"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1072"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1073"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1074"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1075"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1076"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1077"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1078"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1079"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1080"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1081"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1082"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1083"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1084"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1085"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1086"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1087"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc069"
-            },
-            "corpus:begin": 3417399,
-            "corpus:end": 3488335
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn070",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1088"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1089"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1090"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1091"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1092"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1093"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1094"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1095"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1096"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1097"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1098"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1099"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1100"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1101"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1102"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1103"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1104"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1105"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1106"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1107"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1108"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1109"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1110"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1111"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1112"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1113"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1114"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1115"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1116"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1117"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1118"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1119"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1120"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1121"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1122"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1123"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1125"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1126"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1127"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1128"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1129"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1130"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1131"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1132"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1133"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1134"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1135"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1136"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc070"
-            },
-            "corpus:begin": 3488335,
-            "corpus:end": 3636546
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn071",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1137"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1138"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1139"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1140"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1141"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1142"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1143"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1144"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1145"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1146"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1147"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1148"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1149"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1150"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1151"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1152"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1153"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1154"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1155"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1156"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc071"
-            },
-            "corpus:begin": 3636546,
-            "corpus:end": 3684982
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn072",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1157"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1158"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1159"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1160"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1161"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1162"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1163"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc072"
-            },
-            "corpus:begin": 3684982,
-            "corpus:end": 3705102
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn073",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1165"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1166"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1167"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1168"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1169"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1170"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1171"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1172"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1173"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1174"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc073"
-            },
-            "corpus:begin": 3705102,
-            "corpus:end": 3740039
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn074",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1175"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1176"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1177"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1178"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc074"
-            },
-            "corpus:begin": 3740039,
-            "corpus:end": 3747708
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_sctn075",
-          "items": [
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1179"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1180"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1181"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1182"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1183"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1184"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1185"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1186"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1187"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1188"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1189"
-            },
-            {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1190"
-            }
-          ],
-          "meta": {
-            "corpus:topic": {
-              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc075"
-            },
-            "corpus:begin": 3747708,
-            "corpus:end": 3779059
-          }
-        }
-      ],
-      "annotation-types": [
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0001",
-          "dc:title": "Turn 1",
-          "corpus:begin": 0,
-          "corpus:end": 7709
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0002",
-          "dc:title": "Turn 2",
-          "corpus:begin": 7709,
-          "corpus:end": 9333
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0003",
-          "dc:title": "Turn 3",
-          "corpus:begin": 9333,
-          "corpus:end": 10832
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0004",
-          "dc:title": "Turn 4",
-          "corpus:begin": 10832,
-          "corpus:end": 11792
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0005",
-          "dc:title": "Turn 5",
-          "corpus:begin": 11792,
-          "corpus:end": 13760
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0006",
-          "dc:title": "Turn 6",
-          "corpus:begin": 13760,
-          "corpus:end": 19456
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0007",
-          "dc:title": "Turn 7",
-          "corpus:begin": 19456,
-          "corpus:end": 22158
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0008",
-          "dc:title": "Turn 8",
-          "corpus:begin": 22158,
-          "corpus:end": 23205
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0009",
-          "dc:title": "Turn 9",
-          "corpus:begin": 23205,
-          "corpus:end": 23678
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0010",
-          "dc:title": "Turn 10",
-          "corpus:begin": 23678,
-          "corpus:end": 27388
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0011",
-          "dc:title": "Turn 11",
-          "corpus:begin": 27388,
-          "corpus:end": 28066
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0012",
-          "dc:title": "Turn 12",
-          "corpus:begin": 28066,
-          "corpus:end": 32259
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0013",
-          "dc:title": "Turn 13",
-          "corpus:begin": 32259,
-          "corpus:end": 32746
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0014",
-          "dc:title": "Turn 14",
-          "corpus:begin": 32746,
-          "corpus:end": 33918
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0015",
-          "dc:title": "Turn 15",
-          "corpus:begin": 33918,
-          "corpus:end": 34196
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0016",
-          "dc:title": "Turn 16",
-          "corpus:begin": 34196,
-          "corpus:end": 35517
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0017",
-          "dc:title": "Turn 17",
-          "corpus:begin": 35517,
-          "corpus:end": 39898
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0018",
-          "dc:title": "Turn 18",
-          "corpus:begin": 39898,
-          "corpus:end": 40559
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0019",
-          "dc:title": "Turn 19",
-          "corpus:begin": 40559,
-          "corpus:end": 41376
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0020",
-          "dc:title": "Turn 20",
-          "corpus:begin": 41376,
-          "corpus:end": 44123
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0021",
-          "dc:title": "Turn 21",
-          "corpus:begin": 44123,
-          "corpus:end": 44405
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0022",
-          "dc:title": "Turn 22",
-          "corpus:begin": 44405,
-          "corpus:end": 48934
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0023",
-          "dc:title": "Turn 23",
-          "corpus:begin": 48934,
-          "corpus:end": 49163
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0024",
-          "dc:title": "Turn 24",
-          "corpus:begin": 49163,
-          "corpus:end": 50402
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0025",
-          "dc:title": "Turn 25",
-          "corpus:begin": 50402,
-          "corpus:end": 53191
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0026",
-          "dc:title": "Turn 26",
-          "corpus:begin": 53191,
-          "corpus:end": 54776
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0027",
-          "dc:title": "Turn 27",
-          "corpus:begin": 54776,
-          "corpus:end": 56515
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0028",
-          "dc:title": "Turn 28",
-          "corpus:begin": 56515,
-          "corpus:end": 58435
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0029",
-          "dc:title": "Turn 29",
-          "corpus:begin": 58435,
-          "corpus:end": 60351
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0030",
-          "dc:title": "Turn 30",
-          "corpus:begin": 60351,
-          "corpus:end": 61467
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0031",
-          "dc:title": "Turn 31",
-          "corpus:begin": 61467,
-          "corpus:end": 64071
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0032",
-          "dc:title": "Turn 32",
-          "corpus:begin": 64071,
-          "corpus:end": 64235
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0033",
-          "dc:title": "Turn 33",
-          "corpus:begin": 64235,
-          "corpus:end": 65000
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0034",
-          "dc:title": "Turn 34",
-          "corpus:begin": 65000,
-          "corpus:end": 65855
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0035",
-          "dc:title": "Turn 35",
-          "corpus:begin": 65855,
-          "corpus:end": 67142
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0036",
-          "dc:title": "Turn 36",
-          "corpus:begin": 67142,
-          "corpus:end": 67580
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0037",
-          "dc:title": "Turn 37",
-          "corpus:begin": 67580,
-          "corpus:end": 68484
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0038",
-          "dc:title": "Turn 38",
-          "corpus:begin": 68484,
-          "corpus:end": 70014
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0039",
-          "dc:title": "Turn 39",
-          "corpus:begin": 70014,
-          "corpus:end": 80842
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0040",
-          "dc:title": "Turn 40",
-          "corpus:begin": 80842,
-          "corpus:end": 81311
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0041",
-          "dc:title": "Turn 41",
-          "corpus:begin": 81311,
-          "corpus:end": 82163
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0042",
-          "dc:title": "Turn 42",
-          "corpus:begin": 82163,
-          "corpus:end": 88912
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0043",
-          "dc:title": "Turn 43",
-          "corpus:begin": 88912,
-          "corpus:end": 89416
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0044",
-          "dc:title": "Turn 44",
-          "corpus:begin": 89416,
-          "corpus:end": 93297
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0045",
-          "dc:title": "Turn 45",
-          "corpus:begin": 93297,
-          "corpus:end": 93575
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0046",
-          "dc:title": "Turn 46",
-          "corpus:begin": 93575,
-          "corpus:end": 95974
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0047",
-          "dc:title": "Turn 47",
-          "corpus:begin": 95974,
-          "corpus:end": 96618
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0048",
-          "dc:title": "Turn 48",
-          "corpus:begin": 96618,
-          "corpus:end": 103643
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0049",
-          "dc:title": "Turn 49",
-          "corpus:begin": 103643,
-          "corpus:end": 104380
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0050",
-          "dc:title": "Turn 50",
-          "corpus:begin": 104380,
-          "corpus:end": 112023
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0051",
-          "dc:title": "Turn 51",
-          "corpus:begin": 112023,
-          "corpus:end": 113449
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0052",
-          "dc:title": "Turn 52",
-          "corpus:begin": 113449,
-          "corpus:end": 113835
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0053",
-          "dc:title": "Turn 53",
-          "corpus:begin": 113835,
-          "corpus:end": 114968
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0054",
-          "dc:title": "Turn 54",
-          "corpus:begin": 114968,
-          "corpus:end": 115594
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0055",
-          "dc:title": "Turn 55",
-          "corpus:begin": 115594,
-          "corpus:end": 120674
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0056",
-          "dc:title": "Turn 56",
-          "corpus:begin": 120674,
-          "corpus:end": 121039
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0057",
-          "dc:title": "Turn 57",
-          "corpus:begin": 121039,
-          "corpus:end": 125389
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0058",
-          "dc:title": "Turn 58",
-          "corpus:begin": 125389,
-          "corpus:end": 126015
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0059",
-          "dc:title": "Turn 59",
-          "corpus:begin": 126015,
-          "corpus:end": 127806
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0060",
-          "dc:title": "Turn 60",
-          "corpus:begin": 127806,
-          "corpus:end": 132528
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0061",
-          "dc:title": "Turn 61",
-          "corpus:begin": 132528,
-          "corpus:end": 137208
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0062",
-          "dc:title": "Turn 62",
-          "corpus:begin": 137208,
-          "corpus:end": 137750
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0063",
-          "dc:title": "Turn 63",
-          "corpus:begin": 137750,
-          "corpus:end": 141092
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0064",
-          "dc:title": "Turn 64",
-          "corpus:begin": 141092,
-          "corpus:end": 141579
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0065",
-          "dc:title": "Turn 65",
-          "corpus:begin": 141579,
-          "corpus:end": 149127
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0066",
-          "dc:title": "Turn 66",
-          "corpus:begin": 149127,
-          "corpus:end": 149371
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0067",
-          "dc:title": "Turn 67",
-          "corpus:begin": 149371,
-          "corpus:end": 154147
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0068",
-          "dc:title": "Turn 68",
-          "corpus:begin": 154147,
-          "corpus:end": 155159
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0069",
-          "dc:title": "Turn 69",
-          "corpus:begin": 155159,
-          "corpus:end": 157596
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0070",
-          "dc:title": "Turn 70",
-          "corpus:begin": 157596,
-          "corpus:end": 158869
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0071",
-          "dc:title": "Turn 71",
-          "corpus:begin": 158869,
-          "corpus:end": 163633
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0072",
-          "dc:title": "Turn 72",
-          "corpus:begin": 163633,
-          "corpus:end": 164141
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0073",
-          "dc:title": "Turn 73",
-          "corpus:begin": 164141,
-          "corpus:end": 164892
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0074",
-          "dc:title": "Turn 74",
-          "corpus:begin": 164892,
-          "corpus:end": 165257
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0075",
-          "dc:title": "Turn 75",
-          "corpus:begin": 165257,
-          "corpus:end": 166752
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0076",
-          "dc:title": "Turn 76",
-          "corpus:begin": 166752,
-          "corpus:end": 170511
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0077",
-          "dc:title": "Turn 77",
-          "corpus:begin": 170511,
-          "corpus:end": 172688
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0078",
-          "dc:title": "Turn 78",
-          "corpus:begin": 172688,
-          "corpus:end": 172952
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0079",
-          "dc:title": "Turn 79",
-          "corpus:begin": 172952,
-          "corpus:end": 177302
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0080",
-          "dc:title": "Turn 80",
-          "corpus:begin": 177302,
-          "corpus:end": 178314
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0081",
-          "dc:title": "Turn 81",
-          "corpus:begin": 178314,
-          "corpus:end": 183672
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0082",
-          "dc:title": "Turn 82",
-          "corpus:begin": 183672,
-          "corpus:end": 184771
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0083",
-          "dc:title": "Turn 83",
-          "corpus:begin": 184771,
-          "corpus:end": 185209
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0084",
-          "dc:title": "Turn 84",
-          "corpus:begin": 185209,
-          "corpus:end": 192302
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0085",
-          "dc:title": "Turn 85",
-          "corpus:begin": 192302,
-          "corpus:end": 193119
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0086",
-          "dc:title": "Turn 86",
-          "corpus:begin": 193119,
-          "corpus:end": 193484
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0087",
-          "dc:title": "Turn 87",
-          "corpus:begin": 193484,
-          "corpus:end": 197239
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0088",
-          "dc:title": "Turn 88",
-          "corpus:begin": 197239,
-          "corpus:end": 202110
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0089",
-          "dc:title": "Turn 89",
-          "corpus:begin": 202110,
-          "corpus:end": 202531
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0090",
-          "dc:title": "Turn 90",
-          "corpus:begin": 202531,
-          "corpus:end": 208567
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0091",
-          "dc:title": "Turn 91",
-          "corpus:begin": 208567,
-          "corpus:end": 209127
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0092",
-          "dc:title": "Turn 92",
-          "corpus:begin": 209127,
-          "corpus:end": 212907
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0093",
-          "dc:title": "Turn 93",
-          "corpus:begin": 212907,
-          "corpus:end": 213276
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0094",
-          "dc:title": "Turn 94",
-          "corpus:begin": 213276,
-          "corpus:end": 219837
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0095",
-          "dc:title": "Turn 95",
-          "corpus:begin": 219837,
-          "corpus:end": 221510
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0096",
-          "dc:title": "Turn 96",
-          "corpus:begin": 221510,
-          "corpus:end": 226350
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0097",
-          "dc:title": "Turn 97",
-          "corpus:begin": 226350,
-          "corpus:end": 229983
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0098",
-          "dc:title": "Turn 98",
-          "corpus:begin": 229983,
-          "corpus:end": 233443
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0099",
-          "dc:title": "Turn 99",
-          "corpus:begin": 233443,
-          "corpus:end": 236367
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0100",
-          "dc:title": "Turn 100",
-          "corpus:begin": 236367,
-          "corpus:end": 237501
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0101",
-          "dc:title": "Turn 101",
-          "corpus:begin": 237501,
-          "corpus:end": 242081
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0102",
-          "dc:title": "Turn 102",
-          "corpus:begin": 242081,
-          "corpus:end": 242589
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0103",
-          "dc:title": "Turn 103",
-          "corpus:begin": 242589,
-          "corpus:end": 244905
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0104",
-          "dc:title": "Turn 104",
-          "corpus:begin": 244905,
-          "corpus:end": 245708
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0105",
-          "dc:title": "Turn 105",
-          "corpus:begin": 245708,
-          "corpus:end": 246230
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0106",
-          "dc:title": "Turn 106",
-          "corpus:begin": 246230,
-          "corpus:end": 247763
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0107",
-          "dc:title": "Turn 107",
-          "corpus:begin": 247763,
-          "corpus:end": 250197
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0108",
-          "dc:title": "Turn 108",
-          "corpus:begin": 250197,
-          "corpus:end": 251153
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0109",
-          "dc:title": "Turn 109",
-          "corpus:begin": 251153,
-          "corpus:end": 252043
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0110",
-          "dc:title": "Turn 110",
-          "corpus:begin": 252043,
-          "corpus:end": 252495
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0111",
-          "dc:title": "Turn 111",
-          "corpus:begin": 252495,
-          "corpus:end": 253768
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0112",
-          "dc:title": "Turn 112",
-          "corpus:begin": 253768,
-          "corpus:end": 263584
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0113",
-          "dc:title": "Turn 113",
-          "corpus:begin": 263584,
-          "corpus:end": 264648
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0114",
-          "dc:title": "Turn 114",
-          "corpus:begin": 264648,
-          "corpus:end": 266581
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0115",
-          "dc:title": "Turn 115",
-          "corpus:begin": 266581,
-          "corpus:end": 270692
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0116",
-          "dc:title": "Turn 116",
-          "corpus:begin": 270692,
-          "corpus:end": 271339
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0117",
-          "dc:title": "Turn 117",
-          "corpus:begin": 271339,
-          "corpus:end": 276801
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0118",
-          "dc:title": "Turn 118",
-          "corpus:begin": 276801,
-          "corpus:end": 277045
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0119",
-          "dc:title": "Turn 119",
-          "corpus:begin": 277045,
-          "corpus:end": 278096
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0120",
-          "dc:title": "Turn 120",
-          "corpus:begin": 278096,
-          "corpus:end": 278795
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0121",
-          "dc:title": "Turn 121",
-          "corpus:begin": 278795,
-          "corpus:end": 280624
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0122",
-          "dc:title": "Turn 122",
-          "corpus:begin": 280624,
-          "corpus:end": 280853
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0123",
-          "dc:title": "Turn 123",
-          "corpus:begin": 280853,
-          "corpus:end": 283687
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0124",
-          "dc:title": "Turn 124",
-          "corpus:begin": 283687,
-          "corpus:end": 284052
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0125",
-          "dc:title": "Turn 125",
-          "corpus:begin": 284052,
-          "corpus:end": 284539
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0126",
-          "dc:title": "Turn 126",
-          "corpus:begin": 284539,
-          "corpus:end": 284904
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0127",
-          "dc:title": "Turn 127",
-          "corpus:begin": 284904,
-          "corpus:end": 287112
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0128",
-          "dc:title": "Turn 128",
-          "corpus:begin": 287112,
-          "corpus:end": 288354
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0129",
-          "dc:title": "Turn 129",
-          "corpus:begin": 288354,
-          "corpus:end": 293660
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0130",
-          "dc:title": "Turn 130",
-          "corpus:begin": 293660,
-          "corpus:end": 294081
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0131",
-          "dc:title": "Turn 131",
-          "corpus:begin": 294081,
-          "corpus:end": 297443
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0132",
-          "dc:title": "Turn 132",
-          "corpus:begin": 297443,
-          "corpus:end": 307290
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0133",
-          "dc:title": "Turn 133",
-          "corpus:begin": 307290,
-          "corpus:end": 307899
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0134",
-          "dc:title": "Turn 134",
-          "corpus:begin": 307899,
-          "corpus:end": 311244
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0135",
-          "dc:title": "Turn 135",
-          "corpus:begin": 311244,
-          "corpus:end": 311647
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0136",
-          "dc:title": "Turn 136",
-          "corpus:begin": 311647,
-          "corpus:end": 313911
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0137",
-          "dc:title": "Turn 137",
-          "corpus:begin": 313911,
-          "corpus:end": 316036
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0138",
-          "dc:title": "Turn 138",
-          "corpus:begin": 316036,
-          "corpus:end": 317674
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0139",
-          "dc:title": "Turn 139",
-          "corpus:begin": 317674,
-          "corpus:end": 319753
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0140",
-          "dc:title": "Turn 140",
-          "corpus:begin": 319753,
-          "corpus:end": 320991
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0141",
-          "dc:title": "Turn 141",
-          "corpus:begin": 320991,
-          "corpus:end": 341127
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0142",
-          "dc:title": "Turn 142",
-          "corpus:begin": 341127,
-          "corpus:end": 342208
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0143",
-          "dc:title": "Turn 143",
-          "corpus:begin": 342208,
-          "corpus:end": 343777
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0144",
-          "dc:title": "Turn 144",
-          "corpus:begin": 343777,
-          "corpus:end": 343867
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0145",
-          "dc:title": "Turn 145",
-          "corpus:begin": 343867,
-          "corpus:end": 346110
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0146",
-          "dc:title": "Turn 146",
-          "corpus:begin": 346110,
-          "corpus:end": 346423
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0147",
-          "dc:title": "Turn 147",
-          "corpus:begin": 346423,
-          "corpus:end": 347748
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0148",
-          "dc:title": "Turn 148",
-          "corpus:begin": 347748,
-          "corpus:end": 348203
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0149",
-          "dc:title": "Turn 149",
-          "corpus:begin": 348203,
-          "corpus:end": 348673
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0150",
-          "dc:title": "Turn 150",
-          "corpus:begin": 348673,
-          "corpus:end": 349233
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0151",
-          "dc:title": "Turn 151",
-          "corpus:begin": 349233,
-          "corpus:end": 352627
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0152",
-          "dc:title": "Turn 152",
-          "corpus:begin": 352627,
-          "corpus:end": 353952
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0153",
-          "dc:title": "Turn 153",
-          "corpus:begin": 353952,
-          "corpus:end": 356528
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0154",
-          "dc:title": "Turn 154",
-          "corpus:begin": 356528,
-          "corpus:end": 363585
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0155",
-          "dc:title": "Turn 155",
-          "corpus:begin": 363585,
-          "corpus:end": 364003
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0156",
-          "dc:title": "Turn 156",
-          "corpus:begin": 364003,
-          "corpus:end": 365780
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0157",
-          "dc:title": "Turn 157",
-          "corpus:begin": 365780,
-          "corpus:end": 366149
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0158",
-          "dc:title": "Turn 158",
-          "corpus:begin": 366149,
-          "corpus:end": 374307
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0159",
-          "dc:title": "Turn 159",
-          "corpus:begin": 374307,
-          "corpus:end": 374626
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0160",
-          "dc:title": "Turn 160",
-          "corpus:begin": 374626,
-          "corpus:end": 376554
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0161",
-          "dc:title": "Turn 161",
-          "corpus:begin": 376554,
-          "corpus:end": 377592
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0162",
-          "dc:title": "Turn 162",
-          "corpus:begin": 377592,
-          "corpus:end": 385263
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0163",
-          "dc:title": "Turn 163",
-          "corpus:begin": 385263,
-          "corpus:end": 386678
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0164",
-          "dc:title": "Turn 164",
-          "corpus:begin": 386678,
-          "corpus:end": 395190
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0165",
-          "dc:title": "Turn 165",
-          "corpus:begin": 395190,
-          "corpus:end": 396505
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0166",
-          "dc:title": "Turn 166",
-          "corpus:begin": 396505,
-          "corpus:end": 401598
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0167",
-          "dc:title": "Turn 167",
-          "corpus:begin": 401598,
-          "corpus:end": 405909
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0168",
-          "dc:title": "Turn 168",
-          "corpus:begin": 405909,
-          "corpus:end": 406041
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0169",
-          "dc:title": "Turn 169",
-          "corpus:begin": 406041,
-          "corpus:end": 410667
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0170",
-          "dc:title": "Turn 170",
-          "corpus:begin": 410667,
-          "corpus:end": 411173
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0171",
-          "dc:title": "Turn 171",
-          "corpus:begin": 411173,
-          "corpus:end": 417648
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0172",
-          "dc:title": "Turn 172",
-          "corpus:begin": 417648,
-          "corpus:end": 418015
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0173",
-          "dc:title": "Turn 173",
-          "corpus:begin": 418015,
-          "corpus:end": 421075
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0174",
-          "dc:title": "Turn 174",
-          "corpus:begin": 421075,
-          "corpus:end": 421423
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0175",
-          "dc:title": "Turn 175",
-          "corpus:begin": 421423,
-          "corpus:end": 426720
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0176",
-          "dc:title": "Turn 176",
-          "corpus:begin": 426720,
-          "corpus:end": 430668
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0177",
-          "dc:title": "Turn 177",
-          "corpus:begin": 430668,
-          "corpus:end": 436390
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0178",
-          "dc:title": "Turn 178",
-          "corpus:begin": 436390,
-          "corpus:end": 437452
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0179",
-          "dc:title": "Turn 179",
-          "corpus:begin": 437452,
-          "corpus:end": 445411
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0180",
-          "dc:title": "Turn 180",
-          "corpus:begin": 445411,
-          "corpus:end": 445859
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0181",
-          "dc:title": "Turn 181",
-          "corpus:begin": 445859,
-          "corpus:end": 447404
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0182",
-          "dc:title": "Turn 182",
-          "corpus:begin": 447404,
-          "corpus:end": 448409
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0183",
-          "dc:title": "Turn 183",
-          "corpus:begin": 448409,
-          "corpus:end": 452334
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0184",
-          "dc:title": "Turn 184",
-          "corpus:begin": 452334,
-          "corpus:end": 453914
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0185",
-          "dc:title": "Turn 185",
-          "corpus:begin": 453914,
-          "corpus:end": 455884
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0186",
-          "dc:title": "Turn 186",
-          "corpus:begin": 455884,
-          "corpus:end": 460672
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0187",
-          "dc:title": "Turn 187",
-          "corpus:begin": 460672,
-          "corpus:end": 461912
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0188",
-          "dc:title": "Turn 188",
-          "corpus:begin": 461912,
-          "corpus:end": 462704
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0189",
-          "dc:title": "Turn 189",
-          "corpus:begin": 462704,
-          "corpus:end": 464269
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0190",
-          "dc:title": "Turn 190",
-          "corpus:begin": 464269,
-          "corpus:end": 467850
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0191",
-          "dc:title": "Turn 191",
-          "corpus:begin": 467850,
-          "corpus:end": 471737
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0192",
-          "dc:title": "Turn 192",
-          "corpus:begin": 471737,
-          "corpus:end": 473421
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0193",
-          "dc:title": "Turn 193",
-          "corpus:begin": 473421,
-          "corpus:end": 474754
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0194",
-          "dc:title": "Turn 194",
-          "corpus:begin": 474754,
-          "corpus:end": 478038
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0195",
-          "dc:title": "Turn 195",
-          "corpus:begin": 478038,
-          "corpus:end": 478405
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0196",
-          "dc:title": "Turn 196",
-          "corpus:begin": 478405,
-          "corpus:end": 480993
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0197",
-          "dc:title": "Turn 197",
-          "corpus:begin": 480993,
-          "corpus:end": 486951
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0198",
-          "dc:title": "Turn 198",
-          "corpus:begin": 486951,
-          "corpus:end": 497201
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0199",
-          "dc:title": "Turn 199",
-          "corpus:begin": 497201,
-          "corpus:end": 497464
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0200",
-          "dc:title": "Turn 200",
-          "corpus:begin": 497464,
-          "corpus:end": 509855
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0201",
-          "dc:title": "Turn 201",
-          "corpus:begin": 509855,
-          "corpus:end": 510322
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0202",
-          "dc:title": "Turn 202",
-          "corpus:begin": 510322,
-          "corpus:end": 513027
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0203",
-          "dc:title": "Turn 203",
-          "corpus:begin": 513027,
-          "corpus:end": 513301
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0204",
-          "dc:title": "Turn 204",
-          "corpus:begin": 513301,
-          "corpus:end": 514499
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0205",
-          "dc:title": "Turn 205",
-          "corpus:begin": 514499,
-          "corpus:end": 517284
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0206",
-          "dc:title": "Turn 206",
-          "corpus:begin": 517284,
-          "corpus:end": 518463
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0207",
-          "dc:title": "Turn 207",
-          "corpus:begin": 518463,
-          "corpus:end": 526824
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0208",
-          "dc:title": "Turn 208",
-          "corpus:begin": 526824,
-          "corpus:end": 527095
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0209",
-          "dc:title": "Turn 209",
-          "corpus:begin": 527095,
-          "corpus:end": 529552
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0210",
-          "dc:title": "Turn 210",
-          "corpus:begin": 529552,
-          "corpus:end": 530904
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0211",
-          "dc:title": "Turn 211",
-          "corpus:begin": 530904,
-          "corpus:end": 533299
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0212",
-          "dc:title": "Turn 212",
-          "corpus:begin": 533299,
-          "corpus:end": 533782
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0213",
-          "dc:title": "Turn 213",
-          "corpus:begin": 533782,
-          "corpus:end": 537925
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0214",
-          "dc:title": "Turn 214",
-          "corpus:begin": 537925,
-          "corpus:end": 540722
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0215",
-          "dc:title": "Turn 215",
-          "corpus:begin": 540722,
-          "corpus:end": 540977
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0216",
-          "dc:title": "Turn 216",
-          "corpus:begin": 540977,
-          "corpus:end": 541696
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0217",
-          "dc:title": "Turn 217",
-          "corpus:begin": 541696,
-          "corpus:end": 542144
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0218",
-          "dc:title": "Turn 218",
-          "corpus:begin": 542144,
-          "corpus:end": 543767
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0219",
-          "dc:title": "Turn 219",
-          "corpus:begin": 543767,
-          "corpus:end": 551231
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0220",
-          "dc:title": "Turn 220",
-          "corpus:begin": 551231,
-          "corpus:end": 552166
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0221",
-          "dc:title": "Turn 221",
-          "corpus:begin": 552166,
-          "corpus:end": 552436
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0222",
-          "dc:title": "Turn 222",
-          "corpus:begin": 552436,
-          "corpus:end": 557834
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0223",
-          "dc:title": "Turn 223",
-          "corpus:begin": 557834,
-          "corpus:end": 560616
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0224",
-          "dc:title": "Turn 224",
-          "corpus:begin": 560616,
-          "corpus:end": 565226
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0225",
-          "dc:title": "Turn 225",
-          "corpus:begin": 565226,
-          "corpus:end": 568823
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0226",
-          "dc:title": "Turn 226",
-          "corpus:begin": 568823,
-          "corpus:end": 571952
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0227",
-          "dc:title": "Turn 227",
-          "corpus:begin": 571952,
-          "corpus:end": 572512
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0228",
-          "dc:title": "Turn 228",
-          "corpus:begin": 572512,
-          "corpus:end": 574077
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0229",
-          "dc:title": "Turn 229",
-          "corpus:begin": 574077,
-          "corpus:end": 574351
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0230",
-          "dc:title": "Turn 230",
-          "corpus:begin": 574351,
-          "corpus:end": 581015
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0231",
-          "dc:title": "Turn 231",
-          "corpus:begin": 581015,
-          "corpus:end": 581421
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0232",
-          "dc:title": "Turn 232",
-          "corpus:begin": 581421,
-          "corpus:end": 584009
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0233",
-          "dc:title": "Turn 233",
-          "corpus:begin": 584009,
-          "corpus:end": 585902
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0234",
-          "dc:title": "Turn 234",
-          "corpus:begin": 585902,
-          "corpus:end": 593719
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0235",
-          "dc:title": "Turn 235",
-          "corpus:begin": 593719,
-          "corpus:end": 596794
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0236",
-          "dc:title": "Turn 236",
-          "corpus:begin": 596794,
-          "corpus:end": 597316
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0237",
-          "dc:title": "Turn 237",
-          "corpus:begin": 597316,
-          "corpus:end": 599483
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0238",
-          "dc:title": "Turn 238",
-          "corpus:begin": 599483,
-          "corpus:end": 600314
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0239",
-          "dc:title": "Turn 239",
-          "corpus:begin": 600314,
-          "corpus:end": 601970
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0240",
-          "dc:title": "Turn 240",
-          "corpus:begin": 601970,
-          "corpus:end": 602380
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0241",
-          "dc:title": "Turn 241",
-          "corpus:begin": 602380,
-          "corpus:end": 603678
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0242",
-          "dc:title": "Turn 242",
-          "corpus:begin": 603678,
-          "corpus:end": 604045
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0243",
-          "dc:title": "Turn 243",
-          "corpus:begin": 604045,
-          "corpus:end": 606363
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0244",
-          "dc:title": "Turn 244",
-          "corpus:begin": 606363,
-          "corpus:end": 608395
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0245",
-          "dc:title": "Turn 245",
-          "corpus:begin": 608395,
-          "corpus:end": 608646
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0246",
-          "dc:title": "Turn 246",
-          "corpus:begin": 608646,
-          "corpus:end": 612325
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0247",
-          "dc:title": "Turn 247",
-          "corpus:begin": 612325,
-          "corpus:end": 612619
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0248",
-          "dc:title": "Turn 248",
-          "corpus:begin": 612619,
-          "corpus:end": 614130
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0249",
-          "dc:title": "Turn 249",
-          "corpus:begin": 614130,
-          "corpus:end": 615331
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0250",
-          "dc:title": "Turn 250",
-          "corpus:begin": 615331,
-          "corpus:end": 615718
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0251",
-          "dc:title": "Turn 251",
-          "corpus:begin": 615718,
-          "corpus:end": 618774
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0252",
-          "dc:title": "Turn 252",
-          "corpus:begin": 618774,
-          "corpus:end": 621328
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0253",
-          "dc:title": "Turn 253",
-          "corpus:begin": 621328,
-          "corpus:end": 622723
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0254",
-          "dc:title": "Turn 254",
-          "corpus:begin": 622723,
-          "corpus:end": 622959
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0255",
-          "dc:title": "Turn 255",
-          "corpus:begin": 622959,
-          "corpus:end": 624160
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0256",
-          "dc:title": "Turn 256",
-          "corpus:begin": 624160,
-          "corpus:end": 624354
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0257",
-          "dc:title": "Turn 257",
-          "corpus:begin": 624354,
-          "corpus:end": 630142
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0258",
-          "dc:title": "Turn 258",
-          "corpus:begin": 630142,
-          "corpus:end": 630300
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0259",
-          "dc:title": "Turn 259",
-          "corpus:begin": 630300,
-          "corpus:end": 635911
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0260",
-          "dc:title": "Turn 260",
-          "corpus:begin": 635911,
-          "corpus:end": 636011
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0261",
-          "dc:title": "Turn 261",
-          "corpus:begin": 636011,
-          "corpus:end": 638832
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0262",
-          "dc:title": "Turn 262",
-          "corpus:begin": 638832,
-          "corpus:end": 639184
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0263",
-          "dc:title": "Turn 263",
-          "corpus:begin": 639184,
-          "corpus:end": 641177
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0264",
-          "dc:title": "Turn 264",
-          "corpus:begin": 641177,
-          "corpus:end": 641622
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0265",
-          "dc:title": "Turn 265",
-          "corpus:begin": 641622,
-          "corpus:end": 641800
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0266",
-          "dc:title": "Turn 266",
-          "corpus:begin": 641800,
-          "corpus:end": 643117
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0267",
-          "dc:title": "Turn 267",
-          "corpus:begin": 643117,
-          "corpus:end": 644817
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0268",
-          "dc:title": "Turn 268",
-          "corpus:begin": 644817,
-          "corpus:end": 649519
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0269",
-          "dc:title": "Turn 269",
-          "corpus:begin": 649519,
-          "corpus:end": 652463
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0270",
-          "dc:title": "Turn 270",
-          "corpus:begin": 652463,
-          "corpus:end": 655515
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0271",
-          "dc:title": "Turn 271",
-          "corpus:begin": 655515,
-          "corpus:end": 655902
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0272",
-          "dc:title": "Turn 272",
-          "corpus:begin": 655902,
-          "corpus:end": 659228
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0273",
-          "dc:title": "Turn 273",
-          "corpus:begin": 659228,
-          "corpus:end": 659753
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0274",
-          "dc:title": "Turn 274",
-          "corpus:begin": 659753,
-          "corpus:end": 661357
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0275",
-          "dc:title": "Turn 275",
-          "corpus:begin": 661357,
-          "corpus:end": 662076
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0276",
-          "dc:title": "Turn 276",
-          "corpus:begin": 662076,
-          "corpus:end": 663127
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0277",
-          "dc:title": "Turn 277",
-          "corpus:begin": 663127,
-          "corpus:end": 672071
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0278",
-          "dc:title": "Turn 278",
-          "corpus:begin": 672071,
-          "corpus:end": 673617
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0279",
-          "dc:title": "Turn 279",
-          "corpus:begin": 673617,
-          "corpus:end": 676219
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0280",
-          "dc:title": "Turn 280",
-          "corpus:begin": 676219,
-          "corpus:end": 678609
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0281",
-          "dc:title": "Turn 281",
-          "corpus:begin": 678609,
-          "corpus:end": 679791
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0282",
-          "dc:title": "Turn 282",
-          "corpus:begin": 679791,
-          "corpus:end": 680158
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0283",
-          "dc:title": "Turn 283",
-          "corpus:begin": 680158,
-          "corpus:end": 682862
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0284",
-          "dc:title": "Turn 284",
-          "corpus:begin": 682862,
-          "corpus:end": 684099
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0285",
-          "dc:title": "Turn 285",
-          "corpus:begin": 684099,
-          "corpus:end": 690713
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0286",
-          "dc:title": "Turn 286",
-          "corpus:begin": 690713,
-          "corpus:end": 690983
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0287",
-          "dc:title": "Turn 287",
-          "corpus:begin": 690983,
-          "corpus:end": 701693
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0288",
-          "dc:title": "Turn 288",
-          "corpus:begin": 701693,
-          "corpus:end": 715652
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0289",
-          "dc:title": "Turn 289",
-          "corpus:begin": 715652,
-          "corpus:end": 716850
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0290",
-          "dc:title": "Turn 290",
-          "corpus:begin": 716850,
-          "corpus:end": 717940
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0291",
-          "dc:title": "Turn 291",
-          "corpus:begin": 717940,
-          "corpus:end": 722773
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0292",
-          "dc:title": "Turn 292",
-          "corpus:begin": 722773,
-          "corpus:end": 722970
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0293",
-          "dc:title": "Turn 293",
-          "corpus:begin": 722970,
-          "corpus:end": 727494
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0294",
-          "dc:title": "Turn 294",
-          "corpus:begin": 727494,
-          "corpus:end": 727803
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "dc:title": "Turn 295",
-          "corpus:begin": 727803,
-          "corpus:end": 747631
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0296",
-          "dc:title": "Turn 296",
-          "corpus:begin": 747631,
-          "corpus:end": 748250
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0297",
-          "dc:title": "Turn 297",
-          "corpus:begin": 748250,
-          "corpus:end": 751402
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0298",
-          "dc:title": "Turn 298",
-          "corpus:begin": 751402,
-          "corpus:end": 751692
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0299",
-          "dc:title": "Turn 299",
-          "corpus:begin": 751692,
-          "corpus:end": 754223
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0300",
-          "dc:title": "Turn 300",
-          "corpus:begin": 754223,
-          "corpus:end": 757781
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0301",
-          "dc:title": "Turn 301",
-          "corpus:begin": 757781,
-          "corpus:end": 764183
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0302",
-          "dc:title": "Turn 302",
-          "corpus:begin": 764183,
-          "corpus:end": 764550
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0303",
-          "dc:title": "Turn 303",
-          "corpus:begin": 764550,
-          "corpus:end": 774974
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0304",
-          "dc:title": "Turn 304",
-          "corpus:begin": 774974,
-          "corpus:end": 775573
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0305",
-          "dc:title": "Turn 305",
-          "corpus:begin": 775573,
-          "corpus:end": 781496
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0306",
-          "dc:title": "Turn 306",
-          "corpus:begin": 781496,
-          "corpus:end": 782504
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0307",
-          "dc:title": "Turn 307",
-          "corpus:begin": 782504,
-          "corpus:end": 783142
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0308",
-          "dc:title": "Turn 308",
-          "corpus:begin": 783142,
-          "corpus:end": 783320
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0309",
-          "dc:title": "Turn 309",
-          "corpus:begin": 783320,
-          "corpus:end": 785124
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0310",
-          "dc:title": "Turn 310",
-          "corpus:begin": 785124,
-          "corpus:end": 785201
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0311",
-          "dc:title": "Turn 311",
-          "corpus:begin": 785201,
-          "corpus:end": 790576
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0312",
-          "dc:title": "Turn 312",
-          "corpus:begin": 790576,
-          "corpus:end": 791685
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0313",
-          "dc:title": "Turn 313",
-          "corpus:begin": 791685,
-          "corpus:end": 799512
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0314",
-          "dc:title": "Turn 314",
-          "corpus:begin": 799512,
-          "corpus:end": 800756
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0315",
-          "dc:title": "Turn 315",
-          "corpus:begin": 800756,
-          "corpus:end": 801143
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0316",
-          "dc:title": "Turn 316",
-          "corpus:begin": 801143,
-          "corpus:end": 803870
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0317",
-          "dc:title": "Turn 317",
-          "corpus:begin": 803870,
-          "corpus:end": 807950
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0318",
-          "dc:title": "Turn 318",
-          "corpus:begin": 807950,
-          "corpus:end": 818988
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0319",
-          "dc:title": "Turn 319",
-          "corpus:begin": 818988,
-          "corpus:end": 821546
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0320",
-          "dc:title": "Turn 320",
-          "corpus:begin": 821546,
-          "corpus:end": 833782
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0321",
-          "dc:title": "Turn 321",
-          "corpus:begin": 833782,
-          "corpus:end": 834226
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0322",
-          "dc:title": "Turn 322",
-          "corpus:begin": 834226,
-          "corpus:end": 838650
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0323",
-          "dc:title": "Turn 323",
-          "corpus:begin": 838650,
-          "corpus:end": 840218
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0324",
-          "dc:title": "Turn 324",
-          "corpus:begin": 840218,
-          "corpus:end": 840779
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0325",
-          "dc:title": "Turn 325",
-          "corpus:begin": 840779,
-          "corpus:end": 841598
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0326",
-          "dc:title": "Turn 326",
-          "corpus:begin": 841598,
-          "corpus:end": 849218
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0327",
-          "dc:title": "Turn 327",
-          "corpus:begin": 849218,
-          "corpus:end": 849531
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0328",
-          "dc:title": "Turn 328",
-          "corpus:begin": 849531,
-          "corpus:end": 857825
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0329",
-          "dc:title": "Turn 329",
-          "corpus:begin": 857825,
-          "corpus:end": 857999
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "dc:title": "Turn 330",
-          "corpus:begin": 857999,
-          "corpus:end": 896785
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0331",
-          "dc:title": "Turn 331",
-          "corpus:begin": 896785,
-          "corpus:end": 897017
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0332",
-          "dc:title": "Turn 332",
-          "corpus:begin": 897017,
-          "corpus:end": 898717
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0333",
-          "dc:title": "Turn 333",
-          "corpus:begin": 898717,
-          "corpus:end": 898798
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0334",
-          "dc:title": "Turn 334",
-          "corpus:begin": 898798,
-          "corpus:end": 902858
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0335",
-          "dc:title": "Turn 335",
-          "corpus:begin": 902858,
-          "corpus:end": 904597
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0336",
-          "dc:title": "Turn 336",
-          "corpus:begin": 904597,
-          "corpus:end": 905412
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0337",
-          "dc:title": "Turn 337",
-          "corpus:begin": 905412,
-          "corpus:end": 905489
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0338",
-          "dc:title": "Turn 338",
-          "corpus:begin": 905489,
-          "corpus:end": 906185
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0339",
-          "dc:title": "Turn 339",
-          "corpus:begin": 906185,
-          "corpus:end": 908743
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0340",
-          "dc:title": "Turn 340",
-          "corpus:begin": 908743,
-          "corpus:end": 913314
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0341",
-          "dc:title": "Turn 341",
-          "corpus:begin": 913314,
-          "corpus:end": 915597
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0342",
-          "dc:title": "Turn 342",
-          "corpus:begin": 915597,
-          "corpus:end": 916293
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0343",
-          "dc:title": "Turn 343",
-          "corpus:begin": 916293,
-          "corpus:end": 921192
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0344",
-          "dc:title": "Turn 344",
-          "corpus:begin": 921192,
-          "corpus:end": 923650
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0345",
-          "dc:title": "Turn 345",
-          "corpus:begin": 923650,
-          "corpus:end": 924079
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0346",
-          "dc:title": "Turn 346",
-          "corpus:begin": 924079,
-          "corpus:end": 924527
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0347",
-          "dc:title": "Turn 347",
-          "corpus:begin": 924527,
-          "corpus:end": 934430
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0348",
-          "dc:title": "Turn 348",
-          "corpus:begin": 934430,
-          "corpus:end": 935786
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0349",
-          "dc:title": "Turn 349",
-          "corpus:begin": 935786,
-          "corpus:end": 942927
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0350",
-          "dc:title": "Turn 350",
-          "corpus:begin": 942927,
-          "corpus:end": 945944
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0351",
-          "dc:title": "Turn 351",
-          "corpus:begin": 945944,
-          "corpus:end": 964513
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0352",
-          "dc:title": "Turn 352",
-          "corpus:begin": 964513,
-          "corpus:end": 964923
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0353",
-          "dc:title": "Turn 353",
-          "corpus:begin": 964923,
-          "corpus:end": 967747
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0354",
-          "dc:title": "Turn 354",
-          "corpus:begin": 967747,
-          "corpus:end": 968848
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0355",
-          "dc:title": "Turn 355",
-          "corpus:begin": 968848,
-          "corpus:end": 979650
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0356",
-          "dc:title": "Turn 356",
-          "corpus:begin": 979650,
-          "corpus:end": 982764
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0357",
-          "dc:title": "Turn 357",
-          "corpus:begin": 982764,
-          "corpus:end": 984352
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0358",
-          "dc:title": "Turn 358",
-          "corpus:begin": 984352,
-          "corpus:end": 984472
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0359",
-          "dc:title": "Turn 359",
-          "corpus:begin": 984472,
-          "corpus:end": 986064
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0360",
-          "dc:title": "Turn 360",
-          "corpus:begin": 986064,
-          "corpus:end": 986450
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0361",
-          "dc:title": "Turn 361",
-          "corpus:begin": 986450,
-          "corpus:end": 990275
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0362",
-          "dc:title": "Turn 362",
-          "corpus:begin": 990275,
-          "corpus:end": 991844
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0363",
-          "dc:title": "Turn 363",
-          "corpus:begin": 991844,
-          "corpus:end": 997241
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0364",
-          "dc:title": "Turn 364",
-          "corpus:begin": 997241,
-          "corpus:end": 998551
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "dc:title": "Turn 365",
-          "corpus:begin": 998551,
-          "corpus:end": 1021444
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0366",
-          "dc:title": "Turn 366",
-          "corpus:begin": 1021444,
-          "corpus:end": 1022548
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0367",
-          "dc:title": "Turn 367",
-          "corpus:begin": 1022548,
-          "corpus:end": 1033899
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0368",
-          "dc:title": "Turn 368",
-          "corpus:begin": 1033899,
-          "corpus:end": 1034556
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0369",
-          "dc:title": "Turn 369",
-          "corpus:begin": 1034556,
-          "corpus:end": 1037106
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0370",
-          "dc:title": "Turn 370",
-          "corpus:begin": 1037106,
-          "corpus:end": 1037535
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0371",
-          "dc:title": "Turn 371",
-          "corpus:begin": 1037535,
-          "corpus:end": 1039556
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0372",
-          "dc:title": "Turn 372",
-          "corpus:begin": 1039556,
-          "corpus:end": 1039634
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0373",
-          "dc:title": "Turn 373",
-          "corpus:begin": 1039634,
-          "corpus:end": 1041260
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0374",
-          "dc:title": "Turn 374",
-          "corpus:begin": 1041260,
-          "corpus:end": 1041647
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0375",
-          "dc:title": "Turn 375",
-          "corpus:begin": 1041647,
-          "corpus:end": 1044548
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0376",
-          "dc:title": "Turn 376",
-          "corpus:begin": 1044548,
-          "corpus:end": 1045012
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0377",
-          "dc:title": "Turn 377",
-          "corpus:begin": 1045012,
-          "corpus:end": 1047778
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0378",
-          "dc:title": "Turn 378",
-          "corpus:begin": 1047778,
-          "corpus:end": 1048029
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0379",
-          "dc:title": "Turn 379",
-          "corpus:begin": 1048029,
-          "corpus:end": 1048937
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0380",
-          "dc:title": "Turn 380",
-          "corpus:begin": 1048937,
-          "corpus:end": 1051708
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0381",
-          "dc:title": "Turn 381",
-          "corpus:begin": 1051708,
-          "corpus:end": 1054474
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0382",
-          "dc:title": "Turn 382",
-          "corpus:begin": 1054474,
-          "corpus:end": 1056753
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0383",
-          "dc:title": "Turn 383",
-          "corpus:begin": 1056753,
-          "corpus:end": 1072474
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0384",
-          "dc:title": "Turn 384",
-          "corpus:begin": 1072474,
-          "corpus:end": 1072822
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0385",
-          "dc:title": "Turn 385",
-          "corpus:begin": 1072822,
-          "corpus:end": 1073811
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0386",
-          "dc:title": "Turn 386",
-          "corpus:begin": 1073811,
-          "corpus:end": 1074336
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0387",
-          "dc:title": "Turn 387",
-          "corpus:begin": 1074336,
-          "corpus:end": 1084041
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0388",
-          "dc:title": "Turn 388",
-          "corpus:begin": 1084041,
-          "corpus:end": 1084973
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0389",
-          "dc:title": "Turn 389",
-          "corpus:begin": 1084973,
-          "corpus:end": 1095663
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0390",
-          "dc:title": "Turn 390",
-          "corpus:begin": 1095663,
-          "corpus:end": 1106036
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0391",
-          "dc:title": "Turn 391",
-          "corpus:begin": 1106036,
-          "corpus:end": 1107377
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0392",
-          "dc:title": "Turn 392",
-          "corpus:begin": 1107377,
-          "corpus:end": 1116461
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0393",
-          "dc:title": "Turn 393",
-          "corpus:begin": 1116461,
-          "corpus:end": 1116596
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0394",
-          "dc:title": "Turn 394",
-          "corpus:begin": 1116596,
-          "corpus:end": 1120680
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0395",
-          "dc:title": "Turn 395",
-          "corpus:begin": 1120680,
-          "corpus:end": 1120835
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0396",
-          "dc:title": "Turn 396",
-          "corpus:begin": 1120835,
-          "corpus:end": 1141622
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0397",
-          "dc:title": "Turn 397",
-          "corpus:begin": 1141622,
-          "corpus:end": 1143345
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0398",
-          "dc:title": "Turn 398",
-          "corpus:begin": 1143345,
-          "corpus:end": 1146436
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0399",
-          "dc:title": "Turn 399",
-          "corpus:begin": 1146436,
-          "corpus:end": 1149743
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0400",
-          "dc:title": "Turn 400",
-          "corpus:begin": 1149743,
-          "corpus:end": 1156956
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0401",
-          "dc:title": "Turn 401",
-          "corpus:begin": 1156956,
-          "corpus:end": 1177926
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0402",
-          "dc:title": "Turn 402",
-          "corpus:begin": 1177926,
-          "corpus:end": 1179974
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0403",
-          "dc:title": "Turn 403",
-          "corpus:begin": 1179974,
-          "corpus:end": 1181948
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0404",
-          "dc:title": "Turn 404",
-          "corpus:begin": 1181948,
-          "corpus:end": 1183188
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0405",
-          "dc:title": "Turn 405",
-          "corpus:begin": 1183188,
-          "corpus:end": 1190760
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0406",
-          "dc:title": "Turn 406",
-          "corpus:begin": 1190760,
-          "corpus:end": 1191011
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0407",
-          "dc:title": "Turn 407",
-          "corpus:begin": 1191011,
-          "corpus:end": 1195126
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0408",
-          "dc:title": "Turn 408",
-          "corpus:begin": 1195126,
-          "corpus:end": 1195574
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0409",
-          "dc:title": "Turn 409",
-          "corpus:begin": 1195574,
-          "corpus:end": 1201006
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0410",
-          "dc:title": "Turn 410",
-          "corpus:begin": 1201006,
-          "corpus:end": 1206527
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0411",
-          "dc:title": "Turn 411",
-          "corpus:begin": 1206527,
-          "corpus:end": 1226910
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0412",
-          "dc:title": "Turn 412",
-          "corpus:begin": 1226910,
-          "corpus:end": 1227667
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0413",
-          "dc:title": "Turn 413",
-          "corpus:begin": 1227667,
-          "corpus:end": 1228092
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0414",
-          "dc:title": "Turn 414",
-          "corpus:begin": 1228092,
-          "corpus:end": 1231955
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0415",
-          "dc:title": "Turn 415",
-          "corpus:begin": 1231955,
-          "corpus:end": 1232303
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0416",
-          "dc:title": "Turn 416",
-          "corpus:begin": 1232303,
-          "corpus:end": 1243414
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0417",
-          "dc:title": "Turn 417",
-          "corpus:begin": 1243414,
-          "corpus:end": 1244824
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0418",
-          "dc:title": "Turn 418",
-          "corpus:begin": 1244824,
-          "corpus:end": 1246427
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0419",
-          "dc:title": "Turn 419",
-          "corpus:begin": 1246427,
-          "corpus:end": 1248765
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0420",
-          "dc:title": "Turn 420",
-          "corpus:begin": 1248765,
-          "corpus:end": 1250338
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0421",
-          "dc:title": "Turn 421",
-          "corpus:begin": 1250338,
-          "corpus:end": 1257300
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0422",
-          "dc:title": "Turn 422",
-          "corpus:begin": 1257300,
-          "corpus:end": 1259530
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0423",
-          "dc:title": "Turn 423",
-          "corpus:begin": 1259530,
-          "corpus:end": 1265245
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0424",
-          "dc:title": "Turn 424",
-          "corpus:begin": 1265245,
-          "corpus:end": 1266369
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0425",
-          "dc:title": "Turn 425",
-          "corpus:begin": 1266369,
-          "corpus:end": 1271473
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0426",
-          "dc:title": "Turn 426",
-          "corpus:begin": 1271473,
-          "corpus:end": 1271960
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0427",
-          "dc:title": "Turn 427",
-          "corpus:begin": 1271960,
-          "corpus:end": 1273200
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0428",
-          "dc:title": "Turn 428",
-          "corpus:begin": 1273200,
-          "corpus:end": 1274093
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0429",
-          "dc:title": "Turn 429",
-          "corpus:begin": 1274093,
-          "corpus:end": 1277211
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0430",
-          "dc:title": "Turn 430",
-          "corpus:begin": 1277211,
-          "corpus:end": 1278509
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0431",
-          "dc:title": "Turn 431",
-          "corpus:begin": 1278509,
-          "corpus:end": 1280402
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0432",
-          "dc:title": "Turn 432",
-          "corpus:begin": 1280402,
-          "corpus:end": 1281522
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0433",
-          "dc:title": "Turn 433",
-          "corpus:begin": 1281522,
-          "corpus:end": 1284787
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0434",
-          "dc:title": "Turn 434",
-          "corpus:begin": 1284787,
-          "corpus:end": 1285023
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0435",
-          "dc:title": "Turn 435",
-          "corpus:begin": 1285023,
-          "corpus:end": 1286109
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0436",
-          "dc:title": "Turn 436",
-          "corpus:begin": 1286109,
-          "corpus:end": 1286538
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0437",
-          "dc:title": "Turn 437",
-          "corpus:begin": 1286538,
-          "corpus:end": 1287855
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0438",
-          "dc:title": "Turn 438",
-          "corpus:begin": 1287855,
-          "corpus:end": 1288300
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0439",
-          "dc:title": "Turn 439",
-          "corpus:begin": 1288300,
-          "corpus:end": 1293748
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0440",
-          "dc:title": "Turn 440",
-          "corpus:begin": 1293748,
-          "corpus:end": 1294486
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0441",
-          "dc:title": "Turn 441",
-          "corpus:begin": 1294486,
-          "corpus:end": 1299265
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0442",
-          "dc:title": "Turn 442",
-          "corpus:begin": 1299265,
-          "corpus:end": 1300463
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0443",
-          "dc:title": "Turn 443",
-          "corpus:begin": 1300463,
-          "corpus:end": 1300873
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0444",
-          "dc:title": "Turn 444",
-          "corpus:begin": 1300873,
-          "corpus:end": 1309751
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0445",
-          "dc:title": "Turn 445",
-          "corpus:begin": 1309751,
-          "corpus:end": 1310099
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0446",
-          "dc:title": "Turn 446",
-          "corpus:begin": 1310099,
-          "corpus:end": 1310760
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0447",
-          "dc:title": "Turn 447",
-          "corpus:begin": 1310760,
-          "corpus:end": 1311227
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0448",
-          "dc:title": "Turn 448",
-          "corpus:begin": 1311227,
-          "corpus:end": 1320256
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0449",
-          "dc:title": "Turn 449",
-          "corpus:begin": 1320256,
-          "corpus:end": 1326898
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0450",
-          "dc:title": "Turn 450",
-          "corpus:begin": 1326898,
-          "corpus:end": 1330228
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0451",
-          "dc:title": "Turn 451",
-          "corpus:begin": 1330228,
-          "corpus:end": 1340223
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0452",
-          "dc:title": "Turn 452",
-          "corpus:begin": 1340223,
-          "corpus:end": 1342274
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0453",
-          "dc:title": "Turn 453",
-          "corpus:begin": 1342274,
-          "corpus:end": 1349747
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0454",
-          "dc:title": "Turn 454",
-          "corpus:begin": 1349747,
-          "corpus:end": 1351049
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0455",
-          "dc:title": "Turn 455",
-          "corpus:begin": 1351049,
-          "corpus:end": 1353464
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0456",
-          "dc:title": "Turn 456",
-          "corpus:begin": 1353464,
-          "corpus:end": 1363710
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0457",
-          "dc:title": "Turn 457",
-          "corpus:begin": 1363710,
-          "corpus:end": 1364371
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0458",
-          "dc:title": "Turn 458",
-          "corpus:begin": 1364371,
-          "corpus:end": 1364742
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0459",
-          "dc:title": "Turn 459",
-          "corpus:begin": 1364742,
-          "corpus:end": 1385598
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0460",
-          "dc:title": "Turn 460",
-          "corpus:begin": 1385598,
-          "corpus:end": 1386699
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0461",
-          "dc:title": "Turn 461",
-          "corpus:begin": 1386699,
-          "corpus:end": 1388805
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0462",
-          "dc:title": "Turn 462",
-          "corpus:begin": 1388805,
-          "corpus:end": 1391711
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0463",
-          "dc:title": "Turn 463",
-          "corpus:begin": 1391711,
-          "corpus:end": 1402104
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0464",
-          "dc:title": "Turn 464",
-          "corpus:begin": 1402104,
-          "corpus:end": 1412373
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0465",
-          "dc:title": "Turn 465",
-          "corpus:begin": 1412373,
-          "corpus:end": 1436949
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0466",
-          "dc:title": "Turn 466",
-          "corpus:begin": 1436949,
-          "corpus:end": 1437451
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0467",
-          "dc:title": "Turn 467",
-          "corpus:begin": 1437451,
-          "corpus:end": 1439827
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0468",
-          "dc:title": "Turn 468",
-          "corpus:begin": 1439827,
-          "corpus:end": 1440349
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0469",
-          "dc:title": "Turn 469",
-          "corpus:begin": 1440349,
-          "corpus:end": 1445592
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0470",
-          "dc:title": "Turn 470",
-          "corpus:begin": 1445592,
-          "corpus:end": 1447489
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0471",
-          "dc:title": "Turn 471",
-          "corpus:begin": 1447489,
-          "corpus:end": 1447976
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0472",
-          "dc:title": "Turn 472",
-          "corpus:begin": 1447976,
-          "corpus:end": 1452369
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0473",
-          "dc:title": "Turn 473",
-          "corpus:begin": 1452369,
-          "corpus:end": 1454787
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0474",
-          "dc:title": "Turn 474",
-          "corpus:begin": 1454787,
-          "corpus:end": 1455290
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0475",
-          "dc:title": "Turn 475",
-          "corpus:begin": 1455290,
-          "corpus:end": 1458446
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0476",
-          "dc:title": "Turn 476",
-          "corpus:begin": 1458446,
-          "corpus:end": 1459741
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0477",
-          "dc:title": "Turn 477",
-          "corpus:begin": 1459741,
-          "corpus:end": 1464269
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0478",
-          "dc:title": "Turn 478",
-          "corpus:begin": 1464269,
-          "corpus:end": 1465757
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0479",
-          "dc:title": "Turn 479",
-          "corpus:begin": 1465757,
-          "corpus:end": 1474206
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0480",
-          "dc:title": "Turn 480",
-          "corpus:begin": 1474206,
-          "corpus:end": 1478962
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0481",
-          "dc:title": "Turn 481",
-          "corpus:begin": 1478962,
-          "corpus:end": 1491475
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0482",
-          "dc:title": "Turn 482",
-          "corpus:begin": 1491475,
-          "corpus:end": 1492094
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0483",
-          "dc:title": "Turn 483",
-          "corpus:begin": 1492094,
-          "corpus:end": 1497742
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0484",
-          "dc:title": "Turn 484",
-          "corpus:begin": 1497742,
-          "corpus:end": 1497993
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0485",
-          "dc:title": "Turn 485",
-          "corpus:begin": 1497993,
-          "corpus:end": 1510109
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0486",
-          "dc:title": "Turn 486",
-          "corpus:begin": 1510109,
-          "corpus:end": 1513787
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0487",
-          "dc:title": "Turn 487",
-          "corpus:begin": 1513787,
-          "corpus:end": 1515568
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0488",
-          "dc:title": "Turn 488",
-          "corpus:begin": 1515568,
-          "corpus:end": 1515958
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0489",
-          "dc:title": "Turn 489",
-          "corpus:begin": 1515958,
-          "corpus:end": 1517639
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0490",
-          "dc:title": "Turn 490",
-          "corpus:begin": 1517639,
-          "corpus:end": 1523519
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "dc:title": "Turn 491",
-          "corpus:begin": 1523519,
-          "corpus:end": 1556257
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0492",
-          "dc:title": "Turn 492",
-          "corpus:begin": 1556257,
-          "corpus:end": 1559718
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0493",
-          "dc:title": "Turn 493",
-          "corpus:begin": 1559718,
-          "corpus:end": 1560182
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0494",
-          "dc:title": "Turn 494",
-          "corpus:begin": 1560182,
-          "corpus:end": 1564470
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0495",
-          "dc:title": "Turn 495",
-          "corpus:begin": 1564470,
-          "corpus:end": 1565707
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0496",
-          "dc:title": "Turn 496",
-          "corpus:begin": 1565707,
-          "corpus:end": 1580717
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0497",
-          "dc:title": "Turn 497",
-          "corpus:begin": 1580717,
-          "corpus:end": 1580798
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0498",
-          "dc:title": "Turn 498",
-          "corpus:begin": 1580798,
-          "corpus:end": 1586091
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0499",
-          "dc:title": "Turn 499",
-          "corpus:begin": 1586091,
-          "corpus:end": 1586868
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0500",
-          "dc:title": "Turn 500",
-          "corpus:begin": 1586868,
-          "corpus:end": 1596686
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0501",
-          "dc:title": "Turn 501",
-          "corpus:begin": 1596686,
-          "corpus:end": 1600735
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0502",
-          "dc:title": "Turn 502",
-          "corpus:begin": 1600735,
-          "corpus:end": 1603188
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0503",
-          "dc:title": "Turn 503",
-          "corpus:begin": 1603188,
-          "corpus:end": 1625611
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0504",
-          "dc:title": "Turn 504",
-          "corpus:begin": 1625611,
-          "corpus:end": 1628915
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0505",
-          "dc:title": "Turn 505",
-          "corpus:begin": 1628915,
-          "corpus:end": 1650685
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0506",
-          "dc:title": "Turn 506",
-          "corpus:begin": 1650685,
-          "corpus:end": 1651033
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0507",
-          "dc:title": "Turn 507",
-          "corpus:begin": 1651033,
-          "corpus:end": 1658030
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0508",
-          "dc:title": "Turn 508",
-          "corpus:begin": 1658030,
-          "corpus:end": 1658227
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0509",
-          "dc:title": "Turn 509",
-          "corpus:begin": 1658227,
-          "corpus:end": 1666421
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0510",
-          "dc:title": "Turn 510",
-          "corpus:begin": 1666421,
-          "corpus:end": 1672851
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0511",
-          "dc:title": "Turn 511",
-          "corpus:begin": 1672851,
-          "corpus:end": 1673999
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0512",
-          "dc:title": "Turn 512",
-          "corpus:begin": 1673999,
-          "corpus:end": 1690808
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0513",
-          "dc:title": "Turn 513",
-          "corpus:begin": 1690808,
-          "corpus:end": 1691136
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0514",
-          "dc:title": "Turn 514",
-          "corpus:begin": 1691136,
-          "corpus:end": 1692991
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0515",
-          "dc:title": "Turn 515",
-          "corpus:begin": 1692991,
-          "corpus:end": 1693690
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0516",
-          "dc:title": "Turn 516",
-          "corpus:begin": 1693690,
-          "corpus:end": 1706448
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0517",
-          "dc:title": "Turn 517",
-          "corpus:begin": 1706448,
-          "corpus:end": 1708287
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0518",
-          "dc:title": "Turn 518",
-          "corpus:begin": 1708287,
-          "corpus:end": 1708890
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0519",
-          "dc:title": "Turn 519",
-          "corpus:begin": 1708890,
-          "corpus:end": 1709203
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0520",
-          "dc:title": "Turn 520",
-          "corpus:begin": 1709203,
-          "corpus:end": 1715025
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0521",
-          "dc:title": "Turn 521",
-          "corpus:begin": 1715025,
-          "corpus:end": 1716957
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0522",
-          "dc:title": "Turn 522",
-          "corpus:begin": 1716957,
-          "corpus:end": 1723397
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0523",
-          "dc:title": "Turn 523",
-          "corpus:begin": 1723397,
-          "corpus:end": 1727014
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0524",
-          "dc:title": "Turn 524",
-          "corpus:begin": 1727014,
-          "corpus:end": 1729112
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0525",
-          "dc:title": "Turn 525",
-          "corpus:begin": 1729112,
-          "corpus:end": 1732106
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0526",
-          "dc:title": "Turn 526",
-          "corpus:begin": 1732106,
-          "corpus:end": 1732666
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0527",
-          "dc:title": "Turn 527",
-          "corpus:begin": 1732666,
-          "corpus:end": 1734637
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0528",
-          "dc:title": "Turn 528",
-          "corpus:begin": 1734637,
-          "corpus:end": 1735240
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0529",
-          "dc:title": "Turn 529",
-          "corpus:begin": 1735240,
-          "corpus:end": 1741348
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0530",
-          "dc:title": "Turn 530",
-          "corpus:begin": 1741348,
-          "corpus:end": 1742202
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0531",
-          "dc:title": "Turn 531",
-          "corpus:begin": 1742202,
-          "corpus:end": 1743094
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0532",
-          "dc:title": "Turn 532",
-          "corpus:begin": 1743094,
-          "corpus:end": 1745760
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0533",
-          "dc:title": "Turn 533",
-          "corpus:begin": 1745760,
-          "corpus:end": 1750280
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0534",
-          "dc:title": "Turn 534",
-          "corpus:begin": 1750280,
-          "corpus:end": 1751265
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0535",
-          "dc:title": "Turn 535",
-          "corpus:begin": 1751265,
-          "corpus:end": 1757678
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0536",
-          "dc:title": "Turn 536",
-          "corpus:begin": 1757678,
-          "corpus:end": 1762951
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0537",
-          "dc:title": "Turn 537",
-          "corpus:begin": 1762951,
-          "corpus:end": 1764713
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0538",
-          "dc:title": "Turn 538",
-          "corpus:begin": 1764713,
-          "corpus:end": 1779077
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0539",
-          "dc:title": "Turn 539",
-          "corpus:begin": 1779077,
-          "corpus:end": 1779970
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0540",
-          "dc:title": "Turn 540",
-          "corpus:begin": 1779970,
-          "corpus:end": 1786531
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0541",
-          "dc:title": "Turn 541",
-          "corpus:begin": 1786531,
-          "corpus:end": 1792160
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0542",
-          "dc:title": "Turn 542",
-          "corpus:begin": 1792160,
-          "corpus:end": 1794536
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0543",
-          "dc:title": "Turn 543",
-          "corpus:begin": 1794536,
-          "corpus:end": 1797899
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0544",
-          "dc:title": "Turn 544",
-          "corpus:begin": 1797899,
-          "corpus:end": 1799056
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0545",
-          "dc:title": "Turn 545",
-          "corpus:begin": 1799056,
-          "corpus:end": 1800489
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0546",
-          "dc:title": "Turn 546",
-          "corpus:begin": 1800489,
-          "corpus:end": 1809784
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "dc:title": "Turn 547",
-          "corpus:begin": 1809784,
-          "corpus:end": 1841912
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0548",
-          "dc:title": "Turn 548",
-          "corpus:begin": 1841912,
-          "corpus:end": 1842145
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0549",
-          "dc:title": "Turn 549",
-          "corpus:begin": 1842145,
-          "corpus:end": 1847833
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0550",
-          "dc:title": "Turn 550",
-          "corpus:begin": 1847833,
-          "corpus:end": 1852193
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0551",
-          "dc:title": "Turn 551",
-          "corpus:begin": 1852193,
-          "corpus:end": 1852442
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0552",
-          "dc:title": "Turn 552",
-          "corpus:begin": 1852442,
-          "corpus:end": 1853268
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0553",
-          "dc:title": "Turn 553",
-          "corpus:begin": 1853268,
-          "corpus:end": 1864537
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0554",
-          "dc:title": "Turn 554",
-          "corpus:begin": 1864537,
-          "corpus:end": 1864942
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0555",
-          "dc:title": "Turn 555",
-          "corpus:begin": 1864942,
-          "corpus:end": 1869460
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0556",
-          "dc:title": "Turn 556",
-          "corpus:begin": 1869460,
-          "corpus:end": 1869942
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0557",
-          "dc:title": "Turn 557",
-          "corpus:begin": 1869942,
-          "corpus:end": 1871131
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0558",
-          "dc:title": "Turn 558",
-          "corpus:begin": 1871131,
-          "corpus:end": 1871667
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0559",
-          "dc:title": "Turn 559",
-          "corpus:begin": 1871667,
-          "corpus:end": 1872856
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0560",
-          "dc:title": "Turn 560",
-          "corpus:begin": 1872856,
-          "corpus:end": 1881416
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0561",
-          "dc:title": "Turn 561",
-          "corpus:begin": 1881416,
-          "corpus:end": 1893663
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0562",
-          "dc:title": "Turn 562",
-          "corpus:begin": 1893663,
-          "corpus:end": 1894792
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0563",
-          "dc:title": "Turn 563",
-          "corpus:begin": 1894792,
-          "corpus:end": 1905039
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0564",
-          "dc:title": "Turn 564",
-          "corpus:begin": 1905039,
-          "corpus:end": 1909479
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0565",
-          "dc:title": "Turn 565",
-          "corpus:begin": 1909479,
-          "corpus:end": 1916292
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0566",
-          "dc:title": "Turn 566",
-          "corpus:begin": 1916292,
-          "corpus:end": 1916581
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0567",
-          "dc:title": "Turn 567",
-          "corpus:begin": 1916581,
-          "corpus:end": 1922334
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0568",
-          "dc:title": "Turn 568",
-          "corpus:begin": 1922334,
-          "corpus:end": 1924489
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0569",
-          "dc:title": "Turn 569",
-          "corpus:begin": 1924489,
-          "corpus:end": 1928853
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0570",
-          "dc:title": "Turn 570",
-          "corpus:begin": 1928853,
-          "corpus:end": 1930062
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0571",
-          "dc:title": "Turn 571",
-          "corpus:begin": 1930062,
-          "corpus:end": 1935677
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0572",
-          "dc:title": "Turn 572",
-          "corpus:begin": 1935677,
-          "corpus:end": 1936022
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0573",
-          "dc:title": "Turn 573",
-          "corpus:begin": 1936022,
-          "corpus:end": 1942761
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0574",
-          "dc:title": "Turn 574",
-          "corpus:begin": 1942761,
-          "corpus:end": 1944521
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0575",
-          "dc:title": "Turn 575",
-          "corpus:begin": 1944521,
-          "corpus:end": 1951050
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0576",
-          "dc:title": "Turn 576",
-          "corpus:begin": 1951050,
-          "corpus:end": 1956347
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0577",
-          "dc:title": "Turn 577",
-          "corpus:begin": 1956347,
-          "corpus:end": 1963408
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0578",
-          "dc:title": "Turn 578",
-          "corpus:begin": 1963408,
-          "corpus:end": 1966176
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0579",
-          "dc:title": "Turn 579",
-          "corpus:begin": 1966176,
-          "corpus:end": 1968934
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0580",
-          "dc:title": "Turn 580",
-          "corpus:begin": 1968934,
-          "corpus:end": 1971118
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0581",
-          "dc:title": "Turn 581",
-          "corpus:begin": 1971118,
-          "corpus:end": 1972786
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0582",
-          "dc:title": "Turn 582",
-          "corpus:begin": 1972786,
-          "corpus:end": 1975677
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0583",
-          "dc:title": "Turn 583",
-          "corpus:begin": 1975677,
-          "corpus:end": 1976423
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0584",
-          "dc:title": "Turn 584",
-          "corpus:begin": 1976423,
-          "corpus:end": 1976844
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0585",
-          "dc:title": "Turn 585",
-          "corpus:begin": 1976844,
-          "corpus:end": 1982604
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0586",
-          "dc:title": "Turn 586",
-          "corpus:begin": 1982604,
-          "corpus:end": 1983889
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0587",
-          "dc:title": "Turn 587",
-          "corpus:begin": 1983889,
-          "corpus:end": 1984099
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0588",
-          "dc:title": "Turn 588",
-          "corpus:begin": 1984099,
-          "corpus:end": 1987848
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0589",
-          "dc:title": "Turn 589",
-          "corpus:begin": 1987848,
-          "corpus:end": 1988445
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0590",
-          "dc:title": "Turn 590",
-          "corpus:begin": 1988445,
-          "corpus:end": 1990036
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0591",
-          "dc:title": "Turn 591",
-          "corpus:begin": 1990036,
-          "corpus:end": 1990457
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0592",
-          "dc:title": "Turn 592",
-          "corpus:begin": 1990457,
-          "corpus:end": 1991188
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0593",
-          "dc:title": "Turn 593",
-          "corpus:begin": 1991188,
-          "corpus:end": 1999036
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0594",
-          "dc:title": "Turn 594",
-          "corpus:begin": 1999036,
-          "corpus:end": 2001220
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0595",
-          "dc:title": "Turn 595",
-          "corpus:begin": 2001220,
-          "corpus:end": 2002065
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0596",
-          "dc:title": "Turn 596",
-          "corpus:begin": 2002065,
-          "corpus:end": 2002486
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0597",
-          "dc:title": "Turn 597",
-          "corpus:begin": 2002486,
-          "corpus:end": 2005492
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0598",
-          "dc:title": "Turn 598",
-          "corpus:begin": 2005492,
-          "corpus:end": 2005894
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0599",
-          "dc:title": "Turn 599",
-          "corpus:begin": 2005894,
-          "corpus:end": 2012963
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0600",
-          "dc:title": "Turn 600",
-          "corpus:begin": 2012963,
-          "corpus:end": 2016971
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0601",
-          "dc:title": "Turn 601",
-          "corpus:begin": 2016971,
-          "corpus:end": 2017376
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0602",
-          "dc:title": "Turn 602",
-          "corpus:begin": 2017376,
-          "corpus:end": 2020857
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0603",
-          "dc:title": "Turn 603",
-          "corpus:begin": 2020857,
-          "corpus:end": 2021129
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0604",
-          "dc:title": "Turn 604",
-          "corpus:begin": 2021129,
-          "corpus:end": 2027520
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0605",
-          "dc:title": "Turn 605",
-          "corpus:begin": 2027520,
-          "corpus:end": 2028327
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0606",
-          "dc:title": "Turn 606",
-          "corpus:begin": 2028327,
-          "corpus:end": 2029363
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0607",
-          "dc:title": "Turn 607",
-          "corpus:begin": 2029363,
-          "corpus:end": 2035505
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0608",
-          "dc:title": "Turn 608",
-          "corpus:begin": 2035505,
-          "corpus:end": 2036940
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0609",
-          "dc:title": "Turn 609",
-          "corpus:begin": 2036940,
-          "corpus:end": 2041293
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0610",
-          "dc:title": "Turn 610",
-          "corpus:begin": 2041293,
-          "corpus:end": 2044835
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0611",
-          "dc:title": "Turn 611",
-          "corpus:begin": 2044835,
-          "corpus:end": 2046560
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0612",
-          "dc:title": "Turn 612",
-          "corpus:begin": 2046560,
-          "corpus:end": 2051030
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0613",
-          "dc:title": "Turn 613",
-          "corpus:begin": 2051030,
-          "corpus:end": 2054285
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0614",
-          "dc:title": "Turn 614",
-          "corpus:begin": 2054285,
-          "corpus:end": 2055639
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0615",
-          "dc:title": "Turn 615",
-          "corpus:begin": 2055639,
-          "corpus:end": 2056542
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0616",
-          "dc:title": "Turn 616",
-          "corpus:begin": 2056542,
-          "corpus:end": 2056928
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0617",
-          "dc:title": "Turn 617",
-          "corpus:begin": 2056928,
-          "corpus:end": 2059594
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0618",
-          "dc:title": "Turn 618",
-          "corpus:begin": 2059594,
-          "corpus:end": 2060313
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0619",
-          "dc:title": "Turn 619",
-          "corpus:begin": 2060313,
-          "corpus:end": 2060858
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0620",
-          "dc:title": "Turn 620",
-          "corpus:begin": 2060858,
-          "corpus:end": 2068615
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0621",
-          "dc:title": "Turn 621",
-          "corpus:begin": 2068615,
-          "corpus:end": 2069681
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0622",
-          "dc:title": "Turn 622",
-          "corpus:begin": 2069681,
-          "corpus:end": 2070705
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0623",
-          "dc:title": "Turn 623",
-          "corpus:begin": 2070705,
-          "corpus:end": 2071033
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0624",
-          "dc:title": "Turn 624",
-          "corpus:begin": 2071033,
-          "corpus:end": 2073607
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0625",
-          "dc:title": "Turn 625",
-          "corpus:begin": 2073607,
-          "corpus:end": 2077884
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0626",
-          "dc:title": "Turn 626",
-          "corpus:begin": 2077884,
-          "corpus:end": 2080963
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0627",
-          "dc:title": "Turn 627",
-          "corpus:begin": 2080963,
-          "corpus:end": 2082393
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0628",
-          "dc:title": "Turn 628",
-          "corpus:begin": 2082393,
-          "corpus:end": 2089142
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0629",
-          "dc:title": "Turn 629",
-          "corpus:begin": 2089142,
-          "corpus:end": 2089451
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0630",
-          "dc:title": "Turn 630",
-          "corpus:begin": 2089451,
-          "corpus:end": 2092291
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0631",
-          "dc:title": "Turn 631",
-          "corpus:begin": 2092291,
-          "corpus:end": 2093222
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0632",
-          "dc:title": "Turn 632",
-          "corpus:begin": 2093222,
-          "corpus:end": 2095250
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0633",
-          "dc:title": "Turn 633",
-          "corpus:begin": 2095250,
-          "corpus:end": 2097317
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0634",
-          "dc:title": "Turn 634",
-          "corpus:begin": 2097317,
-          "corpus:end": 2099214
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0635",
-          "dc:title": "Turn 635",
-          "corpus:begin": 2099214,
-          "corpus:end": 2102077
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0636",
-          "dc:title": "Turn 636",
-          "corpus:begin": 2102077,
-          "corpus:end": 2102409
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0637",
-          "dc:title": "Turn 637",
-          "corpus:begin": 2102409,
-          "corpus:end": 2107281
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0638",
-          "dc:title": "Turn 638",
-          "corpus:begin": 2107281,
-          "corpus:end": 2120475
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0639",
-          "dc:title": "Turn 639",
-          "corpus:begin": 2120475,
-          "corpus:end": 2122739
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0640",
-          "dc:title": "Turn 640",
-          "corpus:begin": 2122739,
-          "corpus:end": 2128774
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0641",
-          "dc:title": "Turn 641",
-          "corpus:begin": 2128774,
-          "corpus:end": 2130903
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0642",
-          "dc:title": "Turn 642",
-          "corpus:begin": 2130903,
-          "corpus:end": 2133824
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0643",
-          "dc:title": "Turn 643",
-          "corpus:begin": 2133824,
-          "corpus:end": 2138951
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0644",
-          "dc:title": "Turn 644",
-          "corpus:begin": 2138951,
-          "corpus:end": 2140635
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0645",
-          "dc:title": "Turn 645",
-          "corpus:begin": 2140635,
-          "corpus:end": 2141930
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0646",
-          "dc:title": "Turn 646",
-          "corpus:begin": 2141930,
-          "corpus:end": 2143402
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0647",
-          "dc:title": "Turn 647",
-          "corpus:begin": 2143402,
-          "corpus:end": 2145473
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0648",
-          "dc:title": "Turn 648",
-          "corpus:begin": 2145473,
-          "corpus:end": 2146566
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0649",
-          "dc:title": "Turn 649",
-          "corpus:begin": 2146566,
-          "corpus:end": 2154658
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0650",
-          "dc:title": "Turn 650",
-          "corpus:begin": 2154658,
-          "corpus:end": 2156189
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0651",
-          "dc:title": "Turn 651",
-          "corpus:begin": 2156189,
-          "corpus:end": 2157696
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0652",
-          "dc:title": "Turn 652",
-          "corpus:begin": 2157696,
-          "corpus:end": 2159956
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0653",
-          "dc:title": "Turn 653",
-          "corpus:begin": 2159956,
-          "corpus:end": 2161714
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0654",
-          "dc:title": "Turn 654",
-          "corpus:begin": 2161714,
-          "corpus:end": 2167551
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0655",
-          "dc:title": "Turn 655",
-          "corpus:begin": 2167551,
-          "corpus:end": 2170178
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0656",
-          "dc:title": "Turn 656",
-          "corpus:begin": 2170178,
-          "corpus:end": 2170449
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0657",
-          "dc:title": "Turn 657",
-          "corpus:begin": 2170449,
-          "corpus:end": 2180283
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0658",
-          "dc:title": "Turn 658",
-          "corpus:begin": 2180283,
-          "corpus:end": 2180940
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0659",
-          "dc:title": "Turn 659",
-          "corpus:begin": 2180940,
-          "corpus:end": 2185982
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0660",
-          "dc:title": "Turn 660",
-          "corpus:begin": 2185982,
-          "corpus:end": 2186913
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0661",
-          "dc:title": "Turn 661",
-          "corpus:begin": 2186913,
-          "corpus:end": 2189386
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0662",
-          "dc:title": "Turn 662",
-          "corpus:begin": 2189386,
-          "corpus:end": 2193624
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0663",
-          "dc:title": "Turn 663",
-          "corpus:begin": 2193624,
-          "corpus:end": 2195000
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0664",
-          "dc:title": "Turn 664",
-          "corpus:begin": 2195000,
-          "corpus:end": 2196569
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0665",
-          "dc:title": "Turn 665",
-          "corpus:begin": 2196569,
-          "corpus:end": 2197210
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0666",
-          "dc:title": "Turn 666",
-          "corpus:begin": 2197210,
-          "corpus:end": 2199007
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0667",
-          "dc:title": "Turn 667",
-          "corpus:begin": 2199007,
-          "corpus:end": 2212486
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0668",
-          "dc:title": "Turn 668",
-          "corpus:begin": 2212486,
-          "corpus:end": 2213452
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0669",
-          "dc:title": "Turn 669",
-          "corpus:begin": 2213452,
-          "corpus:end": 2215813
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0670",
-          "dc:title": "Turn 670",
-          "corpus:begin": 2215813,
-          "corpus:end": 2218769
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0671",
-          "dc:title": "Turn 671",
-          "corpus:begin": 2218769,
-          "corpus:end": 2220473
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0672",
-          "dc:title": "Turn 672",
-          "corpus:begin": 2220473,
-          "corpus:end": 2222466
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0673",
-          "dc:title": "Turn 673",
-          "corpus:begin": 2222466,
-          "corpus:end": 2223065
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0674",
-          "dc:title": "Turn 674",
-          "corpus:begin": 2223065,
-          "corpus:end": 2235303
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0675",
-          "dc:title": "Turn 675",
-          "corpus:begin": 2235303,
-          "corpus:end": 2235950
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0676",
-          "dc:title": "Turn 676",
-          "corpus:begin": 2235950,
-          "corpus:end": 2238292
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0677",
-          "dc:title": "Turn 677",
-          "corpus:begin": 2238292,
-          "corpus:end": 2239745
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0678",
-          "dc:title": "Turn 678",
-          "corpus:begin": 2239745,
-          "corpus:end": 2243056
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0679",
-          "dc:title": "Turn 679",
-          "corpus:begin": 2243056,
-          "corpus:end": 2251111
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0680",
-          "dc:title": "Turn 680",
-          "corpus:begin": 2251111,
-          "corpus:end": 2253796
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0681",
-          "dc:title": "Turn 681",
-          "corpus:begin": 2253796,
-          "corpus:end": 2260696
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0682",
-          "dc:title": "Turn 682",
-          "corpus:begin": 2260696,
-          "corpus:end": 2261102
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0683",
-          "dc:title": "Turn 683",
-          "corpus:begin": 2261102,
-          "corpus:end": 2264660
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0684",
-          "dc:title": "Turn 684",
-          "corpus:begin": 2264660,
-          "corpus:end": 2265162
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0685",
-          "dc:title": "Turn 685",
-          "corpus:begin": 2265162,
-          "corpus:end": 2267384
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0686",
-          "dc:title": "Turn 686",
-          "corpus:begin": 2267384,
-          "corpus:end": 2267697
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0687",
-          "dc:title": "Turn 687",
-          "corpus:begin": 2267697,
-          "corpus:end": 2268879
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0688",
-          "dc:title": "Turn 688",
-          "corpus:begin": 2268879,
-          "corpus:end": 2269208
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0689",
-          "dc:title": "Turn 689",
-          "corpus:begin": 2269208,
-          "corpus:end": 2272302
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0690",
-          "dc:title": "Turn 690",
-          "corpus:begin": 2272302,
-          "corpus:end": 2272747
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0691",
-          "dc:title": "Turn 691",
-          "corpus:begin": 2272747,
-          "corpus:end": 2275243
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0692",
-          "dc:title": "Turn 692",
-          "corpus:begin": 2275243,
-          "corpus:end": 2275575
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0693",
-          "dc:title": "Turn 693",
-          "corpus:begin": 2275575,
-          "corpus:end": 2275749
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0694",
-          "dc:title": "Turn 694",
-          "corpus:begin": 2275749,
-          "corpus:end": 2277352
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0695",
-          "dc:title": "Turn 695",
-          "corpus:begin": 2277352,
-          "corpus:end": 2278434
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0696",
-          "dc:title": "Turn 696",
-          "corpus:begin": 2278434,
-          "corpus:end": 2280717
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0697",
-          "dc:title": "Turn 697",
-          "corpus:begin": 2280717,
-          "corpus:end": 2285303
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0698",
-          "dc:title": "Turn 698",
-          "corpus:begin": 2285303,
-          "corpus:end": 2286114
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0699",
-          "dc:title": "Turn 699",
-          "corpus:begin": 2286114,
-          "corpus:end": 2288301
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0700",
-          "dc:title": "Turn 700",
-          "corpus:begin": 2288301,
-          "corpus:end": 2290526
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0701",
-          "dc:title": "Turn 701",
-          "corpus:begin": 2290526,
-          "corpus:end": 2294490
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0702",
-          "dc:title": "Turn 702",
-          "corpus:begin": 2294490,
-          "corpus:end": 2296715
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0703",
-          "dc:title": "Turn 703",
-          "corpus:begin": 2296715,
-          "corpus:end": 2309878
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0704",
-          "dc:title": "Turn 704",
-          "corpus:begin": 2309878,
-          "corpus:end": 2312432
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0705",
-          "dc:title": "Turn 705",
-          "corpus:begin": 2312432,
-          "corpus:end": 2320001
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0706",
-          "dc:title": "Turn 706",
-          "corpus:begin": 2320001,
-          "corpus:end": 2320932
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0707",
-          "dc:title": "Turn 707",
-          "corpus:begin": 2320932,
-          "corpus:end": 2322284
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0708",
-          "dc:title": "Turn 708",
-          "corpus:begin": 2322284,
-          "corpus:end": 2323984
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0709",
-          "dc:title": "Turn 709",
-          "corpus:begin": 2323984,
-          "corpus:end": 2324390
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0710",
-          "dc:title": "Turn 710",
-          "corpus:begin": 2324390,
-          "corpus:end": 2324838
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "dc:title": "Turn 711",
-          "corpus:begin": 2324838,
-          "corpus:end": 2356321
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0712",
-          "dc:title": "Turn 712",
-          "corpus:begin": 2356321,
-          "corpus:end": 2360478
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0713",
-          "dc:title": "Turn 713",
-          "corpus:begin": 2360478,
-          "corpus:end": 2360749
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0714",
-          "dc:title": "Turn 714",
-          "corpus:begin": 2360749,
-          "corpus:end": 2364983
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0715",
-          "dc:title": "Turn 715",
-          "corpus:begin": 2364983,
-          "corpus:end": 2368263
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0716",
-          "dc:title": "Turn 716",
-          "corpus:begin": 2368263,
-          "corpus:end": 2378334
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0717",
-          "dc:title": "Turn 717",
-          "corpus:begin": 2378334,
-          "corpus:end": 2379246
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0718",
-          "dc:title": "Turn 718",
-          "corpus:begin": 2379246,
-          "corpus:end": 2381722
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0719",
-          "dc:title": "Turn 719",
-          "corpus:begin": 2381722,
-          "corpus:end": 2381973
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0720",
-          "dc:title": "Turn 720",
-          "corpus:begin": 2381973,
-          "corpus:end": 2384233
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0721",
-          "dc:title": "Turn 721",
-          "corpus:begin": 2384233,
-          "corpus:end": 2384678
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0722",
-          "dc:title": "Turn 722",
-          "corpus:begin": 2384678,
-          "corpus:end": 2388158
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0723",
-          "dc:title": "Turn 723",
-          "corpus:begin": 2388158,
-          "corpus:end": 2396387
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0724",
-          "dc:title": "Turn 724",
-          "corpus:begin": 2396387,
-          "corpus:end": 2407811
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0725",
-          "dc:title": "Turn 725",
-          "corpus:begin": 2407811,
-          "corpus:end": 2410732
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0726",
-          "dc:title": "Turn 726",
-          "corpus:begin": 2410732,
-          "corpus:end": 2414000
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0727",
-          "dc:title": "Turn 727",
-          "corpus:begin": 2414000,
-          "corpus:end": 2414425
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0728",
-          "dc:title": "Turn 728",
-          "corpus:begin": 2414425,
-          "corpus:end": 2414676
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0729",
-          "dc:title": "Turn 729",
-          "corpus:begin": 2414676,
-          "corpus:end": 2417226
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0730",
-          "dc:title": "Turn 730",
-          "corpus:begin": 2417226,
-          "corpus:end": 2425729
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0731",
-          "dc:title": "Turn 731",
-          "corpus:begin": 2425729,
-          "corpus:end": 2426019
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0732",
-          "dc:title": "Turn 732",
-          "corpus:begin": 2426019,
-          "corpus:end": 2428144
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0733",
-          "dc:title": "Turn 733",
-          "corpus:begin": 2428144,
-          "corpus:end": 2428438
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0734",
-          "dc:title": "Turn 734",
-          "corpus:begin": 2428438,
-          "corpus:end": 2434898
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0735",
-          "dc:title": "Turn 735",
-          "corpus:begin": 2434898,
-          "corpus:end": 2435250
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0736",
-          "dc:title": "Turn 736",
-          "corpus:begin": 2435250,
-          "corpus:end": 2441748
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0737",
-          "dc:title": "Turn 737",
-          "corpus:begin": 2441748,
-          "corpus:end": 2445414
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0738",
-          "dc:title": "Turn 738",
-          "corpus:begin": 2445414,
-          "corpus:end": 2445867
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0739",
-          "dc:title": "Turn 739",
-          "corpus:begin": 2445867,
-          "corpus:end": 2448734
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0740",
-          "dc:title": "Turn 740",
-          "corpus:begin": 2448734,
-          "corpus:end": 2449201
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0741",
-          "dc:title": "Turn 741",
-          "corpus:begin": 2449201,
-          "corpus:end": 2453030
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0742",
-          "dc:title": "Turn 742",
-          "corpus:begin": 2453030,
-          "corpus:end": 2463343
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0743",
-          "dc:title": "Turn 743",
-          "corpus:begin": 2463343,
-          "corpus:end": 2468953
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0744",
-          "dc:title": "Turn 744",
-          "corpus:begin": 2468953,
-          "corpus:end": 2469591
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0745",
-          "dc:title": "Turn 745",
-          "corpus:begin": 2469591,
-          "corpus:end": 2471565
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0746",
-          "dc:title": "Turn 746",
-          "corpus:begin": 2471565,
-          "corpus:end": 2473458
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0747",
-          "dc:title": "Turn 747",
-          "corpus:begin": 2473458,
-          "corpus:end": 2474405
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0748",
-          "dc:title": "Turn 748",
-          "corpus:begin": 2474405,
-          "corpus:end": 2475143
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0749",
-          "dc:title": "Turn 749",
-          "corpus:begin": 2475143,
-          "corpus:end": 2475997
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0750",
-          "dc:title": "Turn 750",
-          "corpus:begin": 2475997,
-          "corpus:end": 2477990
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0751",
-          "dc:title": "Turn 751",
-          "corpus:begin": 2477990,
-          "corpus:end": 2488618
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0752",
-          "dc:title": "Turn 752",
-          "corpus:begin": 2488618,
-          "corpus:end": 2488796
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0753",
-          "dc:title": "Turn 753",
-          "corpus:begin": 2488796,
-          "corpus:end": 2492667
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0754",
-          "dc:title": "Turn 754",
-          "corpus:begin": 2492667,
-          "corpus:end": 2494348
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0755",
-          "dc:title": "Turn 755",
-          "corpus:begin": 2494348,
-          "corpus:end": 2496403
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0756",
-          "dc:title": "Turn 756",
-          "corpus:begin": 2496403,
-          "corpus:end": 2499753
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0757",
-          "dc:title": "Turn 757",
-          "corpus:begin": 2499753,
-          "corpus:end": 2505183
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0758",
-          "dc:title": "Turn 758",
-          "corpus:begin": 2505183,
-          "corpus:end": 2509256
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0759",
-          "dc:title": "Turn 759",
-          "corpus:begin": 2509256,
-          "corpus:end": 2512386
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0760",
-          "dc:title": "Turn 760",
-          "corpus:begin": 2512386,
-          "corpus:end": 2523720
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0761",
-          "dc:title": "Turn 761",
-          "corpus:begin": 2523720,
-          "corpus:end": 2532119
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0762",
-          "dc:title": "Turn 762",
-          "corpus:begin": 2532119,
-          "corpus:end": 2535016
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0763",
-          "dc:title": "Turn 763",
-          "corpus:begin": 2535016,
-          "corpus:end": 2537951
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0764",
-          "dc:title": "Turn 764",
-          "corpus:begin": 2537951,
-          "corpus:end": 2541626
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0765",
-          "dc:title": "Turn 765",
-          "corpus:begin": 2541626,
-          "corpus:end": 2542832
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0766",
-          "dc:title": "Turn 766",
-          "corpus:begin": 2542832,
-          "corpus:end": 2546856
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0767",
-          "dc:title": "Turn 767",
-          "corpus:begin": 2546856,
-          "corpus:end": 2552572
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0768",
-          "dc:title": "Turn 768",
-          "corpus:begin": 2552572,
-          "corpus:end": 2556402
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0769",
-          "dc:title": "Turn 769",
-          "corpus:begin": 2556402,
-          "corpus:end": 2561884
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0770",
-          "dc:title": "Turn 770",
-          "corpus:begin": 2561884,
-          "corpus:end": 2561981
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0771",
-          "dc:title": "Turn 771",
-          "corpus:begin": 2561981,
-          "corpus:end": 2563109
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0772",
-          "dc:title": "Turn 772",
-          "corpus:begin": 2563109,
-          "corpus:end": 2563265
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0773",
-          "dc:title": "Turn 773",
-          "corpus:begin": 2563265,
-          "corpus:end": 2566512
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0774",
-          "dc:title": "Turn 774",
-          "corpus:begin": 2566512,
-          "corpus:end": 2566959
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0775",
-          "dc:title": "Turn 775",
-          "corpus:begin": 2566959,
-          "corpus:end": 2570147
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0776",
-          "dc:title": "Turn 776",
-          "corpus:begin": 2570147,
-          "corpus:end": 2570964
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0777",
-          "dc:title": "Turn 777",
-          "corpus:begin": 2570964,
-          "corpus:end": 2574697
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0778",
-          "dc:title": "Turn 778",
-          "corpus:begin": 2574697,
-          "corpus:end": 2575455
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0779",
-          "dc:title": "Turn 779",
-          "corpus:begin": 2575455,
-          "corpus:end": 2581346
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0780",
-          "dc:title": "Turn 780",
-          "corpus:begin": 2581346,
-          "corpus:end": 2583290
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0781",
-          "dc:title": "Turn 781",
-          "corpus:begin": 2583290,
-          "corpus:end": 2585934
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0782",
-          "dc:title": "Turn 782",
-          "corpus:begin": 2585934,
-          "corpus:end": 2591533
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0783",
-          "dc:title": "Turn 783",
-          "corpus:begin": 2591533,
-          "corpus:end": 2592855
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0784",
-          "dc:title": "Turn 784",
-          "corpus:begin": 2592855,
-          "corpus:end": 2595246
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0785",
-          "dc:title": "Turn 785",
-          "corpus:begin": 2595246,
-          "corpus:end": 2610002
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0786",
-          "dc:title": "Turn 786",
-          "corpus:begin": 2610002,
-          "corpus:end": 2613774
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0787",
-          "dc:title": "Turn 787",
-          "corpus:begin": 2613774,
-          "corpus:end": 2614299
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0788",
-          "dc:title": "Turn 788",
-          "corpus:begin": 2614299,
-          "corpus:end": 2631964
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0789",
-          "dc:title": "Turn 789",
-          "corpus:begin": 2631964,
-          "corpus:end": 2636720
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0790",
-          "dc:title": "Turn 790",
-          "corpus:begin": 2636720,
-          "corpus:end": 2638334
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0791",
-          "dc:title": "Turn 791",
-          "corpus:begin": 2638334,
-          "corpus:end": 2642300
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0792",
-          "dc:title": "Turn 792",
-          "corpus:begin": 2642300,
-          "corpus:end": 2645877
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0793",
-          "dc:title": "Turn 793",
-          "corpus:begin": 2645877,
-          "corpus:end": 2647957
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0794",
-          "dc:title": "Turn 794",
-          "corpus:begin": 2647957,
-          "corpus:end": 2650310
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0795",
-          "dc:title": "Turn 795",
-          "corpus:begin": 2650310,
-          "corpus:end": 2654742
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0796",
-          "dc:title": "Turn 796",
-          "corpus:begin": 2654742,
-          "corpus:end": 2661002
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0797",
-          "dc:title": "Turn 797",
-          "corpus:begin": 2661002,
-          "corpus:end": 2661722
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0798",
-          "dc:title": "Turn 798",
-          "corpus:begin": 2661722,
-          "corpus:end": 2665182
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0799",
-          "dc:title": "Turn 799",
-          "corpus:begin": 2665182,
-          "corpus:end": 2666329
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0800",
-          "dc:title": "Turn 800",
-          "corpus:begin": 2666329,
-          "corpus:end": 2669167
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0801",
-          "dc:title": "Turn 801",
-          "corpus:begin": 2669167,
-          "corpus:end": 2669420
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0802",
-          "dc:title": "Turn 802",
-          "corpus:begin": 2669420,
-          "corpus:end": 2672084
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0803",
-          "dc:title": "Turn 803",
-          "corpus:begin": 2672084,
-          "corpus:end": 2674786
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0804",
-          "dc:title": "Turn 804",
-          "corpus:begin": 2674786,
-          "corpus:end": 2678830
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0805",
-          "dc:title": "Turn 805",
-          "corpus:begin": 2678830,
-          "corpus:end": 2685732
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0806",
-          "dc:title": "Turn 806",
-          "corpus:begin": 2685732,
-          "corpus:end": 2689367
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0807",
-          "dc:title": "Turn 807",
-          "corpus:begin": 2689367,
-          "corpus:end": 2690417
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0808",
-          "dc:title": "Turn 808",
-          "corpus:begin": 2690417,
-          "corpus:end": 2693333
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0809",
-          "dc:title": "Turn 809",
-          "corpus:begin": 2693333,
-          "corpus:end": 2697960
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0810",
-          "dc:title": "Turn 810",
-          "corpus:begin": 2697960,
-          "corpus:end": 2698602
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0811",
-          "dc:title": "Turn 811",
-          "corpus:begin": 2698602,
-          "corpus:end": 2698835
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0812",
-          "dc:title": "Turn 812",
-          "corpus:begin": 2698835,
-          "corpus:end": 2701712
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0813",
-          "dc:title": "Turn 813",
-          "corpus:begin": 2701712,
-          "corpus:end": 2705718
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0814",
-          "dc:title": "Turn 814",
-          "corpus:begin": 2705718,
-          "corpus:end": 2707526
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0815",
-          "dc:title": "Turn 815",
-          "corpus:begin": 2707526,
-          "corpus:end": 2709334
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0816",
-          "dc:title": "Turn 816",
-          "corpus:begin": 2709334,
-          "corpus:end": 2710948
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0817",
-          "dc:title": "Turn 817",
-          "corpus:begin": 2710948,
-          "corpus:end": 2711240
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0818",
-          "dc:title": "Turn 818",
-          "corpus:begin": 2711240,
-          "corpus:end": 2712271
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0819",
-          "dc:title": "Turn 819",
-          "corpus:begin": 2712271,
-          "corpus:end": 2713982
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0820",
-          "dc:title": "Turn 820",
-          "corpus:begin": 2713982,
-          "corpus:end": 2715193
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0821",
-          "dc:title": "Turn 821",
-          "corpus:begin": 2715193,
-          "corpus:end": 2716762
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0822",
-          "dc:title": "Turn 822",
-          "corpus:begin": 2716762,
-          "corpus:end": 2717481
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0823",
-          "dc:title": "Turn 823",
-          "corpus:begin": 2717481,
-          "corpus:end": 2718434
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0824",
-          "dc:title": "Turn 824",
-          "corpus:begin": 2718434,
-          "corpus:end": 2719698
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0825",
-          "dc:title": "Turn 825",
-          "corpus:begin": 2719698,
-          "corpus:end": 2723177
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0826",
-          "dc:title": "Turn 826",
-          "corpus:begin": 2723177,
-          "corpus:end": 2724305
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0827",
-          "dc:title": "Turn 827",
-          "corpus:begin": 2724305,
-          "corpus:end": 2731051
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0828",
-          "dc:title": "Turn 828",
-          "corpus:begin": 2731051,
-          "corpus:end": 2735406
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0829",
-          "dc:title": "Turn 829",
-          "corpus:begin": 2735406,
-          "corpus:end": 2743727
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0830",
-          "dc:title": "Turn 830",
-          "corpus:begin": 2743727,
-          "corpus:end": 2744563
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0831",
-          "dc:title": "Turn 831",
-          "corpus:begin": 2744563,
-          "corpus:end": 2750667
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0832",
-          "dc:title": "Turn 832",
-          "corpus:begin": 2750667,
-          "corpus:end": 2754011
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0833",
-          "dc:title": "Turn 833",
-          "corpus:begin": 2754011,
-          "corpus:end": 2756072
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0834",
-          "dc:title": "Turn 834",
-          "corpus:begin": 2756072,
-          "corpus:end": 2761535
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0835",
-          "dc:title": "Turn 835",
-          "corpus:begin": 2761535,
-          "corpus:end": 2761866
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0836",
-          "dc:title": "Turn 836",
-          "corpus:begin": 2761866,
-          "corpus:end": 2762002
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0837",
-          "dc:title": "Turn 837",
-          "corpus:begin": 2762002,
-          "corpus:end": 2763479
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0838",
-          "dc:title": "Turn 838",
-          "corpus:begin": 2763479,
-          "corpus:end": 2771450
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0839",
-          "dc:title": "Turn 839",
-          "corpus:begin": 2771450,
-          "corpus:end": 2773433
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0840",
-          "dc:title": "Turn 840",
-          "corpus:begin": 2773433,
-          "corpus:end": 2773763
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0841",
-          "dc:title": "Turn 841",
-          "corpus:begin": 2773763,
-          "corpus:end": 2774288
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0842",
-          "dc:title": "Turn 842",
-          "corpus:begin": 2774288,
-          "corpus:end": 2781637
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0843",
-          "dc:title": "Turn 843",
-          "corpus:begin": 2781637,
-          "corpus:end": 2783231
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0844",
-          "dc:title": "Turn 844",
-          "corpus:begin": 2783231,
-          "corpus:end": 2784767
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0845",
-          "dc:title": "Turn 845",
-          "corpus:begin": 2784767,
-          "corpus:end": 2789258
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0846",
-          "dc:title": "Turn 846",
-          "corpus:begin": 2789258,
-          "corpus:end": 2791620
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0847",
-          "dc:title": "Turn 847",
-          "corpus:begin": 2791620,
-          "corpus:end": 2802167
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0848",
-          "dc:title": "Turn 848",
-          "corpus:begin": 2802167,
-          "corpus:end": 2802867
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0849",
-          "dc:title": "Turn 849",
-          "corpus:begin": 2802867,
-          "corpus:end": 2806444
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0850",
-          "dc:title": "Turn 850",
-          "corpus:begin": 2806444,
-          "corpus:end": 2810371
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0851",
-          "dc:title": "Turn 851",
-          "corpus:begin": 2810371,
-          "corpus:end": 2811129
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0852",
-          "dc:title": "Turn 852",
-          "corpus:begin": 2811129,
-          "corpus:end": 2816748
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0853",
-          "dc:title": "Turn 853",
-          "corpus:begin": 2816748,
-          "corpus:end": 2817856
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0854",
-          "dc:title": "Turn 854",
-          "corpus:begin": 2817856,
-          "corpus:end": 2818264
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0855",
-          "dc:title": "Turn 855",
-          "corpus:begin": 2818264,
-          "corpus:end": 2819314
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0856",
-          "dc:title": "Turn 856",
-          "corpus:begin": 2819314,
-          "corpus:end": 2820267
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0857",
-          "dc:title": "Turn 857",
-          "corpus:begin": 2820267,
-          "corpus:end": 2820967
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0858",
-          "dc:title": "Turn 858",
-          "corpus:begin": 2820967,
-          "corpus:end": 2826450
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0859",
-          "dc:title": "Turn 859",
-          "corpus:begin": 2826450,
-          "corpus:end": 2827597
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0860",
-          "dc:title": "Turn 860",
-          "corpus:begin": 2827597,
-          "corpus:end": 2828025
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0861",
-          "dc:title": "Turn 861",
-          "corpus:begin": 2828025,
-          "corpus:end": 2828939
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0862",
-          "dc:title": "Turn 862",
-          "corpus:begin": 2828939,
-          "corpus:end": 2831233
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0863",
-          "dc:title": "Turn 863",
-          "corpus:begin": 2831233,
-          "corpus:end": 2832924
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0864",
-          "dc:title": "Turn 864",
-          "corpus:begin": 2832924,
-          "corpus:end": 2837259
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0865",
-          "dc:title": "Turn 865",
-          "corpus:begin": 2837259,
-          "corpus:end": 2837609
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0866",
-          "dc:title": "Turn 866",
-          "corpus:begin": 2837609,
-          "corpus:end": 2842819
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0867",
-          "dc:title": "Turn 867",
-          "corpus:begin": 2842819,
-          "corpus:end": 2843091
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0868",
-          "dc:title": "Turn 868",
-          "corpus:begin": 2843091,
-          "corpus:end": 2844394
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0869",
-          "dc:title": "Turn 869",
-          "corpus:begin": 2844394,
-          "corpus:end": 2844919
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0870",
-          "dc:title": "Turn 870",
-          "corpus:begin": 2844919,
-          "corpus:end": 2851393
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0871",
-          "dc:title": "Turn 871",
-          "corpus:begin": 2851393,
-          "corpus:end": 2851782
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0872",
-          "dc:title": "Turn 872",
-          "corpus:begin": 2851782,
-          "corpus:end": 2854869
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0873",
-          "dc:title": "Turn 873",
-          "corpus:begin": 2854869,
-          "corpus:end": 2856603
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0874",
-          "dc:title": "Turn 874",
-          "corpus:begin": 2856603,
-          "corpus:end": 2861677
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0875",
-          "dc:title": "Turn 875",
-          "corpus:begin": 2861677,
-          "corpus:end": 2863796
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0876",
-          "dc:title": "Turn 876",
-          "corpus:begin": 2863796,
-          "corpus:end": 2868034
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0877",
-          "dc:title": "Turn 877",
-          "corpus:begin": 2868034,
-          "corpus:end": 2874683
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0878",
-          "dc:title": "Turn 878",
-          "corpus:begin": 2874683,
-          "corpus:end": 2875169
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0879",
-          "dc:title": "Turn 879",
-          "corpus:begin": 2875169,
-          "corpus:end": 2877988
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0880",
-          "dc:title": "Turn 880",
-          "corpus:begin": 2877988,
-          "corpus:end": 2879504
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0881",
-          "dc:title": "Turn 881",
-          "corpus:begin": 2879504,
-          "corpus:end": 2883373
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0882",
-          "dc:title": "Turn 882",
-          "corpus:begin": 2883373,
-          "corpus:end": 2884462
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0883",
-          "dc:title": "Turn 883",
-          "corpus:begin": 2884462,
-          "corpus:end": 2886426
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0884",
-          "dc:title": "Turn 884",
-          "corpus:begin": 2886426,
-          "corpus:end": 2887495
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0885",
-          "dc:title": "Turn 885",
-          "corpus:begin": 2887495,
-          "corpus:end": 2896055
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0886",
-          "dc:title": "Turn 886",
-          "corpus:begin": 2896055,
-          "corpus:end": 2896405
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0887",
-          "dc:title": "Turn 887",
-          "corpus:begin": 2896405,
-          "corpus:end": 2899530
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0888",
-          "dc:title": "Turn 888",
-          "corpus:begin": 2899530,
-          "corpus:end": 2899788
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0889",
-          "dc:title": "Turn 889",
-          "corpus:begin": 2899788,
-          "corpus:end": 2906806
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0890",
-          "dc:title": "Turn 890",
-          "corpus:begin": 2906806,
-          "corpus:end": 2907195
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0891",
-          "dc:title": "Turn 891",
-          "corpus:begin": 2907195,
-          "corpus:end": 2909372
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0892",
-          "dc:title": "Turn 892",
-          "corpus:begin": 2909372,
-          "corpus:end": 2911064
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0893",
-          "dc:title": "Turn 893",
-          "corpus:begin": 2911064,
-          "corpus:end": 2914680
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0894",
-          "dc:title": "Turn 894",
-          "corpus:begin": 2914680,
-          "corpus:end": 2917790
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0895",
-          "dc:title": "Turn 895",
-          "corpus:begin": 2917790,
-          "corpus:end": 2921348
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0896",
-          "dc:title": "Turn 896",
-          "corpus:begin": 2921348,
-          "corpus:end": 2922320
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0897",
-          "dc:title": "Turn 897",
-          "corpus:begin": 2922320,
-          "corpus:end": 2929532
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0898",
-          "dc:title": "Turn 898",
-          "corpus:begin": 2929532,
-          "corpus:end": 2931962
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0899",
-          "dc:title": "Turn 899",
-          "corpus:begin": 2931962,
-          "corpus:end": 2936784
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0900",
-          "dc:title": "Turn 900",
-          "corpus:begin": 2936784,
-          "corpus:end": 2943569
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0901",
-          "dc:title": "Turn 901",
-          "corpus:begin": 2943569,
-          "corpus:end": 2947496
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0902",
-          "dc:title": "Turn 902",
-          "corpus:begin": 2947496,
-          "corpus:end": 2949115
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0903",
-          "dc:title": "Turn 903",
-          "corpus:begin": 2949115,
-          "corpus:end": 2950626
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0904",
-          "dc:title": "Turn 904",
-          "corpus:begin": 2950626,
-          "corpus:end": 2952084
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0905",
-          "dc:title": "Turn 905",
-          "corpus:begin": 2952084,
-          "corpus:end": 2952978
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0906",
-          "dc:title": "Turn 906",
-          "corpus:begin": 2952978,
-          "corpus:end": 2955506
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0907",
-          "dc:title": "Turn 907",
-          "corpus:begin": 2955506,
-          "corpus:end": 2958403
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0908",
-          "dc:title": "Turn 908",
-          "corpus:begin": 2958403,
-          "corpus:end": 2965129
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0909",
-          "dc:title": "Turn 909",
-          "corpus:begin": 2965129,
-          "corpus:end": 2969834
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0910",
-          "dc:title": "Turn 910",
-          "corpus:begin": 2969834,
-          "corpus:end": 2971175
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0911",
-          "dc:title": "Turn 911",
-          "corpus:begin": 2971175,
-          "corpus:end": 2971797
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0912",
-          "dc:title": "Turn 912",
-          "corpus:begin": 2971797,
-          "corpus:end": 2976036
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0913",
-          "dc:title": "Turn 913",
-          "corpus:begin": 2976036,
-          "corpus:end": 2978408
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0914",
-          "dc:title": "Turn 914",
-          "corpus:begin": 2978408,
-          "corpus:end": 2983112
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0915",
-          "dc:title": "Turn 915",
-          "corpus:begin": 2983112,
-          "corpus:end": 2985348
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0916",
-          "dc:title": "Turn 916",
-          "corpus:begin": 2985348,
-          "corpus:end": 2987156
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0917",
-          "dc:title": "Turn 917",
-          "corpus:begin": 2987156,
-          "corpus:end": 2992303
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0918",
-          "dc:title": "Turn 918",
-          "corpus:begin": 2992303,
-          "corpus:end": 2994791
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0919",
-          "dc:title": "Turn 919",
-          "corpus:begin": 2994791,
-          "corpus:end": 2997824
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0920",
-          "dc:title": "Turn 920",
-          "corpus:begin": 2997824,
-          "corpus:end": 3001459
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0921",
-          "dc:title": "Turn 921",
-          "corpus:begin": 3001459,
-          "corpus:end": 3007097
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0922",
-          "dc:title": "Turn 922",
-          "corpus:begin": 3007097,
-          "corpus:end": 3008633
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0923",
-          "dc:title": "Turn 923",
-          "corpus:begin": 3008633,
-          "corpus:end": 3012988
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0924",
-          "dc:title": "Turn 924",
-          "corpus:begin": 3012988,
-          "corpus:end": 3013182
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0925",
-          "dc:title": "Turn 925",
-          "corpus:begin": 3013182,
-          "corpus:end": 3017965
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0926",
-          "dc:title": "Turn 926",
-          "corpus:begin": 3017965,
-          "corpus:end": 3023350
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0927",
-          "dc:title": "Turn 927",
-          "corpus:begin": 3023350,
-          "corpus:end": 3029401
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0928",
-          "dc:title": "Turn 928",
-          "corpus:begin": 3029401,
-          "corpus:end": 3031948
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0929",
-          "dc:title": "Turn 929",
-          "corpus:begin": 3031948,
-          "corpus:end": 3033678
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0930",
-          "dc:title": "Turn 930",
-          "corpus:begin": 3033678,
-          "corpus:end": 3034242
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0931",
-          "dc:title": "Turn 931",
-          "corpus:begin": 3034242,
-          "corpus:end": 3036244
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0932",
-          "dc:title": "Turn 932",
-          "corpus:begin": 3036244,
-          "corpus:end": 3039316
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0933",
-          "dc:title": "Turn 933",
-          "corpus:begin": 3039316,
-          "corpus:end": 3040677
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0934",
-          "dc:title": "Turn 934",
-          "corpus:begin": 3040677,
-          "corpus:end": 3043379
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0935",
-          "dc:title": "Turn 935",
-          "corpus:begin": 3043379,
-          "corpus:end": 3044293
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0936",
-          "dc:title": "Turn 936",
-          "corpus:begin": 3044293,
-          "corpus:end": 3046665
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0937",
-          "dc:title": "Turn 937",
-          "corpus:begin": 3046665,
-          "corpus:end": 3047384
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0938",
-          "dc:title": "Turn 938",
-          "corpus:begin": 3047384,
-          "corpus:end": 3048026
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0939",
-          "dc:title": "Turn 939",
-          "corpus:begin": 3048026,
-          "corpus:end": 3048629
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0940",
-          "dc:title": "Turn 940",
-          "corpus:begin": 3048629,
-          "corpus:end": 3051740
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0941",
-          "dc:title": "Turn 941",
-          "corpus:begin": 3051740,
-          "corpus:end": 3053062
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0942",
-          "dc:title": "Turn 942",
-          "corpus:begin": 3053062,
-          "corpus:end": 3056562
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0943",
-          "dc:title": "Turn 943",
-          "corpus:begin": 3056562,
-          "corpus:end": 3056776
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0944",
-          "dc:title": "Turn 944",
-          "corpus:begin": 3056776,
-          "corpus:end": 3059731
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0945",
-          "dc:title": "Turn 945",
-          "corpus:begin": 3059731,
-          "corpus:end": 3060159
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0946",
-          "dc:title": "Turn 946",
-          "corpus:begin": 3060159,
-          "corpus:end": 3063619
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0947",
-          "dc:title": "Turn 947",
-          "corpus:begin": 3063619,
-          "corpus:end": 3064300
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0948",
-          "dc:title": "Turn 948",
-          "corpus:begin": 3064300,
-          "corpus:end": 3065661
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0949",
-          "dc:title": "Turn 949",
-          "corpus:begin": 3065661,
-          "corpus:end": 3066089
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0950",
-          "dc:title": "Turn 950",
-          "corpus:begin": 3066089,
-          "corpus:end": 3070385
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0951",
-          "dc:title": "Turn 951",
-          "corpus:begin": 3070385,
-          "corpus:end": 3071027
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0952",
-          "dc:title": "Turn 952",
-          "corpus:begin": 3071027,
-          "corpus:end": 3071591
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0953",
-          "dc:title": "Turn 953",
-          "corpus:begin": 3071591,
-          "corpus:end": 3073982
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0954",
-          "dc:title": "Turn 954",
-          "corpus:begin": 3073982,
-          "corpus:end": 3078084
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0955",
-          "dc:title": "Turn 955",
-          "corpus:begin": 3078084,
-          "corpus:end": 3083527
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0956",
-          "dc:title": "Turn 956",
-          "corpus:begin": 3083527,
-          "corpus:end": 3083897
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0957",
-          "dc:title": "Turn 957",
-          "corpus:begin": 3083897,
-          "corpus:end": 3091226
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0958",
-          "dc:title": "Turn 958",
-          "corpus:begin": 3091226,
-          "corpus:end": 3099780
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0959",
-          "dc:title": "Turn 959",
-          "corpus:begin": 3099780,
-          "corpus:end": 3101160
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0960",
-          "dc:title": "Turn 960",
-          "corpus:begin": 3101160,
-          "corpus:end": 3104896
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0961",
-          "dc:title": "Turn 961",
-          "corpus:begin": 3104896,
-          "corpus:end": 3105306
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0962",
-          "dc:title": "Turn 962",
-          "corpus:begin": 3105306,
-          "corpus:end": 3106917
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0963",
-          "dc:title": "Turn 963",
-          "corpus:begin": 3106917,
-          "corpus:end": 3109239
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0964",
-          "dc:title": "Turn 964",
-          "corpus:begin": 3109239,
-          "corpus:end": 3113435
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0965",
-          "dc:title": "Turn 965",
-          "corpus:begin": 3113435,
-          "corpus:end": 3114173
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0966",
-          "dc:title": "Turn 966",
-          "corpus:begin": 3114173,
-          "corpus:end": 3121255
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0967",
-          "dc:title": "Turn 967",
-          "corpus:begin": 3121255,
-          "corpus:end": 3122997
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0968",
-          "dc:title": "Turn 968",
-          "corpus:begin": 3122997,
-          "corpus:end": 3124021
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0969",
-          "dc:title": "Turn 969",
-          "corpus:begin": 3124021,
-          "corpus:end": 3125528
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0970",
-          "dc:title": "Turn 970",
-          "corpus:begin": 3125528,
-          "corpus:end": 3126053
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0971",
-          "dc:title": "Turn 971",
-          "corpus:begin": 3126053,
-          "corpus:end": 3130385
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0972",
-          "dc:title": "Turn 972",
-          "corpus:begin": 3130385,
-          "corpus:end": 3135219
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0973",
-          "dc:title": "Turn 973",
-          "corpus:begin": 3135219,
-          "corpus:end": 3137657
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0974",
-          "dc:title": "Turn 974",
-          "corpus:begin": 3137657,
-          "corpus:end": 3143456
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0975",
-          "dc:title": "Turn 975",
-          "corpus:begin": 3143456,
-          "corpus:end": 3148115
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0976",
-          "dc:title": "Turn 976",
-          "corpus:begin": 3148115,
-          "corpus:end": 3155174
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0977",
-          "dc:title": "Turn 977",
-          "corpus:begin": 3155174,
-          "corpus:end": 3156916
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0978",
-          "dc:title": "Turn 978",
-          "corpus:begin": 3156916,
-          "corpus:end": 3164999
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0979",
-          "dc:title": "Turn 979",
-          "corpus:begin": 3164999,
-          "corpus:end": 3165911
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0980",
-          "dc:title": "Turn 980",
-          "corpus:begin": 3165911,
-          "corpus:end": 3174040
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0981",
-          "dc:title": "Turn 981",
-          "corpus:begin": 3174040,
-          "corpus:end": 3176184
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0982",
-          "dc:title": "Turn 982",
-          "corpus:begin": 3176184,
-          "corpus:end": 3177096
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0983",
-          "dc:title": "Turn 983",
-          "corpus:begin": 3177096,
-          "corpus:end": 3179383
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0984",
-          "dc:title": "Turn 984",
-          "corpus:begin": 3179383,
-          "corpus:end": 3185623
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0985",
-          "dc:title": "Turn 985",
-          "corpus:begin": 3185623,
-          "corpus:end": 3187810
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0986",
-          "dc:title": "Turn 986",
-          "corpus:begin": 3187810,
-          "corpus:end": 3189958
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0987",
-          "dc:title": "Turn 987",
-          "corpus:begin": 3189958,
-          "corpus:end": 3191391
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0988",
-          "dc:title": "Turn 988",
-          "corpus:begin": 3191391,
-          "corpus:end": 3195815
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0989",
-          "dc:title": "Turn 989",
-          "corpus:begin": 3195815,
-          "corpus:end": 3196379
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0990",
-          "dc:title": "Turn 990",
-          "corpus:begin": 3196379,
-          "corpus:end": 3201077
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0991",
-          "dc:title": "Turn 991",
-          "corpus:begin": 3201077,
-          "corpus:end": 3204075
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0992",
-          "dc:title": "Turn 992",
-          "corpus:begin": 3204075,
-          "corpus:end": 3207305
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0993",
-          "dc:title": "Turn 993",
-          "corpus:begin": 3207305,
-          "corpus:end": 3208082
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0994",
-          "dc:title": "Turn 994",
-          "corpus:begin": 3208082,
-          "corpus:end": 3208511
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0995",
-          "dc:title": "Turn 995",
-          "corpus:begin": 3208511,
-          "corpus:end": 3212243
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0996",
-          "dc:title": "Turn 996",
-          "corpus:begin": 3212243,
-          "corpus:end": 3212653
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0997",
-          "dc:title": "Turn 997",
-          "corpus:begin": 3212653,
-          "corpus:end": 3217118
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0998",
-          "dc:title": "Turn 998",
-          "corpus:begin": 3217118,
-          "corpus:end": 3221272
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn0999",
-          "dc:title": "Turn 999",
-          "corpus:begin": 3221272,
-          "corpus:end": 3223362
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1000",
-          "dc:title": "Turn 1000",
-          "corpus:begin": 3223362,
-          "corpus:end": 3225375
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1001",
-          "dc:title": "Turn 1001",
-          "corpus:begin": 3225375,
-          "corpus:end": 3227755
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1002",
-          "dc:title": "Turn 1002",
-          "corpus:begin": 3227755,
-          "corpus:end": 3229922
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1003",
-          "dc:title": "Turn 1003",
-          "corpus:begin": 3229922,
-          "corpus:end": 3230444
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1004",
-          "dc:title": "Turn 1004",
-          "corpus:begin": 3230444,
-          "corpus:end": 3233268
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1005",
-          "dc:title": "Turn 1005",
-          "corpus:begin": 3233268,
-          "corpus:end": 3233886
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1006",
-          "dc:title": "Turn 1006",
-          "corpus:begin": 3233886,
-          "corpus:end": 3239411
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1007",
-          "dc:title": "Turn 1007",
-          "corpus:begin": 3239411,
-          "corpus:end": 3247544
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1008",
-          "dc:title": "Turn 1008",
-          "corpus:begin": 3247544,
-          "corpus:end": 3249437
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1009",
-          "dc:title": "Turn 1009",
-          "corpus:begin": 3249437,
-          "corpus:end": 3249727
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1010",
-          "dc:title": "Turn 1010",
-          "corpus:begin": 3249727,
-          "corpus:end": 3250426
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1011",
-          "dc:title": "Turn 1011",
-          "corpus:begin": 3250426,
-          "corpus:end": 3250561
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1012",
-          "dc:title": "Turn 1012",
-          "corpus:begin": 3250561,
-          "corpus:end": 3251643
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1013",
-          "dc:title": "Turn 1013",
-          "corpus:begin": 3251643,
-          "corpus:end": 3253440
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1014",
-          "dc:title": "Turn 1014",
-          "corpus:begin": 3253440,
-          "corpus:end": 3254159
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1015",
-          "dc:title": "Turn 1015",
-          "corpus:begin": 3254159,
-          "corpus:end": 3264389
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1016",
-          "dc:title": "Turn 1016",
-          "corpus:begin": 3264389,
-          "corpus:end": 3270165
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1017",
-          "dc:title": "Turn 1017",
-          "corpus:begin": 3270165,
-          "corpus:end": 3270420
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1018",
-          "dc:title": "Turn 1018",
-          "corpus:begin": 3270420,
-          "corpus:end": 3279429
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1019",
-          "dc:title": "Turn 1019",
-          "corpus:begin": 3279429,
-          "corpus:end": 3282501
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1020",
-          "dc:title": "Turn 1020",
-          "corpus:begin": 3282501,
-          "corpus:end": 3292264
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1021",
-          "dc:title": "Turn 1021",
-          "corpus:begin": 3292264,
-          "corpus:end": 3295073
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1022",
-          "dc:title": "Turn 1022",
-          "corpus:begin": 3295073,
-          "corpus:end": 3297472
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1023",
-          "dc:title": "Turn 1023",
-          "corpus:begin": 3297472,
-          "corpus:end": 3297974
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1024",
-          "dc:title": "Turn 1024",
-          "corpus:begin": 3297974,
-          "corpus:end": 3298728
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1025",
-          "dc:title": "Turn 1025",
-          "corpus:begin": 3298728,
-          "corpus:end": 3299157
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1026",
-          "dc:title": "Turn 1026",
-          "corpus:begin": 3299157,
-          "corpus:end": 3299702
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1027",
-          "dc:title": "Turn 1027",
-          "corpus:begin": 3299702,
-          "corpus:end": 3300131
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1028",
-          "dc:title": "Turn 1028",
-          "corpus:begin": 3300131,
-          "corpus:end": 3301101
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1029",
-          "dc:title": "Turn 1029",
-          "corpus:begin": 3301101,
-          "corpus:end": 3301684
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1030",
-          "dc:title": "Turn 1030",
-          "corpus:begin": 3301684,
-          "corpus:end": 3306131
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1031",
-          "dc:title": "Turn 1031",
-          "corpus:begin": 3306131,
-          "corpus:end": 3307676
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1032",
-          "dc:title": "Turn 1032",
-          "corpus:begin": 3307676,
-          "corpus:end": 3312162
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1033",
-          "dc:title": "Turn 1033",
-          "corpus:begin": 3312162,
-          "corpus:end": 3313016
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1034",
-          "dc:title": "Turn 1034",
-          "corpus:begin": 3313016,
-          "corpus:end": 3316284
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1035",
-          "dc:title": "Turn 1035",
-          "corpus:begin": 3316284,
-          "corpus:end": 3316420
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1036",
-          "dc:title": "Turn 1036",
-          "corpus:begin": 3316420,
-          "corpus:end": 3319186
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1037",
-          "dc:title": "Turn 1037",
-          "corpus:begin": 3319186,
-          "corpus:end": 3319553
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1038",
-          "dc:title": "Turn 1038",
-          "corpus:begin": 3319553,
-          "corpus:end": 3321465
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1039",
-          "dc:title": "Turn 1039",
-          "corpus:begin": 3321465,
-          "corpus:end": 3324811
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1040",
-          "dc:title": "Turn 1040",
-          "corpus:begin": 3324811,
-          "corpus:end": 3328041
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1041",
-          "dc:title": "Turn 1041",
-          "corpus:begin": 3328041,
-          "corpus:end": 3330189
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1042",
-          "dc:title": "Turn 1042",
-          "corpus:begin": 3330189,
-          "corpus:end": 3332530
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1043",
-          "dc:title": "Turn 1043",
-          "corpus:begin": 3332530,
-          "corpus:end": 3339040
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1044",
-          "dc:title": "Turn 1044",
-          "corpus:begin": 3339040,
-          "corpus:end": 3340299
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1045",
-          "dc:title": "Turn 1045",
-          "corpus:begin": 3340299,
-          "corpus:end": 3345890
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1046",
-          "dc:title": "Turn 1046",
-          "corpus:begin": 3345890,
-          "corpus:end": 3353586
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1047",
-          "dc:title": "Turn 1047",
-          "corpus:begin": 3353586,
-          "corpus:end": 3353880
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1048",
-          "dc:title": "Turn 1048",
-          "corpus:begin": 3353880,
-          "corpus:end": 3357346
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1049",
-          "dc:title": "Turn 1049",
-          "corpus:begin": 3357346,
-          "corpus:end": 3359961
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1050",
-          "dc:title": "Turn 1050",
-          "corpus:begin": 3359961,
-          "corpus:end": 3361198
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1051",
-          "dc:title": "Turn 1051",
-          "corpus:begin": 3361198,
-          "corpus:end": 3365355
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1052",
-          "dc:title": "Turn 1052",
-          "corpus:begin": 3365355,
-          "corpus:end": 3368306
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1053",
-          "dc:title": "Turn 1053",
-          "corpus:begin": 3368306,
-          "corpus:end": 3380997
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1054",
-          "dc:title": "Turn 1054",
-          "corpus:begin": 3380997,
-          "corpus:end": 3386633
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1055",
-          "dc:title": "Turn 1055",
-          "corpus:begin": 3386633,
-          "corpus:end": 3387155
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1056",
-          "dc:title": "Turn 1056",
-          "corpus:begin": 3387155,
-          "corpus:end": 3388217
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1057",
-          "dc:title": "Turn 1057",
-          "corpus:begin": 3388217,
-          "corpus:end": 3395373
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1058",
-          "dc:title": "Turn 1058",
-          "corpus:begin": 3395373,
-          "corpus:end": 3396671
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1059",
-          "dc:title": "Turn 1059",
-          "corpus:begin": 3396671,
-          "corpus:end": 3397077
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1060",
-          "dc:title": "Turn 1060",
-          "corpus:begin": 3397077,
-          "corpus:end": 3405220
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1061",
-          "dc:title": "Turn 1061",
-          "corpus:begin": 3405220,
-          "corpus:end": 3406132
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1062",
-          "dc:title": "Turn 1062",
-          "corpus:begin": 3406132,
-          "corpus:end": 3408868
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1063",
-          "dc:title": "Turn 1063",
-          "corpus:begin": 3408868,
-          "corpus:end": 3409065
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1064",
-          "dc:title": "Turn 1064",
-          "corpus:begin": 3409065,
-          "corpus:end": 3412890
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1065",
-          "dc:title": "Turn 1065",
-          "corpus:begin": 3412890,
-          "corpus:end": 3412971
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1066",
-          "dc:title": "Turn 1066",
-          "corpus:begin": 3412971,
-          "corpus:end": 3416661
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1067",
-          "dc:title": "Turn 1067",
-          "corpus:begin": 3416661,
-          "corpus:end": 3417399
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1068",
-          "dc:title": "Turn 1068",
-          "corpus:begin": 3417399,
-          "corpus:end": 3420049
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1069",
-          "dc:title": "Turn 1069",
-          "corpus:begin": 3420049,
-          "corpus:end": 3428583
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1070",
-          "dc:title": "Turn 1070",
-          "corpus:begin": 3428583,
-          "corpus:end": 3428989
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1071",
-          "dc:title": "Turn 1071",
-          "corpus:begin": 3428989,
-          "corpus:end": 3431871
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1072",
-          "dc:title": "Turn 1072",
-          "corpus:begin": 3431871,
-          "corpus:end": 3434343
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1073",
-          "dc:title": "Turn 1073",
-          "corpus:begin": 3434343,
-          "corpus:end": 3434788
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1074",
-          "dc:title": "Turn 1074",
-          "corpus:begin": 3434788,
-          "corpus:end": 3437983
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1075",
-          "dc:title": "Turn 1075",
-          "corpus:begin": 3437983,
-          "corpus:end": 3441120
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1076",
-          "dc:title": "Turn 1076",
-          "corpus:begin": 3441120,
-          "corpus:end": 3442936
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1077",
-          "dc:title": "Turn 1077",
-          "corpus:begin": 3442936,
-          "corpus:end": 3443365
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1078",
-          "dc:title": "Turn 1078",
-          "corpus:begin": 3443365,
-          "corpus:end": 3444744
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1079",
-          "dc:title": "Turn 1079",
-          "corpus:begin": 3444744,
-          "corpus:end": 3450133
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1080",
-          "dc:title": "Turn 1080",
-          "corpus:begin": 3450133,
-          "corpus:end": 3458601
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1081",
-          "dc:title": "Turn 1081",
-          "corpus:begin": 3458601,
-          "corpus:end": 3458852
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1082",
-          "dc:title": "Turn 1082",
-          "corpus:begin": 3458852,
-          "corpus:end": 3463582
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1083",
-          "dc:title": "Turn 1083",
-          "corpus:begin": 3463582,
-          "corpus:end": 3466889
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1084",
-          "dc:title": "Turn 1084",
-          "corpus:begin": 3466889,
-          "corpus:end": 3478004
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1085",
-          "dc:title": "Turn 1085",
-          "corpus:begin": 3478004,
-          "corpus:end": 3478433
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1086",
-          "dc:title": "Turn 1086",
-          "corpus:begin": 3478433,
-          "corpus:end": 3479692
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1087",
-          "dc:title": "Turn 1087",
-          "corpus:begin": 3479692,
-          "corpus:end": 3488335
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1088",
-          "dc:title": "Turn 1088",
-          "corpus:begin": 3488335,
-          "corpus:end": 3493744
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1089",
-          "dc:title": "Turn 1089",
-          "corpus:begin": 3493744,
-          "corpus:end": 3494424
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1090",
-          "dc:title": "Turn 1090",
-          "corpus:begin": 3494424,
-          "corpus:end": 3498276
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1091",
-          "dc:title": "Turn 1091",
-          "corpus:begin": 3498276,
-          "corpus:end": 3500353
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1092",
-          "dc:title": "Turn 1092",
-          "corpus:begin": 3500353,
-          "corpus:end": 3500797
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1093",
-          "dc:title": "Turn 1093",
-          "corpus:begin": 3500797,
-          "corpus:end": 3503139
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1094",
-          "dc:title": "Turn 1094",
-          "corpus:begin": 3503139,
-          "corpus:end": 3503800
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1095",
-          "dc:title": "Turn 1095",
-          "corpus:begin": 3503800,
-          "corpus:end": 3507787
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1096",
-          "dc:title": "Turn 1096",
-          "corpus:begin": 3507787,
-          "corpus:end": 3508579
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1097",
-          "dc:title": "Turn 1097",
-          "corpus:begin": 3508579,
-          "corpus:end": 3509530
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1098",
-          "dc:title": "Turn 1098",
-          "corpus:begin": 3509530,
-          "corpus:end": 3514966
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1099",
-          "dc:title": "Turn 1099",
-          "corpus:begin": 3514966,
-          "corpus:end": 3522353
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1100",
-          "dc:title": "Turn 1100",
-          "corpus:begin": 3522353,
-          "corpus:end": 3524447
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1101",
-          "dc:title": "Turn 1101",
-          "corpus:begin": 3524447,
-          "corpus:end": 3525645
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1102",
-          "dc:title": "Turn 1102",
-          "corpus:begin": 3525645,
-          "corpus:end": 3527098
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1103",
-          "dc:title": "Turn 1103",
-          "corpus:begin": 3527098,
-          "corpus:end": 3530502
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1104",
-          "dc:title": "Turn 1104",
-          "corpus:begin": 3530502,
-          "corpus:end": 3536483
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1105",
-          "dc:title": "Turn 1105",
-          "corpus:begin": 3536483,
-          "corpus:end": 3537530
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1106",
-          "dc:title": "Turn 1106",
-          "corpus:begin": 3537530,
-          "corpus:end": 3538055
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1107",
-          "dc:title": "Turn 1107",
-          "corpus:begin": 3538055,
-          "corpus:end": 3540532
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1108",
-          "dc:title": "Turn 1108",
-          "corpus:begin": 3540532,
-          "corpus:end": 3540729
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1109",
-          "dc:title": "Turn 1109",
-          "corpus:begin": 3540729,
-          "corpus:end": 3546710
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1110",
-          "dc:title": "Turn 1110",
-          "corpus:begin": 3546710,
-          "corpus:end": 3548835
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1111",
-          "dc:title": "Turn 1111",
-          "corpus:begin": 3548835,
-          "corpus:end": 3549418
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1112",
-          "dc:title": "Turn 1112",
-          "corpus:begin": 3549418,
-          "corpus:end": 3554557
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1113",
-          "dc:title": "Turn 1113",
-          "corpus:begin": 3554557,
-          "corpus:end": 3561055
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1114",
-          "dc:title": "Turn 1114",
-          "corpus:begin": 3561055,
-          "corpus:end": 3563381
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1115",
-          "dc:title": "Turn 1115",
-          "corpus:begin": 3563381,
-          "corpus:end": 3563536
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1116",
-          "dc:title": "Turn 1116",
-          "corpus:begin": 3563536,
-          "corpus:end": 3566901
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1117",
-          "dc:title": "Turn 1117",
-          "corpus:begin": 3566901,
-          "corpus:end": 3569223
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1118",
-          "dc:title": "Turn 1118",
-          "corpus:begin": 3569223,
-          "corpus:end": 3575080
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1119",
-          "dc:title": "Turn 1119",
-          "corpus:begin": 3575080,
-          "corpus:end": 3575702
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1120",
-          "dc:title": "Turn 1120",
-          "corpus:begin": 3575702,
-          "corpus:end": 3583213
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1121",
-          "dc:title": "Turn 1121",
-          "corpus:begin": 3583213,
-          "corpus:end": 3583545
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1122",
-          "dc:title": "Turn 1122",
-          "corpus:begin": 3583545,
-          "corpus:end": 3586833
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1123",
-          "dc:title": "Turn 1123",
-          "corpus:begin": 3586833,
-          "corpus:end": 3596186
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1124",
-          "dc:title": "Turn 1124",
-          "corpus:begin": 3596186,
-          "corpus:end": 3607958
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1125",
-          "dc:title": "Turn 1125",
-          "corpus:begin": 3607958,
-          "corpus:end": 3608252
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1126",
-          "dc:title": "Turn 1126",
-          "corpus:begin": 3608252,
-          "corpus:end": 3609338
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1127",
-          "dc:title": "Turn 1127",
-          "corpus:begin": 3609338,
-          "corpus:end": 3611119
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1128",
-          "dc:title": "Turn 1128",
-          "corpus:begin": 3611119,
-          "corpus:end": 3616285
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1129",
-          "dc:title": "Turn 1129",
-          "corpus:begin": 3616285,
-          "corpus:end": 3616675
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1130",
-          "dc:title": "Turn 1130",
-          "corpus:begin": 3616675,
-          "corpus:end": 3624178
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1131",
-          "dc:title": "Turn 1131",
-          "corpus:begin": 3624178,
-          "corpus:end": 3626013
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1132",
-          "dc:title": "Turn 1132",
-          "corpus:begin": 3626013,
-          "corpus:end": 3628467
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1133",
-          "dc:title": "Turn 1133",
-          "corpus:begin": 3628467,
-          "corpus:end": 3629958
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1134",
-          "dc:title": "Turn 1134",
-          "corpus:begin": 3629958,
-          "corpus:end": 3630982
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1135",
-          "dc:title": "Turn 1135",
-          "corpus:begin": 3630982,
-          "corpus:end": 3631392
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1136",
-          "dc:title": "Turn 1136",
-          "corpus:begin": 3631392,
-          "corpus:end": 3636546
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1137",
-          "dc:title": "Turn 1137",
-          "corpus:begin": 3636546,
-          "corpus:end": 3639486
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1138",
-          "dc:title": "Turn 1138",
-          "corpus:begin": 3639486,
-          "corpus:end": 3648168
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1139",
-          "dc:title": "Turn 1139",
-          "corpus:begin": 3648168,
-          "corpus:end": 3648423
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1140",
-          "dc:title": "Turn 1140",
-          "corpus:begin": 3648423,
-          "corpus:end": 3650339
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1141",
-          "dc:title": "Turn 1141",
-          "corpus:begin": 3650339,
-          "corpus:end": 3650745
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1142",
-          "dc:title": "Turn 1142",
-          "corpus:begin": 3650745,
-          "corpus:end": 3651715
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1143",
-          "dc:title": "Turn 1143",
-          "corpus:begin": 3651715,
-          "corpus:end": 3652047
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1144",
-          "dc:title": "Turn 1144",
-          "corpus:begin": 3652047,
-          "corpus:end": 3655756
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1145",
-          "dc:title": "Turn 1145",
-          "corpus:begin": 3655756,
-          "corpus:end": 3657112
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1146",
-          "dc:title": "Turn 1146",
-          "corpus:begin": 3657112,
-          "corpus:end": 3659592
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1147",
-          "dc:title": "Turn 1147",
-          "corpus:begin": 3659592,
-          "corpus:end": 3660253
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1148",
-          "dc:title": "Turn 1148",
-          "corpus:begin": 3660253,
-          "corpus:end": 3661033
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1149",
-          "dc:title": "Turn 1149",
-          "corpus:begin": 3661033,
-          "corpus:end": 3663892
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1150",
-          "dc:title": "Turn 1150",
-          "corpus:begin": 3663892,
-          "corpus:end": 3669580
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1151",
-          "dc:title": "Turn 1151",
-          "corpus:begin": 3669580,
-          "corpus:end": 3670914
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1152",
-          "dc:title": "Turn 1152",
-          "corpus:begin": 3670914,
-          "corpus:end": 3672112
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1153",
-          "dc:title": "Turn 1153",
-          "corpus:begin": 3672112,
-          "corpus:end": 3673024
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1154",
-          "dc:title": "Turn 1154",
-          "corpus:begin": 3673024,
-          "corpus:end": 3673472
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1155",
-          "dc:title": "Turn 1155",
-          "corpus:begin": 3673472,
-          "corpus:end": 3682853
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1156",
-          "dc:title": "Turn 1156",
-          "corpus:begin": 3682853,
-          "corpus:end": 3684982
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1157",
-          "dc:title": "Turn 1157",
-          "corpus:begin": 3684982,
-          "corpus:end": 3688540
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1158",
-          "dc:title": "Turn 1158",
-          "corpus:begin": 3688540,
-          "corpus:end": 3690534
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1159",
-          "dc:title": "Turn 1159",
-          "corpus:begin": 3690534,
-          "corpus:end": 3691504
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1160",
-          "dc:title": "Turn 1160",
-          "corpus:begin": 3691504,
-          "corpus:end": 3694721
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1161",
-          "dc:title": "Turn 1161",
-          "corpus:begin": 3694721,
-          "corpus:end": 3695030
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1162",
-          "dc:title": "Turn 1162",
-          "corpus:begin": 3695030,
-          "corpus:end": 3702838
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1163",
-          "dc:title": "Turn 1163",
-          "corpus:begin": 3702838,
-          "corpus:end": 3705102
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1164",
-          "dc:title": "Turn 1164",
-          "corpus:begin": 3705102,
-          "corpus:end": 3716693
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1165",
-          "dc:title": "Turn 1165",
-          "corpus:begin": 3716693,
-          "corpus:end": 3724478
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1166",
-          "dc:title": "Turn 1166",
-          "corpus:begin": 3724478,
-          "corpus:end": 3724733
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1167",
-          "dc:title": "Turn 1167",
-          "corpus:begin": 3724733,
-          "corpus:end": 3729004
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1168",
-          "dc:title": "Turn 1168",
-          "corpus:begin": 3729004,
-          "corpus:end": 3731249
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1169",
-          "dc:title": "Turn 1169",
-          "corpus:begin": 3731249,
-          "corpus:end": 3732528
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1170",
-          "dc:title": "Turn 1170",
-          "corpus:begin": 3732528,
-          "corpus:end": 3733749
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1171",
-          "dc:title": "Turn 1171",
-          "corpus:begin": 3733749,
-          "corpus:end": 3736245
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1172",
-          "dc:title": "Turn 1172",
-          "corpus:begin": 3736245,
-          "corpus:end": 3736635
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1173",
-          "dc:title": "Turn 1173",
-          "corpus:begin": 3736635,
-          "corpus:end": 3737833
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1174",
-          "dc:title": "Turn 1174",
-          "corpus:begin": 3737833,
-          "corpus:end": 3740039
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1175",
-          "dc:title": "Turn 1175",
-          "corpus:begin": 3740039,
-          "corpus:end": 3744045
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1176",
-          "dc:title": "Turn 1176",
-          "corpus:begin": 3744045,
-          "corpus:end": 3744393
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1177",
-          "dc:title": "Turn 1177",
-          "corpus:begin": 3744393,
-          "corpus:end": 3746062
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1178",
-          "dc:title": "Turn 1178",
-          "corpus:begin": 3746062,
-          "corpus:end": 3747708
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1179",
-          "dc:title": "Turn 1179",
-          "corpus:begin": 3747708,
-          "corpus:end": 3754230
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1180",
-          "dc:title": "Turn 1180",
-          "corpus:begin": 3754230,
-          "corpus:end": 3760545
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1181",
-          "dc:title": "Turn 1181",
-          "corpus:begin": 3760545,
-          "corpus:end": 3763077
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1182",
-          "dc:title": "Turn 1182",
-          "corpus:begin": 3763077,
-          "corpus:end": 3763869
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1183",
-          "dc:title": "Turn 1183",
-          "corpus:begin": 3763869,
-          "corpus:end": 3765383
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1184",
-          "dc:title": "Turn 1184",
-          "corpus:begin": 3765383,
-          "corpus:end": 3766156
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1185",
-          "dc:title": "Turn 1185",
-          "corpus:begin": 3766156,
-          "corpus:end": 3767083
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1186",
-          "dc:title": "Turn 1186",
-          "corpus:begin": 3767083,
-          "corpus:end": 3771255
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1187",
-          "dc:title": "Turn 1187",
-          "corpus:begin": 3771255,
-          "corpus:end": 3772859
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1188",
-          "dc:title": "Turn 1188",
-          "corpus:begin": 3772859,
-          "corpus:end": 3773206
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1189",
-          "dc:title": "Turn 1189",
-          "corpus:begin": 3773206,
-          "corpus:end": 3775640
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_trn1190",
-          "dc:title": "Turn 1190",
-          "corpus:begin": 3775640,
-          "corpus:end": 3779059
-        }
-      ],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0001",
-          "begin": 0,
-          "end": 1026,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0001",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0001"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0002",
-          "begin": 2312,
-          "end": 5393,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0001",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "alors je vais d'abord vous demander depuis combien de temps"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0001"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0003",
-          "begin": 5393,
-          "end": 6926,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0001",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous habitez Orléans ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0001"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0004",
-          "begin": 7709,
-          "end": 8669,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0002",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "depuis ma naissance"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0002"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0005",
-          "begin": 9333,
-          "end": 10832,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0003",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "dep-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0003"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0006",
-          "begin": 9333,
-          "end": 10832,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0003",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "cinquante-cinq ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0003"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0007",
-          "begin": 10832,
-          "end": 11792,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0004",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "cinquante-cinq ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0004"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0008",
-          "begin": 11792,
-          "end": 13760,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0005",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui je suis né à Orléans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0005"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0009",
-          "begin": 13760,
-          "end": 15363,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0006",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous êtes ah bon alors vous êtes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0006"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0010",
-          "begin": 15363,
-          "end": 18861,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0006",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "un Orléanais de vieille date mais ça ça c'est très intéressant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0006"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0011",
-          "begin": 19456,
-          "end": 19998,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0007",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0007"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0012",
-          "begin": 20468,
-          "end": 22158,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0007",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous vous plaisez à Orléans ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0007"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0013",
-          "begin": 22158,
-          "end": 23205,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0008",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0008"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0014",
-          "begin": 23205,
-          "end": 23678,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0009",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0009"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0015",
-          "begin": 23678,
-          "end": 24951,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0010",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment à tous points de vue"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0010"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0016",
-          "begin": 24951,
-          "end": 26971,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0010",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'ai encore euh ma famille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0010"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0017",
-          "begin": 27388,
-          "end": 28066,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0011",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0011"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0018",
-          "begin": 28066,
-          "end": 32259,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0012",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et puis toutes les connaissances et ben puis not- notre région est superbe quoi euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0012"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0019",
-          "begin": 32259,
-          "end": 32746,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0013",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0013"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0020",
-          "begin": 32746,
-          "end": 33254,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0014",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm hm oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0014"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0021",
-          "begin": 33918,
-          "end": 34196,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0015",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0015"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0022",
-          "begin": 34196,
-          "end": 35517,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0016",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm je voudrais pas changer"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0016"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0023",
-          "begin": 36421,
-          "end": 38403,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0017",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous envisagez pas de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0017"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0024",
-          "begin": 38403,
-          "end": 39898,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0017",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous comptez rester à Orléans ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0017"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0025",
-          "begin": 39898,
-          "end": 40559,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0018",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0018"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0026",
-          "begin": 40559,
-          "end": 41376,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0019",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0019"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0027",
-          "begin": 40559,
-          "end": 41376,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0019",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0019"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0028",
-          "begin": 41376,
-          "end": 44123,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0020",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça sera peut-être pas pareil pour le fils avec ses études"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0020"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0029",
-          "begin": 44123,
-          "end": 44405,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0021",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0021"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0030",
-          "begin": 44405,
-          "end": 48934,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0022",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "si plus tard il a une profession il veut être professeur de dessin il changerait peut-être forcément"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0022"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0031",
-          "begin": 48934,
-          "end": 49163,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0023",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0023"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0032",
-          "begin": 49163,
-          "end": 49894,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0024",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "travailler dans les lycées"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0024"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0033",
-          "begin": 50402,
-          "end": 50753,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0025",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0025"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0034",
-          "begin": 51727,
-          "end": 53191,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0025",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais enfin vous êtes un Orléanais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0025"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0035",
-          "begin": 53191,
-          "end": 54776,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0026",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh moi je jusqu'à la fin oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0026"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0036",
-          "begin": 53191,
-          "end": 54776,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0026",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "content"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0026"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0037",
-          "begin": 54776,
-          "end": 55524,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0027",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "satisfait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0027"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0038",
-          "begin": 56515,
-          "end": 56884,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0028",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0028"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0039",
-          "begin": 56884,
-          "end": 58435,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0028",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que vous faites comme travail ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0028"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0040",
-          "begin": 58435,
-          "end": 59655,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0029",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je suis peintre en bâtiment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0029"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0041",
-          "begin": 60351,
-          "end": 60754,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0030",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0030"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0042",
-          "begin": 61467,
-          "end": 63188,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0031",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh il y a vingt ans quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0031"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0043",
-          "begin": 64071,
-          "end": 64235,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0032",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0032"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0044",
-          "begin": 64235,
-          "end": 65000,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0033",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "depuis mon mariage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0033"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0045",
-          "begin": 65000,
-          "end": 65438,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0034",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0034"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0046",
-          "begin": 65438,
-          "end": 65855,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0034",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0034"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0047",
-          "begin": 65855,
-          "end": 67142,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0035",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "avant j'étais électricien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0035"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0048",
-          "begin": 67142,
-          "end": 67580,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0036",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0036"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0049",
-          "begin": 67580,
-          "end": 68484,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0037",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "dans le bâtiment aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0037"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0050",
-          "begin": 68484,
-          "end": 68901,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0038",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0038"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0051",
-          "begin": 70014,
-          "end": 70504,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0039",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0039"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0052",
-          "begin": 71582,
-          "end": 73008,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0039",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que par exemple faut"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0039"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0053",
-          "begin": 73829,
-          "end": 74371,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0039",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous pouvez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0039"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0054",
-          "begin": 74910,
-          "end": 78283,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0039",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "nous expliquer en quoi ça consiste enfin je sais pas simplement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0039"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0055",
-          "begin": 78283,
-          "end": 80842,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0039",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "décrire une journée de travail par exemple ou"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0039"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0056",
-          "begin": 80842,
-          "end": 81311,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0040",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0040"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0057",
-          "begin": 81311,
-          "end": 82163,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0041",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "comment ça se passe ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0041"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0058",
-          "begin": 82163,
-          "end": 83363,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0042",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "maintenant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0042"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0059",
-          "begin": 83363,
-          "end": 88912,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0042",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "depuis trois ans mon beau-père l'entreprise de peinture était à mon beau-père le père de ma femme"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0042"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0060",
-          "begin": 88912,
-          "end": 89416,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0043",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0043"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0061",
-          "begin": 89416,
-          "end": 89764,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0044",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0044"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0062",
-          "begin": 90320,
-          "end": 91416,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0044",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "depuis trois ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0044"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0063",
-          "begin": 91416,
-          "end": 93297,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0044",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je suis avec le successeur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0044"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0064",
-          "begin": 93297,
-          "end": 93575,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0045",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0045"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0065",
-          "begin": 93575,
-          "end": 95974,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0046",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors je suis comme chef de chantier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0046"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0066",
-          "begin": 95974,
-          "end": 96618,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0047",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0047"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0067",
-          "begin": 96618,
-          "end": 99021,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0048",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors je m'occupe des clients"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0048"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0068",
-          "begin": 99563,
-          "end": 100398,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0048",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à contenter"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0048"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0069",
-          "begin": 100398,
-          "end": 101723,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0048",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et du personnel"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0048"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0070",
-          "begin": 101723,
-          "end": 103643,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0048",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à surveiller à et à aider"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0048"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0071",
-          "begin": 103643,
-          "end": 104116,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0049",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0049"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0072",
-          "begin": 104116,
-          "end": 104380,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0049",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0049"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0073",
-          "begin": 104380,
-          "end": 105667,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0050",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour euh vérifier le travail"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0050"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0074",
-          "begin": 106157,
-          "end": 106818,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0050",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0050"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0075",
-          "begin": 107413,
-          "end": 111328,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0050",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il nous do- en ce moment nous sommes dans une belle propriété en train de refaire les"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0050"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0076",
-          "begin": 111328,
-          "end": 112023,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0050",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "extérieurs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0050"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0077",
-          "begin": 112023,
-          "end": 113449,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0051",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "peinture extérieure"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0051"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0078",
-          "begin": 112023,
-          "end": 113449,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0051",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0051"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0079",
-          "begin": 113449,
-          "end": 113835,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0052",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0052"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0080",
-          "begin": 113835,
-          "end": 114968,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0053",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh c'est très plaisant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0053"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0081",
-          "begin": 114968,
-          "end": 115594,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0054",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0054"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0082",
-          "begin": 115594,
-          "end": 116794,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0055",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "nous avons pris"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0055"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0083",
-          "begin": 117475,
-          "end": 120674,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0055",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "voilà huit jours le début du chantier on va terminer demain"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0055"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0084",
-          "begin": 120674,
-          "end": 121039,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0056",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0056"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0085",
-          "begin": 121039,
-          "end": 122222,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0057",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et les clients"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0057"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0086",
-          "begin": 122222,
-          "end": 125389,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0057",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh c'est très susceptible évidemment ouvrir les salons et tout ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0057"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0087",
-          "begin": 125389,
-          "end": 126015,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0058",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "quoi mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0058"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0088",
-          "begin": 125389,
-          "end": 126015,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0058",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0058"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0089",
-          "begin": 126015,
-          "end": 127806,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0059",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est c'est agréable tout de même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0059"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0090",
-          "begin": 127806,
-          "end": 128244,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0060",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0060"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0091",
-          "begin": 128887,
-          "end": 131565,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0060",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et comment ça se passe une journée de travail pour vous euh ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0060"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0092",
-          "begin": 132107,
-          "end": 132528,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0060",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pratiquement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0060"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0093",
-          "begin": 132528,
-          "end": 137208,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0061",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je commence le je me lève le matin avant un petit peu avant sept heures on commence à sept heures et demie"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0061"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0094",
-          "begin": 137208,
-          "end": 137750,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0062",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0062"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0095",
-          "begin": 137750,
-          "end": 138985,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0063",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et alors en bas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0063"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0096",
-          "begin": 138985,
-          "end": 141092,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0063",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on voit le nouveau patron"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0063"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0097",
-          "begin": 141092,
-          "end": 141579,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0064",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0064"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0098",
-          "begin": 141579,
-          "end": 143929,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0065",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et alors euh si il y a des remarques"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0065"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0099",
-          "begin": 143929,
-          "end": 146641,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0065",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de la veille ou pour le jour même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0065"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0100",
-          "begin": 146641,
-          "end": 149127,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0065",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "des fois y a eu un coup de téléphone une urgence"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0065"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0101",
-          "begin": 149127,
-          "end": 149371,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0066",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0066"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0102",
-          "begin": 149371,
-          "end": 151605,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0067",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ou alors alors on repart à notre chantier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0067"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0103",
-          "begin": 152321,
-          "end": 154147,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0067",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qui se trouve soit dans la ville ou aux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0067"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0104",
-          "begin": 154147,
-          "end": 155159,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0068",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alentours"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0068"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0105",
-          "begin": 154147,
-          "end": 155159,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0068",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0068"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0106",
-          "begin": 155159,
-          "end": 157596,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0069",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "si c'est un déplacement il nous emmène en voiture"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0069"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0107",
-          "begin": 157596,
-          "end": 157979,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0070",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0070"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0108",
-          "begin": 158869,
-          "end": 163633,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0071",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et alors le midi ben le travail euh s'effectue ordinairement le le les travaux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0071"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0109",
-          "begin": 163633,
-          "end": 164141,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0072",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0072"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0110",
-          "begin": 164141,
-          "end": 164892,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0073",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de peinture"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0073"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0111",
-          "begin": 164892,
-          "end": 165257,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0074",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0074"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0112",
-          "begin": 165257,
-          "end": 166213,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0075",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est toujours pareil"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0075"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0113",
-          "begin": 166752,
-          "end": 168508,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0076",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est ce qui compte le plus pour vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0076"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0114",
-          "begin": 168508,
-          "end": 169499,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0076",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "dans votre travail ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0076"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0115",
-          "begin": 170511,
-          "end": 172688,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0077",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ben nous c'est de satisfaire le client"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0077"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0116",
-          "begin": 170511,
-          "end": 172688,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0077",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est ce qu'est le plus important ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0077"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0117",
-          "begin": 172688,
-          "end": 172952,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0078",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0078"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0118",
-          "begin": 172952,
-          "end": 173978,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0079",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "n'est-ce pas euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0079"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0119",
-          "begin": 173978,
-          "end": 177302,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0079",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et le tant pis pour le les ouvriers des fois ça grogne ou n'importe mais moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0079"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0120",
-          "begin": 177302,
-          "end": 178314,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0080",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'ai beaucoup à faire mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0080"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0121",
-          "begin": 177302,
-          "end": 178314,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0080",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0080"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0122",
-          "begin": 178314,
-          "end": 183672,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0081",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh je se- veux satisfaire le client et la preuve c'est ce qu'il nous faut c'est de retourner"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0081"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0123",
-          "begin": 183672,
-          "end": 184771,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0082",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "chez les clients"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0082"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0124",
-          "begin": 183672,
-          "end": 184771,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0082",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0082"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0125",
-          "begin": 184771,
-          "end": 185209,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0083",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0083"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0126",
-          "begin": 185209,
-          "end": 191050,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0084",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "nous avons fait le salon l'année dernière de cette propriété les gens ont été très satisfaits et cette année ils nous font faire les extérieurs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0084"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0127",
-          "begin": 191050,
-          "end": 192302,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0084",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour le mariage de leur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0084"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0128",
-          "begin": 192302,
-          "end": 193119,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0085",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "demoiselle"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0085"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0129",
-          "begin": 192302,
-          "end": 193119,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0085",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0085"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0130",
-          "begin": 193119,
-          "end": 193484,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0086",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0086"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0131",
-          "begin": 193484,
-          "end": 193762,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0087",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0087"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0132",
-          "begin": 194701,
-          "end": 196474,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0087",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est ce qui vous plaît dans votre métier ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0087"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0133",
-          "begin": 197239,
-          "end": 202110,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0088",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben moi j'aime beaucoup l- la la finition le raffinement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0088"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0134",
-          "begin": 202110,
-          "end": 202531,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0089",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0089"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0135",
-          "begin": 202531,
-          "end": 204968,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0090",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors la la la peinture me plaît énormément"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0090"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0136",
-          "begin": 204968,
-          "end": 207802,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0090",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et ça serait à refaire je crois que j'aurais même pris la tapisserie"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0090"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0137",
-          "begin": 208567,
-          "end": 209127,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0091",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0091"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0138",
-          "begin": 209127,
-          "end": 210817,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0092",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que j'aimerais euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0092"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0139",
-          "begin": 210817,
-          "end": 212907,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0092",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh faire l'ameublement et tout ça en même temps"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0092"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0140",
-          "begin": 212907,
-          "end": 213276,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0093",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0093"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0141",
-          "begin": 213276,
-          "end": 218078,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0094",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais maintenant il est trop tard cinquante-cinq ans je peux pas refaire marche arrière et malgré tout ça plairait à mon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0094"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0142",
-          "begin": 218078,
-          "end": 219837,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0094",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "nouvel entrepreneur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0094"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0143",
-          "begin": 219837,
-          "end": 221176,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0095",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mon nouvel employeur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0095"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0144",
-          "begin": 219837,
-          "end": 221176,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0095",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0095"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0145",
-          "begin": 221510,
-          "end": 223217,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0096",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce qu'on fait de plus en plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0096"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0146",
-          "begin": 223217,
-          "end": 225147,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0096",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "des revêtements de mural"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0096"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0147",
-          "begin": 225147,
-          "end": 226350,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0096",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en satin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0096"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0148",
-          "begin": 226350,
-          "end": 229983,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0097",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en tissu oui ah oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0097"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0149",
-          "begin": 226350,
-          "end": 229983,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0097",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "en tissu ça revient à la mode hein c'est c'est c'est joli des"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0097"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0150",
-          "begin": 229983,
-          "end": 233443,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0098",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah c'est très joli alors j'en maintenant ça va parce qu'on colle comme du papier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0098"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0151",
-          "begin": 233443,
-          "end": 236367,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0099",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0099"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0152",
-          "begin": 233443,
-          "end": 236367,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0099",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors ça ça implique un autre métier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0099"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0153",
-          "begin": 236367,
-          "end": 236976,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0100",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0100"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0154",
-          "begin": 236367,
-          "end": 236976,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0100",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0100"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0155",
-          "begin": 237501,
-          "end": 239657,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0101",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "là il y a eu un salon tout dernièrement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0101"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0156",
-          "begin": 239657,
-          "end": 240617,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0101",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il a fallu le"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0101"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0157",
-          "begin": 240617,
-          "end": 241472,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0101",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm coudre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0101"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0158",
-          "begin": 242081,
-          "end": 242589,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0102",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0102"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0159",
-          "begin": 242081,
-          "end": 242589,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0102",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0102"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0160",
-          "begin": 242589,
-          "end": 243531,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0103",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça coudre euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0103"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0161",
-          "begin": 243531,
-          "end": 244905,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0103",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est pas l'affaire de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0103"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0162",
-          "begin": 244905,
-          "end": 245708,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0104",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais il faudrait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0104"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0163",
-          "begin": 244905,
-          "end": 245708,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0104",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0104"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0164",
-          "begin": 246230,
-          "end": 247763,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0106",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais vous aimez vous auriez bien aimé ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0106"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0165",
-          "begin": 247763,
-          "end": 250197,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0107",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah euh j'aurais beaucoup aimé ça évidemment oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0107"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0166",
-          "begin": 247763,
-          "end": 250197,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0107",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh c'est ça faire tapissier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0107"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0167",
-          "begin": 250197,
-          "end": 250423,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0108",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0108"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0168",
-          "begin": 251153,
-          "end": 252043,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0109",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0109"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0169",
-          "begin": 251153,
-          "end": 252043,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0109",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à cause du"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0109"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0170",
-          "begin": 252043,
-          "end": 252495,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0110",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0110"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0171",
-          "begin": 252495,
-          "end": 253768,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0111",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à cause du travail"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0111"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0172",
-          "begin": 252495,
-          "end": 253768,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0111",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'aime beaucoup"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0111"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0173",
-          "begin": 253768,
-          "end": 256640,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0112",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et puis lui euh mon nouveau patron c'est pareil"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0112"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0174",
-          "begin": 256640,
-          "end": 256956,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0112",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0112"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0175",
-          "begin": 257547,
-          "end": 258521,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0112",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on aime beaucoup ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0112"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0176",
-          "begin": 258521,
-          "end": 262380,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0112",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et vous voyez il envisagerait presque euh le revêtement de sol"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0112"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0177",
-          "begin": 262989,
-          "end": 263584,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0112",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "délicat quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0112"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0178",
-          "begin": 263584,
-          "end": 264648,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0113",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0113"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0179",
-          "begin": 263584,
-          "end": 264648,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0113",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0113"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0180",
-          "begin": 264648,
-          "end": 266581,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0114",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "alors c'est le travail délicat bien fini"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0114"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0181",
-          "begin": 266581,
-          "end": 268042,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0115",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui oui c'est ça euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0115"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0182",
-          "begin": 268411,
-          "end": 270692,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0115",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le c'est plutôt de la décoration"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0115"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0183",
-          "begin": 270692,
-          "end": 271339,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0116",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0116"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0184",
-          "begin": 271339,
-          "end": 276801,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0117",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh la m- pose de moulures au lieu de faire le gros bâtiment nous ne faisons pas d'HLM de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0117"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0185",
-          "begin": 276801,
-          "end": 277045,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0118",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0118"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0186",
-          "begin": 277045,
-          "end": 278096,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0119",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "d'habitations à vous savez à des"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0119"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0187",
-          "begin": 278096,
-          "end": 278795,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0120",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "loyers modérés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0120"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0188",
-          "begin": 278096,
-          "end": 278795,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0120",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0120"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0189",
-          "begin": 278795,
-          "end": 280624,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0121",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pas de gros travaux à rabais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0121"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0190",
-          "begin": 280624,
-          "end": 280853,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0122",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0122"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0191",
-          "begin": 280853,
-          "end": 283687,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0123",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "nous avons une clientèle particulière de docteurs d'avocats"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0123"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0192",
-          "begin": 283687,
-          "end": 284052,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0124",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0124"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0193",
-          "begin": 284052,
-          "end": 284539,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0125",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et tout ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0125"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0194",
-          "begin": 284539,
-          "end": 284904,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0126",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0126"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0195",
-          "begin": 284904,
-          "end": 287112,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0127",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et nous faisons que du bon bou- travail"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0127"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0196",
-          "begin": 287112,
-          "end": 287481,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0128",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0128"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0197",
-          "begin": 288354,
-          "end": 293660,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0129",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors on pose de la moulure pour faire du style Louis quinze des salons et tout ça les pièces qu'on transforme en style"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0129"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0198",
-          "begin": 293660,
-          "end": 294081,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0130",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0130"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0199",
-          "begin": 294081,
-          "end": 295319,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0131",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors c'est très agréable"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0131"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0200",
-          "begin": 294081,
-          "end": 295319,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0131",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0131"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0201",
-          "begin": 295983,
-          "end": 297443,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0131",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "très agréable"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0131"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0202",
-          "begin": 295983,
-          "end": 297443,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0131",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oh oui c'est intéressant ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0131"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0203",
-          "begin": 297443,
-          "end": 297826,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0132",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0132"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0204",
-          "begin": 298716,
-          "end": 301063,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0132",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "aujourd'hui et euh même les jeunes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0132"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0205",
-          "begin": 301063,
-          "end": 302749,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0132",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ils ne veulent pas s'y mettre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0132"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0206",
-          "begin": 302749,
-          "end": 306209,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0132",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que évidemment ils aiment mieux être aux pièces gagner davantage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0132"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0207",
-          "begin": 307290,
-          "end": 307899,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0133",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "vous comprenez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0133"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0208",
-          "begin": 307290,
-          "end": 307899,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0133",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0133"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0209",
-          "begin": 307899,
-          "end": 310771,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0134",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que nous nous sommes payés à l'heure c'est des travaux très longs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0134"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0210",
-          "begin": 311244,
-          "end": 311647,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0135",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0135"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0211",
-          "begin": 311647,
-          "end": 313195,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0136",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "très onéreux aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0136"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0212",
-          "begin": 313195,
-          "end": 313911,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0136",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0136"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0213",
-          "begin": 313911,
-          "end": 315250,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0137",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui mais les gens s'en sont"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0137"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0214",
-          "begin": 316036,
-          "end": 317674,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0138",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0138"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0215",
-          "begin": 316036,
-          "end": 317674,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0138",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "en sont l'apprécient aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0138"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0216",
-          "begin": 317674,
-          "end": 319753,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0139",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah évidemment puisque c'est des gens"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0139"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0217",
-          "begin": 319753,
-          "end": 320991,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0140",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "du travail bien fini"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0140"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0218",
-          "begin": 319753,
-          "end": 320991,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0140",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0140"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0219",
-          "begin": 320991,
-          "end": 326262,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de euh de hautement qualifiés quoi puisque ce sont des professions libérales beaucoup"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0220",
-          "begin": 327166,
-          "end": 327427,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0221",
-          "begin": 327865,
-          "end": 330351,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et qui ne regardent pas quoi à payer hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0222",
-          "begin": 330907,
-          "end": 332142,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais malgré tout on ne peut pas faire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0223",
-          "begin": 332142,
-          "end": 333936,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "des des travaux aux pièces"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0224",
-          "begin": 333936,
-          "end": 335692,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "comme euh ça se fait beaucoup maintenant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0225",
-          "begin": 335692,
-          "end": 336912,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "vous savez aux jeunes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0226",
-          "begin": 336912,
-          "end": 339746,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on leurs fait faire un appartement on leur donne mettons"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0227",
-          "begin": 340341,
-          "end": 341127,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "dix milles francs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0228",
-          "begin": 341127,
-          "end": 342208,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0142",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour la journée ou n'importe"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0142"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0229",
-          "begin": 341127,
-          "end": 342208,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0142",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0142"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0230",
-          "begin": 342208,
-          "end": 343634,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0143",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour faire l'appartement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0143"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0231",
-          "begin": 343777,
-          "end": 343867,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0144",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0144"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0232",
-          "begin": 343867,
-          "end": 346110,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0145",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh dim- aux pièces quoi ils travaillent aux pièces"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0145"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0233",
-          "begin": 346110,
-          "end": 346423,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0146",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0146"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0234",
-          "begin": 346423,
-          "end": 347748,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0147",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors ça c'est pas pareil"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0147"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0235",
-          "begin": 347748,
-          "end": 348203,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0148",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0148"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0236",
-          "begin": 348203,
-          "end": 348673,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0149",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0149"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0237",
-          "begin": 348673,
-          "end": 349233,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0150",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0150"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0238",
-          "begin": 349233,
-          "end": 352627,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0151",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et c'est pour ça on est arrive de moins en moins à trouver des ouvriers qualifiés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0151"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0239",
-          "begin": 352627,
-          "end": 353952,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0152",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour faire du beau travail comme ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0152"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0240",
-          "begin": 352627,
-          "end": 353952,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0152",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0152"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0241",
-          "begin": 354929,
-          "end": 355346,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0153",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0153"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0242",
-          "begin": 356528,
-          "end": 360244,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0154",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que dans les centres accélérés d'apprentissage dans le la peinture"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0154"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0243",
-          "begin": 361047,
-          "end": 361864,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0154",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on leur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0154"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0244",
-          "begin": 361864,
-          "end": 363585,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0154",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "apprend le travail courant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0154"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0245",
-          "begin": 363585,
-          "end": 364003,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0155",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0155"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0246",
-          "begin": 364003,
-          "end": 365780,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0156",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh ce qu'il ce qu'il faut faire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0156"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0247",
-          "begin": 365780,
-          "end": 366149,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0157",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0157"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0248",
-          "begin": 366149,
-          "end": 366535,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0158",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0158"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0249",
-          "begin": 366535,
-          "end": 369981,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0158",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "nettoyer les murs faire les impressions quoi la la peinture"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0158"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0250",
-          "begin": 369981,
-          "end": 371149,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0158",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais c'est tout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0158"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0251",
-          "begin": 371149,
-          "end": 374307,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0158",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "la décoration ça c'est né en soi ça cette histoire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0158"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0252",
-          "begin": 374307,
-          "end": 374626,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0159",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0159"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0253",
-          "begin": 374626,
-          "end": 375533,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0160",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "une histoire ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0160"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0254",
-          "begin": 376554,
-          "end": 377592,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0161",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "on en a le goût ou"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0161"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0255",
-          "begin": 377592,
-          "end": 378467,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0162",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais eh oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0162"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0256",
-          "begin": 378467,
-          "end": 380392,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0162",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh j'ai beau prendre des fois des jeunes avec moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0162"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0257",
-          "begin": 380392,
-          "end": 383367,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0162",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ben c'est à refaire ou alors je lui dis écarte écarte va-t'en va-t'en parce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0162"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0258",
-          "begin": 383367,
-          "end": 384840,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0162",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh tout à l'heure ça va pas assez vite"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0162"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0259",
-          "begin": 385263,
-          "end": 385569,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0163",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0163"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0260",
-          "begin": 386678,
-          "end": 387964,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "alors on va passer à une"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0261",
-          "begin": 388373,
-          "end": 388828,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "une"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0262",
-          "begin": 389630,
-          "end": 390768,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "question un peu différente"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0263",
-          "begin": 391631,
-          "end": 392127,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0264",
-          "begin": 392127,
-          "end": 394504,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "aujourd'hui les femmes mariées travaillent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0265",
-          "begin": 394504,
-          "end": 395190,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de plus en plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0266",
-          "begin": 395190,
-          "end": 395630,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0165",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0165"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0267",
-          "begin": 396505,
-          "end": 397689,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0166",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est ce que vous en pensez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0166"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0268",
-          "begin": 396505,
-          "end": 397689,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0166",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0166"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0269",
-          "begin": 397689,
-          "end": 401598,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0166",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "personnellement vous êtes pour vous êtes contre ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0166"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0270",
-          "begin": 397689,
-          "end": 401598,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0166",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah non non non non non non non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0166"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0271",
-          "begin": 401598,
-          "end": 402476,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0167",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi je trouve que c'est"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0167"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0272",
-          "begin": 403441,
-          "end": 404389,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0167",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le midi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0167"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0273",
-          "begin": 404389,
-          "end": 405498,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0167",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'ai juste une heure et demie"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0167"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0274",
-          "begin": 405909,
-          "end": 406041,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0168",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0168"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0275",
-          "begin": 406041,
-          "end": 410667,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0169",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors si il fallait en arrivant qu'on s'affole à faire à manger j'aime mieux arriver et que tout soit sur la table"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0169"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0276",
-          "begin": 410667,
-          "end": 411173,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0170",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0170"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0277",
-          "begin": 411173,
-          "end": 411772,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0171",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0171"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0278",
-          "begin": 411772,
-          "end": 414654,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0171",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment ça nous supprime la télévision puis la voiture"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0171"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0279",
-          "begin": 414654,
-          "end": 417648,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0171",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh parce que si on avait deux salaires"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0171"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0280",
-          "begin": 417648,
-          "end": 418015,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0172",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0172"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0281",
-          "begin": 418015,
-          "end": 419329,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0173",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment on pourrait peut-être"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0173"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0282",
-          "begin": 420318,
-          "end": 421075,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0173",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "faire plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0173"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0283",
-          "begin": 421075,
-          "end": 421423,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0174",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0174"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0284",
-          "begin": 421423,
-          "end": 424923,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0175",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais je préfère mon petit train de vie tranquille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0175"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0285",
-          "begin": 424923,
-          "end": 426275,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0175",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je suis un petit Français moyen"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0175"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0286",
-          "begin": 426720,
-          "end": 427110,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0176",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0176"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0287",
-          "begin": 427516,
-          "end": 430668,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0176",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "alors en principe vous trouvez que c'est mieux que les femmes s'occupent de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0176"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0288",
-          "begin": 430668,
-          "end": 433933,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0177",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah moi je préfère de beaucoup et je vois les jeunes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0177"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0289",
-          "begin": 433933,
-          "end": 436390,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0177",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "avec même des situations assez pota- euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0177"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0290",
-          "begin": 436390,
-          "end": 437452,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0178",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "potables maintenant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0178"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0291",
-          "begin": 436390,
-          "end": 437452,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0178",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0178"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0292",
-          "begin": 437452,
-          "end": 438843,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0179",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qui travaillent tous les deux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0179"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0293",
-          "begin": 438843,
-          "end": 444696,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0179",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "eh bien moi je trouve j'envie pas parce que je vous dis par rapport à ça les petits-enfants faut aller courir bien vite mener le petit chez euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0179"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0294",
-          "begin": 444696,
-          "end": 445411,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0179",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "une garde"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0179"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0295",
-          "begin": 445411,
-          "end": 445859,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0180",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0180"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0296",
-          "begin": 445859,
-          "end": 447404,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0181",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et puis alors la dame elle a pas le temps de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0181"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0297",
-          "begin": 447404,
-          "end": 448409,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0182",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "faire les courses"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0182"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0298",
-          "begin": 447404,
-          "end": 448409,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0182",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0182"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0299",
-          "begin": 448409,
-          "end": 452334,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0183",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "les messieurs c'est des professeurs ou n'importe ils ont même pas le temps de corriger leurs devoirs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0183"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0300",
-          "begin": 452334,
-          "end": 453914,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0184",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est pas une vie intime"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0184"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0301",
-          "begin": 452334,
-          "end": 453914,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0184",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr003"
-              },
-              "content": "bon je repars chez maman moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0184"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0302",
-          "begin": 453914,
-          "end": 454397,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0185",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0185"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0303",
-          "begin": 454397,
-          "end": 455884,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0185",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui c'est pas une vie intime"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0185"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0304",
-          "begin": 455884,
-          "end": 456294,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0186",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0186"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0305",
-          "begin": 457457,
-          "end": 457635,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0186",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0186"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0306",
-          "begin": 460672,
-          "end": 461912,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0187",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr003"
-              },
-              "content": "je peux vous laissez refermer dans la"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0187"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0307",
-          "begin": 461912,
-          "end": 462704,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0188",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "au revoir"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0188"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0308",
-          "begin": 462704,
-          "end": 464269,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0189",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr003"
-              },
-              "content": "parce que j'ai ma mère qui est souffrante il faut qu'elle euh que j'y aille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0189"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0309",
-          "begin": 464269,
-          "end": 465741,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0190",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui je comprends bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0190"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0310",
-          "begin": 467850,
-          "end": 468488,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0191",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0191"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0311",
-          "begin": 468488,
-          "end": 469979,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0191",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et et vos enfants"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0191"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0312",
-          "begin": 469979,
-          "end": 471737,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0191",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce qu'ils font vous avez combien d'enfants d'ailleurs ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0191"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0313",
-          "begin": 471737,
-          "end": 473421,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0192",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous avez simplement celui-là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0192"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0314",
-          "begin": 471737,
-          "end": 473421,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0192",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "celui là seulement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0192"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0315",
-          "begin": 473421,
-          "end": 474754,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0193",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais il travaille est-ce que vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0193"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0316",
-          "begin": 474754,
-          "end": 478038,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0194",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "il est en première il va passer son baccalauréat l'année prochaine"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0194"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0317",
-          "begin": 474754,
-          "end": 478038,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0194",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "doucement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0194"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0318",
-          "begin": 478038,
-          "end": 478405,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0195",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0195"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0319",
-          "begin": 478405,
-          "end": 479158,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0196",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0196"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0320",
-          "begin": 480993,
-          "end": 481708,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0197",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0197"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0321",
-          "begin": 484432,
-          "end": 486155,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0197",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que vous aimeriez qu'il fasse ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0197"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0322",
-          "begin": 486951,
-          "end": 488037,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0198",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors c'est simple"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0198"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0323",
-          "begin": 488037,
-          "end": 489142,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0198",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il envisage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0198"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0324",
-          "begin": 489513,
-          "end": 490212,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0198",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le dessin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0198"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0325",
-          "begin": 490908,
-          "end": 493693,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0198",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "professeur de dessin si il peut y arriver l'année prochaine"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0198"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0326",
-          "begin": 494060,
-          "end": 497201,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0198",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le son professeur le prépare en deux ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0198"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0327",
-          "begin": 497201,
-          "end": 497464,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0199",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0199"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0328",
-          "begin": 497464,
-          "end": 498561,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0200",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "au concours d'entrée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0329",
-          "begin": 499280,
-          "end": 500134,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0200",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "au lycée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0330",
-          "begin": 500601,
-          "end": 501683,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0200",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "Claude Bernard"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0331",
-          "begin": 502166,
-          "end": 502765,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0200",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à Paris"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0332",
-          "begin": 503735,
-          "end": 506424,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0200",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et alors si il est accepté et si il a son bac l'année prochaine"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0333",
-          "begin": 507162,
-          "end": 509175,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0200",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en trois ans il serait professeur de dessin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0334",
-          "begin": 509855,
-          "end": 510322,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0201",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0201"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0335",
-          "begin": 510322,
-          "end": 513027,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0202",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est sa c'est c'est vraiment sa branche là si il est"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0202"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0336",
-          "begin": 513027,
-          "end": 513301,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0203",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0203"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0337",
-          "begin": 513301,
-          "end": 514499,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0204",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et il est doué pour le dessin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0204"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0338",
-          "begin": 514499,
-          "end": 515024,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0205",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0205"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0339",
-          "begin": 516125,
-          "end": 517284,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0205",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et vous êtes satisfait ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0205"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0340",
-          "begin": 517284,
-          "end": 518463,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0206",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ben oui on"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0206"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0341",
-          "begin": 518463,
-          "end": 520669,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0207",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on a beaucoup de satisfaction avec lui quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0207"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0342",
-          "begin": 520669,
-          "end": 522914,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0207",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et il a que dix-sept ans il est du mois de mars"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0207"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0343",
-          "begin": 522914,
-          "end": 524850,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0207",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non dix-huit dix-huit ans oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0207"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0344",
-          "begin": 524850,
-          "end": 526283,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0207",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "dix-huit ans là du mois de mars"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0207"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0345",
-          "begin": 526824,
-          "end": 527095,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0208",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0208"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0346",
-          "begin": 527095,
-          "end": 529552,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0209",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et il est encore pas trop avancé en âge ça ira"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0209"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0347",
-          "begin": 529552,
-          "end": 529996,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0210",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0210"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0348",
-          "begin": 530904,
-          "end": 533299,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0211",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "là je vais revenir un petit peu à votre travail"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0211"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0349",
-          "begin": 533299,
-          "end": 533782,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0212",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0212"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0350",
-          "begin": 533782,
-          "end": 534594,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0213",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0213"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0351",
-          "begin": 535371,
-          "end": 537925,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0213",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "avec qui vous parlez pendant votre travail au cours"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0213"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0352",
-          "begin": 537925,
-          "end": 540722,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0214",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de votre travail ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0214"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0353",
-          "begin": 537925,
-          "end": 540722,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0214",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh bien vous savez ici moi je suis bavard"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0214"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0354",
-          "begin": 540977,
-          "end": 541696,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0216",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous êtes bavard"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0216"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0355",
-          "begin": 541696,
-          "end": 542144,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0217",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0217"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0356",
-          "begin": 542144,
-          "end": 543767,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0218",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et de quoi vous parlez de ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0218"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0357",
-          "begin": 543767,
-          "end": 547711,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0219",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ben de tout des évènements de la politique et tout ça évidemment euh malgré tout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0219"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0358",
-          "begin": 548175,
-          "end": 548739,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0219",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0219"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0359",
-          "begin": 549666,
-          "end": 551231,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0219",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "très réservé pour la politique"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0219"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0360",
-          "begin": 551231,
-          "end": 552166,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0220",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0220"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0361",
-          "begin": 551231,
-          "end": 552166,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0220",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0220"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0362",
-          "begin": 552166,
-          "end": 552436,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0221",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0221"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0363",
-          "begin": 552436,
-          "end": 552688,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0222",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0222"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0364",
-          "begin": 553098,
-          "end": 555458,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0222",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh je ne suis pas acharné du tout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0222"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0365",
-          "begin": 555458,
-          "end": 557834,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0222",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non mais de des évènements du jour"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0222"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0366",
-          "begin": 557834,
-          "end": 560616,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0223",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "n'est ce pas euh du Concorde et tout ça quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0223"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0367",
-          "begin": 557834,
-          "end": 560616,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0223",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0223"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0368",
-          "begin": 561702,
-          "end": 563715,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0224",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous vous êtes satisfait de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0224"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0369",
-          "begin": 563715,
-          "end": 565226,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0224",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de vos conditions de travail ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0224"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0370",
-          "begin": 565226,
-          "end": 568823,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0225",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui c'est on peut pas envisager"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0225"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0371",
-          "begin": 565226,
-          "end": 568823,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0225",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "enfin vous vous ça vous plaît bien oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0225"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0372",
-          "begin": 568823,
-          "end": 571137,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0226",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh on tâche de faire le mieux qu'on euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0226"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0373",
-          "begin": 571137,
-          "end": 571952,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0226",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "possible"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0226"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0374",
-          "begin": 571952,
-          "end": 572512,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0227",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0227"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0375",
-          "begin": 572512,
-          "end": 574077,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0228",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "aussi bien les uns que les autres"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0228"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0376",
-          "begin": 574077,
-          "end": 574351,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0229",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0229"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0377",
-          "begin": 574351,
-          "end": 579605,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0230",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh si il y a quelque chose qui accroche aussi bien avec un compagnon ou du matériel ou n'importe"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0230"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0378",
-          "begin": 579605,
-          "end": 581015,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0230",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "eh ben on tâche d'améliorer quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0230"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0379",
-          "begin": 581015,
-          "end": 581421,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0231",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0231"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0380",
-          "begin": 581421,
-          "end": 582773,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0232",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui on on cherche pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0232"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0381",
-          "begin": 582773,
-          "end": 584009,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0232",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi j'aime pas la guerre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0232"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0382",
-          "begin": 584009,
-          "end": 584473,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0233",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0233"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0383",
-          "begin": 585902,
-          "end": 586154,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0234",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "bon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0384",
-          "begin": 586602,
-          "end": 587104,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0234",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0385",
-          "begin": 587104,
-          "end": 587819,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0234",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0386",
-          "begin": 588959,
-          "end": 591339,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0234",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "enfin vous devez avoir beaucoup de travail mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0387",
-          "begin": 591339,
-          "end": 593004,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0234",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quand vous avez un peu de temps libre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0388",
-          "begin": 593004,
-          "end": 593719,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0234",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que vous faites ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0389",
-          "begin": 593719,
-          "end": 596118,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0235",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ça j'ai ma passion le soir c'est mon jardin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0235"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0390",
-          "begin": 596794,
-          "end": 597316,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0236",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah c'est le jardin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0236"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0391",
-          "begin": 597316,
-          "end": 599483,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0237",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'ai un petit jardin à deux kilomètres"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0237"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0392",
-          "begin": 599483,
-          "end": 600314,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0238",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "d'ici"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0238"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0393",
-          "begin": 599483,
-          "end": 600314,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0238",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0238"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0394",
-          "begin": 600314,
-          "end": 601970,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0239",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors il y a beaucoup de fleurs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0239"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0395",
-          "begin": 601970,
-          "end": 602380,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0240",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0240"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0396",
-          "begin": 602380,
-          "end": 603678,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0241",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et puis quelques légumes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0241"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0397",
-          "begin": 603678,
-          "end": 604045,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0242",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0242"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0398",
-          "begin": 604045,
-          "end": 606363,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0243",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je n'y vais pas euh histoire de rapport"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0243"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0399",
-          "begin": 606363,
-          "end": 608395,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0244",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0244"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0400",
-          "begin": 606363,
-          "end": 608395,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0244",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est simplement pour changer d'air"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0244"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0401",
-          "begin": 608395,
-          "end": 608646,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0245",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0245"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0402",
-          "begin": 608646,
-          "end": 609844,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0246",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et puis alors le dimanche"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0246"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0403",
-          "begin": 610254,
-          "end": 612325,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0246",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on a un petit chalet"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0246"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0404",
-          "begin": 612325,
-          "end": 612619,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0247",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0247"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0405",
-          "begin": 612619,
-          "end": 614130,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0248",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "où on peut y aller euh l'été"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0248"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0406",
-          "begin": 614130,
-          "end": 615331,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0249",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on va déjeuner"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0249"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0407",
-          "begin": 614130,
-          "end": 615331,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0249",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est agréable ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0249"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0408",
-          "begin": 615331,
-          "end": 615718,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0250",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0250"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0409",
-          "begin": 615718,
-          "end": 618774,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0251",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "par exemple dim- euh le dernier week-end qu'est-ce que vous avez fait ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0251"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0410",
-          "begin": 618774,
-          "end": 621328,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0252",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "eh bien je alors nous euh nous avons dû nous promener"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0252"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0411",
-          "begin": 618774,
-          "end": 621328,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0252",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "comment ça c'est passé ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0252"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0412",
-          "begin": 621328,
-          "end": 622723,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0253",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "dans les en- à Olivet là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0253"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0413",
-          "begin": 622723,
-          "end": 622959,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0254",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0254"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0414",
-          "begin": 622959,
-          "end": 624160,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0255",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "aux environs d'Orléans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0255"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0415",
-          "begin": 624160,
-          "end": 624354,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0256",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0256"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0416",
-          "begin": 624354,
-          "end": 625459,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0257",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pass- incidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0257"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0417",
-          "begin": 626274,
-          "end": 628264,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0257",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "la grand euh la belle-mère est"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0257"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0418",
-          "begin": 628847,
-          "end": 630142,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0257",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "elle s'est cassé la jambe"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0257"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0419",
-          "begin": 630142,
-          "end": 630300,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0258",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0258"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0420",
-          "begin": 630300,
-          "end": 633488,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0259",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "sans quoi d'habitude mon beau-père a une quatre cent quatre on part"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0259"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0421",
-          "begin": 633488,
-          "end": 634438,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0259",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en week-end"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0259"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0422",
-          "begin": 634438,
-          "end": 635366,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0259",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "des fois assez loin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0259"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0423",
-          "begin": 635911,
-          "end": 636011,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0260",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0260"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0424",
-          "begin": 636011,
-          "end": 638832,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0261",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on on a presque vu les toute la France quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0261"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0425",
-          "begin": 638832,
-          "end": 639184,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0262",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah bon ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0262"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0426",
-          "begin": 639184,
-          "end": 641177,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0263",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "la Provence ou les Pyrénées la Bretagne"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0263"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0427",
-          "begin": 641177,
-          "end": 641622,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0264",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0264"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0428",
-          "begin": 641622,
-          "end": 641800,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0265",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0265"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0429",
-          "begin": 641800,
-          "end": 643117,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0266",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous aimez bien faire du tourisme"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0266"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0430",
-          "begin": 643117,
-          "end": 644817,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0267",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais moi j'aime pas conduire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0267"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0431",
-          "begin": 644817,
-          "end": 647000,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0268",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors c'est ça qui nous paralyse en ce moment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0268"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0432",
-          "begin": 647000,
-          "end": 648588,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0268",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que la belle-mère est alitée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0268"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0433",
-          "begin": 648588,
-          "end": 648862,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0268",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0268"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0434",
-          "begin": 649519,
-          "end": 650118,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0269",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0269"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0435",
-          "begin": 650972,
-          "end": 652463,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0269",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pendant les vacances d'été ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0269"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0436",
-          "begin": 652463,
-          "end": 653062,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0270",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0270"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0437",
-          "begin": 653062,
-          "end": 655515,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0270",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors nous partons un mois en Bretagne euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0270"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0438",
-          "begin": 655515,
-          "end": 655902,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0271",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0271"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0439",
-          "begin": 655902,
-          "end": 659228,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0272",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm presque toujours en Bretagne là on est on va peut-être aller en Vendée cette année"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0272"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0440",
-          "begin": 659228,
-          "end": 659753,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0273",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0273"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0441",
-          "begin": 659753,
-          "end": 661357,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0274",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais on part un tout le mois d'août"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0274"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0442",
-          "begin": 661357,
-          "end": 662076,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0275",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0275"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0443",
-          "begin": 662076,
-          "end": 662331,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0276",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0276"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0444",
-          "begin": 663127,
-          "end": 664097,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0277",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et si"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0445",
-          "begin": 664097,
-          "end": 664893,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0277",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0446",
-          "begin": 664893,
-          "end": 665418,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0277",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "enfin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0447",
-          "begin": 665418,
-          "end": 667369,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0277",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est je dis peut-être mais si vous aviez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0448",
-          "begin": 667833,
-          "end": 670580,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0277",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "deux heures de temps libre supplémentaires par jour"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0449",
-          "begin": 670580,
-          "end": 672071,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0277",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "comment vous qu'est-ce que vous feriez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0450",
-          "begin": 672071,
-          "end": 673617,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0278",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben c'est c'est que mon jardin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0278"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0451",
-          "begin": 673617,
-          "end": 674954,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0279",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que je ne vais pas à la pêche"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0279"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0452",
-          "begin": 673617,
-          "end": 674954,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0279",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0279"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0453",
-          "begin": 674954,
-          "end": 676219,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0279",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh c'est que mon jardin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0279"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0454",
-          "begin": 674954,
-          "end": 676219,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0279",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0279"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0455",
-          "begin": 676219,
-          "end": 678609,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0280",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'aime bien tailler"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0280"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0456",
-          "begin": 678609,
-          "end": 679076,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0281",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr004"
-              },
-              "content": "bricolage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0281"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0457",
-          "begin": 679791,
-          "end": 680158,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0282",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0282"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0458",
-          "begin": 680158,
-          "end": 680660,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0283",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr004"
-              },
-              "content": "bricolage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0283"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0459",
-          "begin": 682862,
-          "end": 684099,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0284",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh je je comprends pas ce que tu as dit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0284"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0460",
-          "begin": 686247,
-          "end": 686745,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0285",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "bon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0285"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0461",
-          "begin": 686745,
-          "end": 687579,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0285",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0285"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0462",
-          "begin": 688623,
-          "end": 690713,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0285",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "on va passer à un peu un autre sujet"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0285"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0463",
-          "begin": 690713,
-          "end": 690983,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0286",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0286"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0464",
-          "begin": 690983,
-          "end": 691582,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0287",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à ce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0287"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0465",
-          "begin": 691582,
-          "end": 692992,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0287",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à l'éducation"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0287"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0466",
-          "begin": 693553,
-          "end": 694581,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0287",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à votre avis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0287"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0467",
-          "begin": 695473,
-          "end": 696381,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0287",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "personnel"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0287"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0468",
-          "begin": 696381,
-          "end": 700032,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0287",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce qu'on devrait apprendre aux enfants surtout à l'école ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0287"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0469",
-          "begin": 701693,
-          "end": 702060,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0288",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0470",
-          "begin": 703026,
-          "end": 705209,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0288",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est bien bien bien compliqué votre question"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0471",
-          "begin": 706237,
-          "end": 707815,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0288",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qu'est-ce qu'on devrait apprendre aux enfants"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0472",
-          "begin": 708829,
-          "end": 711901,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0288",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il y a un choc entre moi qui n'ai que cinquante-cinq ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0473",
-          "begin": 711901,
-          "end": 713392,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0288",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "y a un pas énorme"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0474",
-          "begin": 714126,
-          "end": 715652,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0288",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "rien que pour l'éducation"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0475",
-          "begin": 715652,
-          "end": 716850,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0289",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah ça c'est intéressant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0289"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0476",
-          "begin": 715652,
-          "end": 716850,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0289",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "avec qu'aujourd'hui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0289"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0477",
-          "begin": 716850,
-          "end": 717260,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0290",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0290"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0478",
-          "begin": 717940,
-          "end": 722773,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0291",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on m'a montré moi en sortant de l'école de mettre mon béret ou mon chapeau à la main"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0291"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0479",
-          "begin": 722773,
-          "end": 722970,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0292",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0292"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0480",
-          "begin": 722970,
-          "end": 724322,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0293",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en passant devant le directeur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0293"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0481",
-          "begin": 725018,
-          "end": 727494,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0293",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on laissait le trottoir à une personne âgée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0293"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0482",
-          "begin": 727494,
-          "end": 727803,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0294",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0294"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0483",
-          "begin": 727803,
-          "end": 730643,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "aussi bien sur le trottoir que dans le car ou n'importe"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0484",
-          "begin": 731207,
-          "end": 731748,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et alors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0485",
-          "begin": 731748,
-          "end": 733162,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il y a déjà une chose"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0486",
-          "begin": 733162,
-          "end": 734344,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour démarrer"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0487",
-          "begin": 734344,
-          "end": 737358,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça euh je sais que c'était peut-être exagéré"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0488",
-          "begin": 737358,
-          "end": 739757,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "avant mille neuf cent quatorze"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0489",
-          "begin": 739757,
-          "end": 741283,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh quoi voilà à cette époque-là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0490",
-          "begin": 741283,
-          "end": 742848,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais aujourd'hui je trouve que vraiment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0491",
-          "begin": 743412,
-          "end": 744740,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est ça d'abord une bonne chose"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0492",
-          "begin": 744740,
-          "end": 746020,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un petit redressement hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0493",
-          "begin": 746797,
-          "end": 747380,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je crois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0494",
-          "begin": 747380,
-          "end": 747631,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "d'abord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0495",
-          "begin": 747631,
-          "end": 748250,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0296",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ça oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0296"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0496",
-          "begin": 748250,
-          "end": 750610,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0297",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et nous on n'arrive même plus à se faire respecter"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0297"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0497",
-          "begin": 751402,
-          "end": 751692,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0298",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0298"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0498",
-          "begin": 751692,
-          "end": 753778,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0299",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "par les jeunes dans les métiers"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0299"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0499",
-          "begin": 754223,
-          "end": 757356,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0300",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je vois des apprentis plombiers ou serruriers dans le bâtiment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0300"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0500",
-          "begin": 754223,
-          "end": 757356,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0300",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0300"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0501",
-          "begin": 757781,
-          "end": 758283,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0301",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0301"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0502",
-          "begin": 758940,
-          "end": 759809,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0301",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "y a rien à faire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0301"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0503",
-          "begin": 760254,
-          "end": 761050,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0301",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "rien à faire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0301"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0504",
-          "begin": 761050,
-          "end": 763777,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0301",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors y a une grande chose à faire c'est déjà l'éducation"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0301"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0505",
-          "begin": 764183,
-          "end": 764550,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0302",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0302"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0506",
-          "begin": 764550,
-          "end": 765960,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0303",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors moi je suis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0507",
-          "begin": 765960,
-          "end": 766829,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0303",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "partisan"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0508",
-          "begin": 766829,
-          "end": 769109,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0303",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de l'école comme ils disent jusqu'à seize ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0509",
-          "begin": 769109,
-          "end": 771489,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0303",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh les enfants auraient besoin d'un peu de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0510",
-          "begin": 771489,
-          "end": 773251,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0303",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "d'instruction pour être tout de même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0511",
-          "begin": 773834,
-          "end": 774974,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0303",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "sans être tous ingénieurs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0512",
-          "begin": 774974,
-          "end": 775573,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0304",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais tout de même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0304"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0513",
-          "begin": 774974,
-          "end": 775573,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0304",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0304"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0514",
-          "begin": 775573,
-          "end": 777103,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0305",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "étant instruit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0305"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0515",
-          "begin": 777103,
-          "end": 778768,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0305",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on est tout de suite plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0305"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0516",
-          "begin": 780275,
-          "end": 781496,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0305",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un petit peu mieux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0305"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0517",
-          "begin": 781496,
-          "end": 782504,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0306",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "comment dirais-je"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0306"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0518",
-          "begin": 781496,
-          "end": 782504,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0306",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0306"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0519",
-          "begin": 782504,
-          "end": 783142,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0307",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "éduqué"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0307"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0520",
-          "begin": 783142,
-          "end": 783320,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0308",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0308"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0521",
-          "begin": 783320,
-          "end": 783575,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0309",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "voilà"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0309"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0522",
-          "begin": 785124,
-          "end": 785201,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0310",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0310"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0523",
-          "begin": 785201,
-          "end": 786921,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0311",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors maintenant question métier ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0311"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0524",
-          "begin": 786921,
-          "end": 790015,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0311",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh il faut aussi de l'initiative personnelle"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0311"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0525",
-          "begin": 790576,
-          "end": 790947,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0312",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0312"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0526",
-          "begin": 791685,
-          "end": 796711,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0313",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "y a beaucoup d'enfants qui voudraient faire ceci cela et qui ne peuvent pas ils ont pas les moyens"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0313"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0527",
-          "begin": 796711,
-          "end": 799512,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0313",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh moraux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0313"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0528",
-          "begin": 796711,
-          "end": 799512,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0313",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et pratiques aussi hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0313"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0529",
-          "begin": 799512,
-          "end": 799999,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0314",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0314"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0530",
-          "begin": 800756,
-          "end": 801143,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0315",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0315"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0531",
-          "begin": 801143,
-          "end": 803870,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0316",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais enfin vous voyez le rôle de l'école comme"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0316"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0532",
-          "begin": 803870,
-          "end": 807950,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0317",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui oui oui le départ moi je trouve le départ là y a vraiment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0317"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0533",
-          "begin": 803870,
-          "end": 807950,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0317",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "assez éducatrice oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0317"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0534",
-          "begin": 807950,
-          "end": 809634,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0318",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et même euh au lycée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0318"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0535",
-          "begin": 809634,
-          "end": 814946,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0318",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh des jeunes qui manquent de respect aux professeurs et tout ça moi je trouve que là vraiment en ce moment y a"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0318"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0536",
-          "begin": 814946,
-          "end": 817226,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0318",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "bof il y a un laisser-aller qui est exagéré"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0318"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0537",
-          "begin": 818988,
-          "end": 820943,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0319",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et qu'est-ce que vous pensez du latin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0319"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0538",
-          "begin": 820943,
-          "end": 821546,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0319",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à l'école ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0319"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0539",
-          "begin": 821546,
-          "end": 822168,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ben"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0540",
-          "begin": 822168,
-          "end": 824181,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "nous ça y est nous avons"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0541",
-          "begin": 824181,
-          "end": 825943,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mon fils en a fait trois ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0542",
-          "begin": 825943,
-          "end": 827589,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et nous avons payé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0543",
-          "begin": 827589,
-          "end": 828385,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "cher"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0544",
-          "begin": 828385,
-          "end": 832426,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "l'histoire c'est son nouveau lycée qui est devenu lycée classique"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0545",
-          "begin": 832426,
-          "end": 833782,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un lycée technique"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0546",
-          "begin": 833782,
-          "end": 834226,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0321",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0321"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0547",
-          "begin": 834226,
-          "end": 835694,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0322",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qu'est devenu lycée classique"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0322"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0548",
-          "begin": 835694,
-          "end": 838012,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0322",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors comme il était très bon en français on l'a mis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0322"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0549",
-          "begin": 838012,
-          "end": 838650,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0322",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en latin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0322"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0550",
-          "begin": 838650,
-          "end": 840218,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0323",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pendant trois ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0323"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0551",
-          "begin": 838650,
-          "end": 840218,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0323",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "dès la sixième ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0323"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0552",
-          "begin": 840218,
-          "end": 840779,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0324",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui c'est ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0324"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0553",
-          "begin": 840779,
-          "end": 841073,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0325",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0325"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0554",
-          "begin": 841598,
-          "end": 841850,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0326",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "voilà"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0326"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0555",
-          "begin": 841850,
-          "end": 842569,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0326",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et alors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0326"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0556",
-          "begin": 842569,
-          "end": 849218,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0326",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "eh bien voilà euh ce qui s'est passé en quatrième eh bien il a pas pu continuer il n'était pas assez fort en latin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0326"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0557",
-          "begin": 849218,
-          "end": 849531,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0327",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0327"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0558",
-          "begin": 849531,
-          "end": 851157,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0328",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et alors il a perdu tout son temps en"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0328"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0559",
-          "begin": 851157,
-          "end": 852046,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0328",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour ses maths"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0328"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0560",
-          "begin": 853054,
-          "end": 856222,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0328",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et alors ça fait que maintenant le voilà en littéraire parce qu'il est pas assez fort en maths"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0328"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0561",
-          "begin": 857825,
-          "end": 857999,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0329",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0329"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0562",
-          "begin": 857999,
-          "end": 860530,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "par rapport à ce latin là alors euh il est en moderne"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0563",
-          "begin": 860530,
-          "end": 861442,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors moi je"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0564",
-          "begin": 861442,
-          "end": 862083,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0565",
-          "begin": 862083,
-          "end": 863300,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qu'on mette en latin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0566",
-          "begin": 863300,
-          "end": 866062,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "celui qui se destine vraiment à une situation"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0567",
-          "begin": 866526,
-          "end": 868651,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "indispen- que le latin est indispensable"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0568",
-          "begin": 868651,
-          "end": 869428,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais alors nous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0569",
-          "begin": 869428,
-          "end": 871518,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'avais envisagé dès le début"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0570",
-          "begin": 871518,
-          "end": 873005,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "soit la comptabilité"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0571",
-          "begin": 873005,
-          "end": 874029,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ou l'enseignement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0572",
-          "begin": 874029,
-          "end": 875671,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "l'instituteur ou quelque chose"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0573",
-          "begin": 875671,
-          "end": 877448,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors on m'a dit oh mais c'est obligé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0574",
-          "begin": 878124,
-          "end": 882355,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "du moment qu'il est bon en français vous êtes forcé vous pouvez pas lui retirer sa chance faut le mettre en latin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0575",
-          "begin": 883189,
-          "end": 884213,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en sixième"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0576",
-          "begin": 884213,
-          "end": 885527,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on a accepté"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0577",
-          "begin": 885527,
-          "end": 886361,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en cinquième"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0578",
-          "begin": 886922,
-          "end": 889244,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on nous a bourré le mou euh laissez-les"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0579",
-          "begin": 889244,
-          "end": 891566,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh pour son BEPC tout ça ça sera mieux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0580",
-          "begin": 891566,
-          "end": 892825,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et en quatrième aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0581",
-          "begin": 892825,
-          "end": 896785,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et on on a bien vu qu'après il a il est tombé hein hein il a été forcé d'abandonner"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0582",
-          "begin": 896785,
-          "end": 897017,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0331",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0331"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0583",
-          "begin": 897017,
-          "end": 897828,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0332",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça il pouvait plus suivre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0332"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0584",
-          "begin": 898717,
-          "end": 898798,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0333",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0333"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0585",
-          "begin": 898798,
-          "end": 899957,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0334",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il était pas doué pour le latin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0334"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0586",
-          "begin": 899957,
-          "end": 901000,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0334",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors ça moi je"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0334"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0587",
-          "begin": 902024,
-          "end": 902858,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0334",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "suis pas pour"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0334"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0588",
-          "begin": 902858,
-          "end": 904597,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0335",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous êtes pas pour le latin à l'école"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0335"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0589",
-          "begin": 904597,
-          "end": 904871,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0336",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0336"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0590",
-          "begin": 905412,
-          "end": 905489,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0337",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0337"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0591",
-          "begin": 905489,
-          "end": 906185,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0338",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je ne suis pas pour"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0338"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0592",
-          "begin": 906185,
-          "end": 906865,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0339",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0339"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0593",
-          "begin": 908743,
-          "end": 911316,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0340",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et dans quelle matière est-ce que vous aimeriez que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0340"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0594",
-          "begin": 912093,
-          "end": 913314,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0340",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vos enfants soient fort ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0340"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0595",
-          "begin": 913314,
-          "end": 915597,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0341",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ben ça évidemment c'est les maths"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0341"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0596",
-          "begin": 913314,
-          "end": 915597,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0341",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à l'école ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0341"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0597",
-          "begin": 915597,
-          "end": 916293,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0342",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "en maths ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0342"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0598",
-          "begin": 916293,
-          "end": 918229,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0343",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ben évidemment ça euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0343"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0599",
-          "begin": 918229,
-          "end": 920744,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0343",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il y a beaucoup de portes de sortie avec les maths"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0343"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0600",
-          "begin": 920744,
-          "end": 921192,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0343",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0343"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0601",
-          "begin": 921192,
-          "end": 921714,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0344",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0344"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0602",
-          "begin": 922471,
-          "end": 923650,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0344",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous trouvez que c'est plus important ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0344"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0603",
-          "begin": 923650,
-          "end": 924079,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0345",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0345"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0604",
-          "begin": 924079,
-          "end": 924527,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0346",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0346"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0605",
-          "begin": 924527,
-          "end": 925590,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0347",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui certainement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0606",
-          "begin": 925590,
-          "end": 926347,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0347",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "certainement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0607",
-          "begin": 926347,
-          "end": 927216,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0347",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à tous point de vue"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0608",
-          "begin": 927950,
-          "end": 931447,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0347",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en en industrie en comptabilité"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0609",
-          "begin": 931447,
-          "end": 933305,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0347",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il y a beaucoup de sorties"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0610",
-          "begin": 933750,
-          "end": 934430,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0347",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en maths"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0611",
-          "begin": 934430,
-          "end": 934897,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0348",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0348"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0612",
-          "begin": 935786,
-          "end": 938316,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0349",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et d'après vous comment ça se fait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0349"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0613",
-          "begin": 938316,
-          "end": 941021,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0349",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "que certains enfants réussissent à l'école"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0349"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0614",
-          "begin": 941021,
-          "end": 942927,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0349",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et pas d'autres qu'est-ce qui fait que ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0349"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0615",
-          "begin": 942927,
-          "end": 945944,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0350",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ça moi je crois que c'est en naissant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0350"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0616",
-          "begin": 942927,
-          "end": 945944,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0350",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "certains réussissent ou ne réussissent pas ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0350"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0617",
-          "begin": 945944,
-          "end": 948147,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je crois qu'il y a une chose de naissance"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0618",
-          "begin": 948900,
-          "end": 950159,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de héréditaire aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0619",
-          "begin": 950662,
-          "end": 951960,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il y a des fils qui sont"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0620",
-          "begin": 951960,
-          "end": 953930,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de familles et vraiment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0621",
-          "begin": 953930,
-          "end": 955862,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je crois qu'il doit y avoir quelque chose comme ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0622",
-          "begin": 958532,
-          "end": 958980,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je crois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0623",
-          "begin": 959502,
-          "end": 961476,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce qu'y a beaucoup d'enfants qui se donnent du mal"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0624",
-          "begin": 961476,
-          "end": 963524,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et qui ne peuvent pas y arriver"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0625",
-          "begin": 963524,
-          "end": 964513,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0626",
-          "begin": 964513,
-          "end": 964923,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0352",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0352"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0627",
-          "begin": 964923,
-          "end": 966163,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0353",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "maintenant évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0353"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0628",
-          "begin": 966163,
-          "end": 967747,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0353",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il y en a qui veulent rien faire ça c'est sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0353"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0629",
-          "begin": 967747,
-          "end": 967998,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0354",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0354"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0630",
-          "begin": 968848,
-          "end": 970374,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0355",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais je je crois qu'en naissant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0355"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0631",
-          "begin": 970818,
-          "end": 975222,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0355",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il y en a vraiment ils ont le l'instruction avec eux jusqu'au bout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0355"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0632",
-          "begin": 976420,
-          "end": 978120,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0355",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "les doués les vraiment ce qu'on appelle les doués"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0355"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0633",
-          "begin": 979650,
-          "end": 979955,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0356",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0356"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0634",
-          "begin": 980616,
-          "end": 982764,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0356",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "alors vous pensez que ça vient surtout des"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0356"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0635",
-          "begin": 982764,
-          "end": 984352,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0357",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ben de naissance oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0357"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0636",
-          "begin": 982764,
-          "end": 984352,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0357",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "des enfants"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0357"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0637",
-          "begin": 984352,
-          "end": 984472,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0358",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0358"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0638",
-          "begin": 984472,
-          "end": 985249,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0359",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un peu de naissance"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0359"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0639",
-          "begin": 986064,
-          "end": 986450,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0360",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0360"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0640",
-          "begin": 986450,
-          "end": 988150,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0361",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh je peut-être me tromper mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0361"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0641",
-          "begin": 989367,
-          "end": 990275,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0361",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais je crois pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0361"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0642",
-          "begin": 990275,
-          "end": 990874,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0362",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0362"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0643",
-          "begin": 991844,
-          "end": 993992,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0363",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et jusqu'à ce qu- quel âge euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0363"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0644",
-          "begin": 993992,
-          "end": 997241,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0363",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous pensez qu'il est bon que les enfants continuent leurs études ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0363"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0645",
-          "begin": 997241,
-          "end": 998551,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0364",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0364"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0646",
-          "begin": 997241,
-          "end": 998551,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0364",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que vous donneriez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0364"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0647",
-          "begin": 998551,
-          "end": 999926,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "vous euh c'est pénible"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0648",
-          "begin": 1000467,
-          "end": 1001414,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à dix-neuf ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0649",
-          "begin": 1002017,
-          "end": 1002851,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de voir"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0650",
-          "begin": 1002851,
-          "end": 1005169,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un jeune homme prêt à partir au régiment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0651",
-          "begin": 1005169,
-          "end": 1008473,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qui n'a ni bagage intellectuel"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0652",
-          "begin": 1008473,
-          "end": 1009211,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ni métier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0653",
-          "begin": 1009736,
-          "end": 1011552,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors si à vers"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0654",
-          "begin": 1011552,
-          "end": 1012329,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "quatorze ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0655",
-          "begin": 1013511,
-          "end": 1014400,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un enfant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0656",
-          "begin": 1014400,
-          "end": 1015486,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "n'est pas capable"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0657",
-          "begin": 1015486,
-          "end": 1017093,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de continuer ses études"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0658",
-          "begin": 1017093,
-          "end": 1019894,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "eh bien alors qu'il apprenne en vitesse un métier en trois ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0659",
-          "begin": 1019894,
-          "end": 1021444,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qu'il ait un CAP de maçon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0660",
-          "begin": 1021444,
-          "end": 1021598,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0366",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0366"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0661",
-          "begin": 1022548,
-          "end": 1023205,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0367",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "n'est-ce pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0662",
-          "begin": 1023205,
-          "end": 1025137,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0367",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais alors tout de même c'est tout de même pénible"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0663",
-          "begin": 1025137,
-          "end": 1029989,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0367",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de vouloir pousser un enfant aux études jusqu'à dix-huit dix-neuf ans vingt ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0664",
-          "begin": 1029989,
-          "end": 1030839,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0367",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il a rien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0665",
-          "begin": 1030839,
-          "end": 1031496,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0367",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pas de bac"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0666",
-          "begin": 1032157,
-          "end": 1033899,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0367",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh n'est-ce pas il y a rien aucun papier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0667",
-          "begin": 1033899,
-          "end": 1034556,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0368",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "aucun bagage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0368"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0668",
-          "begin": 1033899,
-          "end": 1034556,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0368",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0368"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0669",
-          "begin": 1034556,
-          "end": 1037106,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0369",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ni certificat d'étude ni BEPC ni cer-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0369"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0670",
-          "begin": 1037106,
-          "end": 1037535,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0370",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0370"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0671",
-          "begin": 1037535,
-          "end": 1037945,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0371",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ni bac"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0371"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0672",
-          "begin": 1037945,
-          "end": 1038973,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0371",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et alors pas de métier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0371"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0673",
-          "begin": 1039556,
-          "end": 1039634,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0372",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0372"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0674",
-          "begin": 1039634,
-          "end": 1041260,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0373",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors qu'est-ce que je vais faire dans la vie avec ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0373"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0675",
-          "begin": 1041260,
-          "end": 1041647,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0374",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0374"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0676",
-          "begin": 1041647,
-          "end": 1044548,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0375",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors moi dès l'âge de quatorze ans ou seize ans au maximum"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0375"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0677",
-          "begin": 1044548,
-          "end": 1045012,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0376",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0376"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0678",
-          "begin": 1045012,
-          "end": 1047778,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0377",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à les retirer de l'instruction et mettez-les en métier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0377"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0679",
-          "begin": 1047778,
-          "end": 1048029,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0378",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0378"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0680",
-          "begin": 1048029,
-          "end": 1048512,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0379",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "technique"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0379"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0681",
-          "begin": 1048937,
-          "end": 1049169,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0380",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0380"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0682",
-          "begin": 1049946,
-          "end": 1051708,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0380",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est la même chose pour les garçons"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0380"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0683",
-          "begin": 1051708,
-          "end": 1054474,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0381",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et pour les filles ou est-ce que vous faites une différence ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0381"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0684",
-          "begin": 1051708,
-          "end": 1054474,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0381",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh évidemment évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0381"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0685",
-          "begin": 1054474,
-          "end": 1056753,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0382",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh si si si certainement moi je connais une famille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0382"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0686",
-          "begin": 1054474,
-          "end": 1056753,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0382",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est la même chose"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0382"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0687",
-          "begin": 1056753,
-          "end": 1057603,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0688",
-          "begin": 1057603,
-          "end": 1058357,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0689",
-          "begin": 1058357,
-          "end": 1059018,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "élevée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0690",
-          "begin": 1059018,
-          "end": 1062112,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "eh bien euh y a une seule fille mademoiselle Iation"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0691",
-          "begin": 1062112,
-          "end": 1063445,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "y a rien à faire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0692",
-          "begin": 1064179,
-          "end": 1069395,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh elle a vingt ans ils ont été forcé de la remettre en technique euh pour la couture et la cuisine"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0693",
-          "begin": 1070790,
-          "end": 1071993,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "y a rien à faire dans l'instruction"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0694",
-          "begin": 1072474,
-          "end": 1072822,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0384",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0384"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0695",
-          "begin": 1072822,
-          "end": 1073811,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0385",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non non rien à faire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0385"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0696",
-          "begin": 1073811,
-          "end": 1074336,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0386",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0386"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0697",
-          "begin": 1074336,
-          "end": 1074800,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0387",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0387"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0698",
-          "begin": 1075828,
-          "end": 1081607,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0387",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "vous voyez mais les parents eux-mêmes ont été forcés de revenir de leur erreur ils auraient voulu que leur fille elle ait un bagage mais y a rien à faire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0387"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0699",
-          "begin": 1084041,
-          "end": 1084312,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0388",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0388"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0700",
-          "begin": 1084973,
-          "end": 1085750,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0389",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0389"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0701",
-          "begin": 1086874,
-          "end": 1088168,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0389",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous faites"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0389"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0702",
-          "begin": 1088168,
-          "end": 1091761,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0389",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous voyez une différence entre les les lycées"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0389"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0703",
-          "begin": 1091761,
-          "end": 1095663,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0389",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "les CEG techniques et les CES ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0389"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0704",
-          "begin": 1095663,
-          "end": 1100259,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0390",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui mais euh comme euh son proviseur nous disait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0390"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0705",
-          "begin": 1100259,
-          "end": 1106036,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0390",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh lui il est pas content du tout le proviseur du lycée de mon fils là Benjamin Franklin d'Orléans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0390"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0706",
-          "begin": 1106036,
-          "end": 1106349,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0391",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0391"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0707",
-          "begin": 1107377,
-          "end": 1108984,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0392",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il il préférait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0392"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0708",
-          "begin": 1108984,
-          "end": 1110356,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0392",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "avoir ses petits"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0392"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0709",
-          "begin": 1111345,
-          "end": 1112431,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0392",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et il regrette"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0392"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0710",
-          "begin": 1112431,
-          "end": 1115897,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0392",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh la fondation des CEG ECG euh CES"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0392"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0711",
-          "begin": 1116461,
-          "end": 1116596,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0393",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0393"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0712",
-          "begin": 1116596,
-          "end": 1117968,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0394",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce qu'il préférait hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0394"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0713",
-          "begin": 1117968,
-          "end": 1118957,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0394",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "former"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0394"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0714",
-          "begin": 1118957,
-          "end": 1120680,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0394",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ses petits sixièmes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0394"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0715",
-          "begin": 1120680,
-          "end": 1120835,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0395",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0395"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0716",
-          "begin": 1120835,
-          "end": 1122442,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "cinquièmes quatrièmes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0717",
-          "begin": 1122442,
-          "end": 1124915,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et puis et les arriver"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0718",
-          "begin": 1124915,
-          "end": 1126445,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à en sortir soit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0719",
-          "begin": 1126445,
-          "end": 1128921,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un matheux quoi soit en maths"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0720",
-          "begin": 1128921,
-          "end": 1130428,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "soit en français"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0721",
-          "begin": 1130428,
-          "end": 1132611,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais forgé de ses mains tandis que là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0722",
-          "begin": 1132611,
-          "end": 1135551,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on lui envoie des CEG ou des CES"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0723",
-          "begin": 1136270,
-          "end": 1136699,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0724",
-          "begin": 1137746,
-          "end": 1138890,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un gars de troisième"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0725",
-          "begin": 1139415,
-          "end": 1140111,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ou que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0726",
-          "begin": 1140111,
-          "end": 1141622,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il l'ignore il le connaît pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0727",
-          "begin": 1141622,
-          "end": 1143345,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0397",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh il y a un papier qui suit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0397"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0728",
-          "begin": 1141622,
-          "end": 1143345,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0397",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0397"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0729",
-          "begin": 1143345,
-          "end": 1146436,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0398",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais c'est tout alors euh ça arrive à dix-huit ans encore un coup"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0398"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0730",
-          "begin": 1146436,
-          "end": 1149743,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0399",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et puis ça y est et encore k- il se casse le nez il y a rien à faire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0399"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0731",
-          "begin": 1146436,
-          "end": 1149743,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0399",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0399"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0732",
-          "begin": 1149743,
-          "end": 1155310,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0400",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous faites une différence entre les élèves des CEG des CES des lycées ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0400"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0733",
-          "begin": 1156956,
-          "end": 1158930,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça euh maintenant plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0734",
-          "begin": 1158930,
-          "end": 1160224,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0735",
-          "begin": 1160224,
-          "end": 1163661,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "des fils même de famille assez aisée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0736",
-          "begin": 1163661,
-          "end": 1166038,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qui se trouvent euh à dix kilomètres d'Orléans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0737",
-          "begin": 1166038,
-          "end": 1167970,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ils ont un CES à côté de chez eux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0738",
-          "begin": 1168743,
-          "end": 1169346,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0739",
-          "begin": 1169346,
-          "end": 1173580,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "au lieu de de courir au lycée de la ville avec une voiture"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0740",
-          "begin": 1173580,
-          "end": 1177926,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors jusque à au moins l'âge de seize ans c'est ce qui se produit à Saint-Jean-de-la-Ruelle autour de la ville"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0741",
-          "begin": 1177926,
-          "end": 1178950,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0402",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "quoi à Olivet ou autre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0402"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0742",
-          "begin": 1177926,
-          "end": 1178950,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0402",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0402"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0743",
-          "begin": 1179974,
-          "end": 1181948,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0403",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça non euh je trouve ça bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0403"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0744",
-          "begin": 1181948,
-          "end": 1183188,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0404",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je trouve ça bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0404"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0745",
-          "begin": 1181948,
-          "end": 1183188,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0404",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0404"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0746",
-          "begin": 1183188,
-          "end": 1185274,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0405",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais malgré tout l'avis du proviseur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0405"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0747",
-          "begin": 1185274,
-          "end": 1188406,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0405",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh de du lycée moi je trouve qu'elle était bonne aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0405"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0748",
-          "begin": 1188406,
-          "end": 1190760,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0405",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et euh lui préférait avoir ses enfants dès le début"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0405"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0749",
-          "begin": 1190760,
-          "end": 1191011,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0406",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0406"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0750",
-          "begin": 1191011,
-          "end": 1192402,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0407",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on lui a retiré"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0407"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0751",
-          "begin": 1192402,
-          "end": 1195126,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0407",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour &débouteiller un peu les lycées qui sont trop encombrés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0407"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0752",
-          "begin": 1195126,
-          "end": 1195574,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0408",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0408"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0753",
-          "begin": 1195574,
-          "end": 1197332,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0409",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors maintenant dans les lycées y a plus que des grands"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0409"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0754",
-          "begin": 1198282,
-          "end": 1199924,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0409",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça part que du bre- BEPC"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0409"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0755",
-          "begin": 1201006,
-          "end": 1202613,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0410",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que l'enseignement a"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0410"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0756",
-          "begin": 1202613,
-          "end": 1205244,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0410",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "a beaucoup changé à votre avis depuis que vous avez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0410"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0757",
-          "begin": 1205244,
-          "end": 1206021,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0410",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quitté"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0410"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0758",
-          "begin": 1206021,
-          "end": 1206527,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0410",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "l'école ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0410"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0759",
-          "begin": 1206527,
-          "end": 1207725,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui puisque"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0760",
-          "begin": 1207725,
-          "end": 1210201,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh des instituteurs retraités"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0761",
-          "begin": 1210201,
-          "end": 1211689,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "chez qui nous travaillons"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0762",
-          "begin": 1211689,
-          "end": 1214080,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ne peuvent même plus corriger"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0763",
-          "begin": 1214080,
-          "end": 1216111,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "des devoirs de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0764",
-          "begin": 1216111,
-          "end": 1218939,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de première maintenant de classes de première"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0765",
-          "begin": 1218939,
-          "end": 1223738,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui euh il y a eu un palier énorme euh je crois que l'instruction de maintenant euh l'enseignement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0766",
-          "begin": 1224611,
-          "end": 1226910,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "a beaucoup monté monté monté"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0767",
-          "begin": 1226910,
-          "end": 1227667,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0412",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr004"
-              },
-              "content": "progressé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0412"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0768",
-          "begin": 1226910,
-          "end": 1227667,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0412",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "énormément"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0412"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0769",
-          "begin": 1227667,
-          "end": 1228092,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0413",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0413"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0770",
-          "begin": 1228092,
-          "end": 1228961,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0414",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "progressé hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0414"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0771",
-          "begin": 1228092,
-          "end": 1228961,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0414",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0414"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0772",
-          "begin": 1231955,
-          "end": 1232303,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0415",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0415"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0773",
-          "begin": 1232303,
-          "end": 1233906,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0416",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0416"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0774",
-          "begin": 1233906,
-          "end": 1235123,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0416",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à votre avis est-ce"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0416"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0775",
-          "begin": 1235123,
-          "end": 1238021,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0416",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "comment est ce que les gens font le le choix"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0416"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0776",
-          "begin": 1238021,
-          "end": 1241021,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0416",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "entre l'école euh privée et l'école publique ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0416"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0777",
-          "begin": 1243414,
-          "end": 1244824,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0417",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça hm l'école libre ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0417"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0778",
-          "begin": 1244824,
-          "end": 1246427,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0418",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui l'école libre l'école publique"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0418"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0779",
-          "begin": 1246427,
-          "end": 1248011,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0419",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui oh ben ça c'est les familles"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0419"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0780",
-          "begin": 1248765,
-          "end": 1249368,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0420",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0420"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0781",
-          "begin": 1250338,
-          "end": 1251752,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0421",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi mon petit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0421"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0782",
-          "begin": 1251752,
-          "end": 1252953,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0421",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il y a été deux ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0421"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0783",
-          "begin": 1253436,
-          "end": 1257300,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0421",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "avant le ses six ans il est rentré à l'école euh laïque"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0421"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0784",
-          "begin": 1257300,
-          "end": 1258019,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0422",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0422"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0785",
-          "begin": 1259530,
-          "end": 1260191,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0423",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0423"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0786",
-          "begin": 1260191,
-          "end": 1262822,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0423",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh la petite école libre était à côté de chez nous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0423"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0787",
-          "begin": 1262822,
-          "end": 1263966,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0423",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "juste à"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0423"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0788",
-          "begin": 1263966,
-          "end": 1265245,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0423",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "une porte à côté de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0423"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0789",
-          "begin": 1265245,
-          "end": 1265712,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0424",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0424"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0790",
-          "begin": 1266369,
-          "end": 1267238,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0425",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "puis c'était une"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0425"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0791",
-          "begin": 1267238,
-          "end": 1269267,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0425",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à cet âge-là ce petit bonhomme"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0425"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0792",
-          "begin": 1269267,
-          "end": 1271473,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0425",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm c'était bien c'était comme une garderie d'enfants"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0425"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0793",
-          "begin": 1271473,
-          "end": 1271960,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0426",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0426"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0794",
-          "begin": 1271960,
-          "end": 1272794,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0427",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à l'école libre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0427"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0795",
-          "begin": 1272794,
-          "end": 1273200,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0427",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "maintenant moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0427"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0796",
-          "begin": 1273200,
-          "end": 1273471,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0428",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0428"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0797",
-          "begin": 1274093,
-          "end": 1275005,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0429",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je ne suis pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0429"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0798",
-          "begin": 1275005,
-          "end": 1277211,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0429",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "très très très partisan de l'école libre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0429"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0799",
-          "begin": 1277211,
-          "end": 1278509,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0430",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "maintenant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0430"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0800",
-          "begin": 1277211,
-          "end": 1278509,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0430",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous n'êtes pas très partisan"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0430"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0801",
-          "begin": 1278509,
-          "end": 1280402,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0431",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh oh c'est pas question religion"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0431"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0802",
-          "begin": 1280402,
-          "end": 1281522,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0432",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais je trouve que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0432"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0803",
-          "begin": 1280402,
-          "end": 1281522,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0432",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0432"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0804",
-          "begin": 1281522,
-          "end": 1284787,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0433",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh l'enseignement l'autre côté est plus fort"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0433"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0805",
-          "begin": 1284787,
-          "end": 1285023,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0434",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0434"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0806",
-          "begin": 1285023,
-          "end": 1286109,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0435",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais je sais pas oui oh je fais peut-être"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0435"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0807",
-          "begin": 1286109,
-          "end": 1286538,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0436",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "une bêtise"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0436"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0808",
-          "begin": 1286109,
-          "end": 1286538,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0436",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0436"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0809",
-          "begin": 1286538,
-          "end": 1287855,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0437",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je veux pas m'avancer de trop"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0437"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0810",
-          "begin": 1287855,
-          "end": 1288300,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0438",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0438"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0811",
-          "begin": 1288300,
-          "end": 1288574,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0439",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0439"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0812",
-          "begin": 1288574,
-          "end": 1292013,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0439",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je ne suis pas contre l'enseignement libre parce qu'on en a beaucoup besoin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0439"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0813",
-          "begin": 1292013,
-          "end": 1293748,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0439",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à Orléans y a des lycées"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0439"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0814",
-          "begin": 1293748,
-          "end": 1294486,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0440",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0440"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0815",
-          "begin": 1294486,
-          "end": 1295147,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0441",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "libres"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0441"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0816",
-          "begin": 1295147,
-          "end": 1297237,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0441",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh ent- euh l'école Sainte-Croix"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0441"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0817",
-          "begin": 1297237,
-          "end": 1298763,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0441",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors c'est des"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0441"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0818",
-          "begin": 1298763,
-          "end": 1299265,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0441",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "tous les"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0441"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0819",
-          "begin": 1299265,
-          "end": 1300463,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0442",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "élèves sortent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0442"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0820",
-          "begin": 1299265,
-          "end": 1300463,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0442",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0442"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0821",
-          "begin": 1300463,
-          "end": 1300873,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0443",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0443"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0822",
-          "begin": 1300873,
-          "end": 1302828,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0444",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "nous avons un cousin qui est sorti prêtre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0444"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0823",
-          "begin": 1302828,
-          "end": 1303527,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0444",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0444"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0824",
-          "begin": 1304725,
-          "end": 1307510,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0444",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "vraiment c'était ri- tous les premiers prix il les a eus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0444"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0825",
-          "begin": 1307510,
-          "end": 1309751,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0444",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ben euh c'était qu'un fils de campagnard"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0444"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0826",
-          "begin": 1309751,
-          "end": 1310099,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0445",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0445"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0827",
-          "begin": 1310099,
-          "end": 1310760,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0446",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0446"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0828",
-          "begin": 1310760,
-          "end": 1311227,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0447",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0447"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0829",
-          "begin": 1311227,
-          "end": 1311652,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0448",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0448"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0830",
-          "begin": 1311652,
-          "end": 1312444,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0448",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "si"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0448"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0831",
-          "begin": 1312444,
-          "end": 1314067,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0448",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh c'est bien aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0448"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0832",
-          "begin": 1314067,
-          "end": 1315964,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0448",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais malgré tout moi j'en suis pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0448"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0833",
-          "begin": 1315964,
-          "end": 1318672,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0448",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'aurais pas aimé mettre le mien à l'école libre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0448"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0834",
-          "begin": 1320256,
-          "end": 1325085,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0449",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et est-ce que vous êtes favorable à vous savez maintenant on fait participer les élèves"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0449"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0835",
-          "begin": 1325085,
-          "end": 1326898,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0449",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "aux conseils d'administration ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0449"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0836",
-          "begin": 1326898,
-          "end": 1328544,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0450",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui je poliment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0450"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0837",
-          "begin": 1326898,
-          "end": 1328544,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0450",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "dans les lycées"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0450"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0838",
-          "begin": 1328544,
-          "end": 1330228,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0450",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça je vous l'accorde"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0450"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0839",
-          "begin": 1328544,
-          "end": 1330228,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0450",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que vous en pensez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0450"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0840",
-          "begin": 1330228,
-          "end": 1331291,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0451",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0841",
-          "begin": 1331291,
-          "end": 1334617,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0451",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "poliment mais alors là euh avec les évènements y a eu des"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0842",
-          "begin": 1334617,
-          "end": 1335351,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0451",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "choses euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0843",
-          "begin": 1335351,
-          "end": 1336898,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0451",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un petit peu exagérées"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0844",
-          "begin": 1336898,
-          "end": 1337553,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0451",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "sans ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0845",
-          "begin": 1337553,
-          "end": 1340223,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0451",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh si sans perturber la classe"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0846",
-          "begin": 1340223,
-          "end": 1342274,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0452",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qu'il y ait des conseils en dehors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0452"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0847",
-          "begin": 1340223,
-          "end": 1342274,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0452",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0452"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0848",
-          "begin": 1342274,
-          "end": 1343008,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0453",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0849",
-          "begin": 1343781,
-          "end": 1344786,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0453",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est très bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0850",
-          "begin": 1344786,
-          "end": 1345582,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0453",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hein euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0851",
-          "begin": 1345582,
-          "end": 1347305,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0453",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est déjà euh c'est commencé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0852",
-          "begin": 1347305,
-          "end": 1347653,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0453",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0853",
-          "begin": 1348642,
-          "end": 1349747,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0453",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "si moi je trouve ça bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0854",
-          "begin": 1349747,
-          "end": 1350176,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0454",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0454"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0855",
-          "begin": 1350176,
-          "end": 1351049,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0454",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous trouvez que c'est bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0454"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0856",
-          "begin": 1351049,
-          "end": 1353464,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0455",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "que les élèves puissent participer ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0455"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0857",
-          "begin": 1351049,
-          "end": 1353464,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0455",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui du parler c'est ça oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0455"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0858",
-          "begin": 1354279,
-          "end": 1355921,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0456",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "enfin en général"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0456"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0859",
-          "begin": 1356616,
-          "end": 1357524,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0456",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que v-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0456"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0860",
-          "begin": 1357524,
-          "end": 1359186,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0456",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous trouvez qu'on qu'il faut"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0456"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0861",
-          "begin": 1359186,
-          "end": 1361913,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0456",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'on pourrait changer dans l'enseignement actuel ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0456"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0862",
-          "begin": 1361913,
-          "end": 1363111,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0456",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce qui va pas ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0456"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0863",
-          "begin": 1363710,
-          "end": 1364371,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0457",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0457"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0864",
-          "begin": 1364371,
-          "end": 1364742,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0458",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "surtout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0458"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0865",
-          "begin": 1364742,
-          "end": 1368976,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "vous savez moi je n'ai pas été assez euh haut dans les études évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0866",
-          "begin": 1369729,
-          "end": 1370464,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0867",
-          "begin": 1371897,
-          "end": 1374099,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on se le demande un peu euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0868",
-          "begin": 1374099,
-          "end": 1376417,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "dans les hauts étudiants"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0869",
-          "begin": 1376417,
-          "end": 1377789,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on se demande un peu"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0870",
-          "begin": 1378450,
-          "end": 1379536,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh ce qu'ils veulent au juste"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0871",
-          "begin": 1380409,
-          "end": 1380795,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "n'est-ce pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0872",
-          "begin": 1381433,
-          "end": 1382828,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment c'est les débouchés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0873",
-          "begin": 1384107,
-          "end": 1385598,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "comme euh à Nanterre hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0874",
-          "begin": 1385598,
-          "end": 1386699,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0460",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est des débouchés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0460"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0875",
-          "begin": 1385598,
-          "end": 1386699,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0460",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0460"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0876",
-          "begin": 1386699,
-          "end": 1388805,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0461",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "par la suite qui doit les effrayer un peu"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0461"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0877",
-          "begin": 1388805,
-          "end": 1389215,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0462",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0462"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0878",
-          "begin": 1391711,
-          "end": 1392178,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0463",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0463"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0879",
-          "begin": 1394535,
-          "end": 1395949,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0463",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça veut dire que ce qui ne va pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0463"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0880",
-          "begin": 1398754,
-          "end": 1400207,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0463",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "faut bien que le même en haut lieu"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0463"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0881",
-          "begin": 1401447,
-          "end": 1402104,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0463",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il nage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0463"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0882",
-          "begin": 1402104,
-          "end": 1402668,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0464",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0464"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0883",
-          "begin": 1404194,
-          "end": 1407806,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0464",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "bon pour revenir à à Orléans dont on parlait au début"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0464"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0884",
-          "begin": 1407806,
-          "end": 1410820,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0464",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous trouvez qu'on fait assez pour les habitants"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0464"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0885",
-          "begin": 1410820,
-          "end": 1411442,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0464",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à Orléans ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0464"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0886",
-          "begin": 1412373,
-          "end": 1416603,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ben je crois que la ville c'est a a été un moment ville pilote"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0887",
-          "begin": 1417782,
-          "end": 1421862,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh Orléans partout la construction a été poussée au maximum"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0888",
-          "begin": 1421862,
-          "end": 1425169,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh à chaque fois qu'on se déplace dans une rue quelconque euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0889",
-          "begin": 1426023,
-          "end": 1429233,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ce n'est que des maisons des villas des blocs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0890",
-          "begin": 1429774,
-          "end": 1430837,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi je trouve euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0891",
-          "begin": 1430837,
-          "end": 1431807,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qu'Orléans a"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0892",
-          "begin": 1431807,
-          "end": 1434206,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "beaucoup beaucoup changé et beaucoup fait pour ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0893",
-          "begin": 1435365,
-          "end": 1436949,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "certainement qu'on n'est pas une ville en retard"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0894",
-          "begin": 1436949,
-          "end": 1437451,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0466",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0466"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0895",
-          "begin": 1437451,
-          "end": 1439827,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0467",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "avec même Orléans deux là ça va être formidable"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0467"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0896",
-          "begin": 1439827,
-          "end": 1440349,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0468",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0468"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0897",
-          "begin": 1439827,
-          "end": 1440349,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0468",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0468"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0898",
-          "begin": 1440349,
-          "end": 1443888,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0469",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui le le maire euh tout ça les conseil général"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0469"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0899",
-          "begin": 1443888,
-          "end": 1445592,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0469",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "a fait beaucoup beaucoup beaucoup"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0469"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0900",
-          "begin": 1445592,
-          "end": 1446658,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0470",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "beaucoup pour Orléans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0470"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0901",
-          "begin": 1445592,
-          "end": 1446658,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0470",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0470"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0902",
-          "begin": 1447489,
-          "end": 1447976,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0471",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0471"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0903",
-          "begin": 1447976,
-          "end": 1450897,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0472",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quelles sont les personnes importantes qui comptent en"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0472"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0904",
-          "begin": 1450897,
-          "end": 1452369,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0472",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à Orléans d'après vous ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0472"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0905",
-          "begin": 1452369,
-          "end": 1454787,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0473",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ben le conseil général d'abord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0473"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0906",
-          "begin": 1454787,
-          "end": 1455290,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0474",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0474"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0907",
-          "begin": 1455290,
-          "end": 1455661,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0475",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0475"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0908",
-          "begin": 1456244,
-          "end": 1457152,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0475",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0475"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0909",
-          "begin": 1457152,
-          "end": 1458446,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0475",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour le financement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0475"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0910",
-          "begin": 1458446,
-          "end": 1459741,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0476",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "des grands travaux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0476"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0911",
-          "begin": 1458446,
-          "end": 1459741,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0476",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0476"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0912",
-          "begin": 1459741,
-          "end": 1463454,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0477",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et puis alors euh la mairie évidemment le maire est très très actif"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0477"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0913",
-          "begin": 1464269,
-          "end": 1465757,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0478",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "les députés euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0478"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0914",
-          "begin": 1464269,
-          "end": 1465757,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0478",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0478"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0915",
-          "begin": 1465757,
-          "end": 1467982,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0479",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment ils sont forcés ça c'est obligé parce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0479"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0916",
-          "begin": 1468523,
-          "end": 1469489,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0479",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour avoir quelque chose"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0479"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0917",
-          "begin": 1469489,
-          "end": 1471347,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0479",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "même une classe de lycée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0479"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0918",
-          "begin": 1471347,
-          "end": 1472629,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0479",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est grâce à un député"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0479"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0919",
-          "begin": 1474206,
-          "end": 1477223,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0480",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qu'ils ont pu l'avoir une classe supplémentaire pour l'électronique"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0480"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0920",
-          "begin": 1474206,
-          "end": 1477223,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0480",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0480"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0921",
-          "begin": 1478962,
-          "end": 1479603,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0481",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui y"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0481"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0922",
-          "begin": 1480994,
-          "end": 1482964,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0481",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment maintenant euh y a des groupements"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0481"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0923",
-          "begin": 1482964,
-          "end": 1485981,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0481",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "des groupements de d'habitation et tout ça quoi euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0481"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0924",
-          "begin": 1486947,
-          "end": 1489787,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0481",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est obligé mais en tout cas le principal c'est le conseil général"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0481"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0925",
-          "begin": 1490641,
-          "end": 1491475,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0481",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et le maire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0481"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0926",
-          "begin": 1491475,
-          "end": 1492094,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0482",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0482"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0927",
-          "begin": 1491475,
-          "end": 1492094,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0482",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0482"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0928",
-          "begin": 1493701,
-          "end": 1494300,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0483",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0483"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0929",
-          "begin": 1494300,
-          "end": 1496023,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0483",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "on a beaucoup parlé de mai"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0483"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0930",
-          "begin": 1496699,
-          "end": 1497742,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0483",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de mai dernier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0483"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0931",
-          "begin": 1497742,
-          "end": 1497993,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0484",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0484"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0932",
-          "begin": 1497993,
-          "end": 1500562,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0485",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et est-ce que vous pouvez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0485"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0933",
-          "begin": 1500562,
-          "end": 1504020,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0485",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "expliquer décrire pour euh les étudiants anglais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0485"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0934",
-          "begin": 1504020,
-          "end": 1506067,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0485",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à qui ces bandes sont destinées"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0485"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0935",
-          "begin": 1506067,
-          "end": 1507130,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0485",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ce qui s'est passé ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0485"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0936",
-          "begin": 1510109,
-          "end": 1512489,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0486",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça vous savez c'était bien trop compliqué pour moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0486"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0937",
-          "begin": 1513787,
-          "end": 1515568,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0487",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "enfin simplement décrire euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0487"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0938",
-          "begin": 1513787,
-          "end": 1515568,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0487",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0487"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0939",
-          "begin": 1515568,
-          "end": 1515958,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0488",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0488"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0940",
-          "begin": 1515958,
-          "end": 1517639,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0489",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "expliquer enfin ce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0489"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0941",
-          "begin": 1517639,
-          "end": 1522144,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0490",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est un peu un peu un peu fort je sais pas au juste moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0490"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0942",
-          "begin": 1517639,
-          "end": 1522144,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0490",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ce que vous en"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0490"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0943",
-          "begin": 1523519,
-          "end": 1524852,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh l'ampleur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0944",
-          "begin": 1526301,
-          "end": 1529280,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh de de tout ceux qui ont s- suivi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0945",
-          "begin": 1529280,
-          "end": 1531138,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh ce Cohn-Bendit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0946",
-          "begin": 1533958,
-          "end": 1534445,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0947",
-          "begin": 1534445,
-          "end": 1536863,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je les approuvais pas évidemment bien sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0948",
-          "begin": 1536863,
-          "end": 1541132,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais alors me dire euh quel est le motif si grave qui a poussé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0949",
-          "begin": 1541847,
-          "end": 1542620,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "cette chose-là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0950",
-          "begin": 1544613,
-          "end": 1548979,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment il y a longtemps dans les confér- dans les conseils de parents d'élèves"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0951",
-          "begin": 1548979,
-          "end": 1550335,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0952",
-          "begin": 1550335,
-          "end": 1553155,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "les professeurs de lycée de mon fils"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0953",
-          "begin": 1553155,
-          "end": 1554353,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "se plaignaient"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0954",
-          "begin": 1554353,
-          "end": 1556257,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ils avaient remis des lettres au ministre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0955",
-          "begin": 1556257,
-          "end": 1559718,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0492",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hein euh qui était venu ici Christian Fouchet qui était venu à la Source justement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0492"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0956",
-          "begin": 1556257,
-          "end": 1559718,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0492",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0492"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0957",
-          "begin": 1559718,
-          "end": 1560182,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0493",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0493"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0958",
-          "begin": 1560182,
-          "end": 1564470,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0494",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ils se plaignaient que ça allait mal dans l'enseignement euh en haut lieu"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0494"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0959",
-          "begin": 1564470,
-          "end": 1564895,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0495",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0495"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0960",
-          "begin": 1565707,
-          "end": 1566059,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0496",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0961",
-          "begin": 1567743,
-          "end": 1568767,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0496",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on faisait pas de cas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0962",
-          "begin": 1569308,
-          "end": 1571259,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0496",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il a fallu vraiment ce coup de mai"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0963",
-          "begin": 1571259,
-          "end": 1573214,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0496",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors comme une révolution non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0964",
-          "begin": 1573817,
-          "end": 1578360,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0496",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à pour limiter ce qui se passe qu'est-ce qui se passe mais au juste qu'est-ce qui se passe moi euh je n'étais pas en lieu"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0965",
-          "begin": 1578360,
-          "end": 1580079,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0496",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je ne sais pas eu juste euh ce qui s'est passé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0966",
-          "begin": 1580717,
-          "end": 1580798,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0497",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0497"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0967",
-          "begin": 1580798,
-          "end": 1584970,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0498",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "jusqu'au point que les recteurs ont abandonné tout ça alors c'était très grave"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0498"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0968",
-          "begin": 1586091,
-          "end": 1586868,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0499",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0499"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0969",
-          "begin": 1586868,
-          "end": 1588707,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0500",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais vous pour expliquer exactement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0500"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0970",
-          "begin": 1588707,
-          "end": 1589986,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0500",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ce qui s'est passé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0500"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0971",
-          "begin": 1589986,
-          "end": 1590647,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0500",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en mai"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0500"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0972",
-          "begin": 1592235,
-          "end": 1592451,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0500",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0500"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0973",
-          "begin": 1593475,
-          "end": 1595272,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0500",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi j'ai pas suivi la chose évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0500"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0974",
-          "begin": 1596686,
-          "end": 1599182,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0501",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais pratiquement ça vous ça vous a"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0501"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0975",
-          "begin": 1599727,
-          "end": 1600735,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0501",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que ça vous a"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0501"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0976",
-          "begin": 1600735,
-          "end": 1603188,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0502",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "atteint quand même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0502"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0977",
-          "begin": 1600735,
-          "end": 1603188,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0502",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ça nous a choqués évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0502"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0978",
-          "begin": 1603188,
-          "end": 1604753,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ben tous les français si vous voulez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0979",
-          "begin": 1605738,
-          "end": 1606801,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est épouvantable"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0980",
-          "begin": 1607771,
-          "end": 1609397,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est épouvantable ce qui s'est passé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0981",
-          "begin": 1611020,
-          "end": 1612469,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'était pas normal du tout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0982",
-          "begin": 1612469,
-          "end": 1615370,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors euh évidemment je crois qu'on aurait peut-être pu arriver"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0983",
-          "begin": 1615988,
-          "end": 1619874,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à réformer les l'enseignement que eux ils voulaient sans faire des choses pareilles"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0984",
-          "begin": 1619874,
-          "end": 1620898,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben ça c'était pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0985",
-          "begin": 1622192,
-          "end": 1625611,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "si nos parents avaient été là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0986",
-          "begin": 1622192,
-          "end": 1625611,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ils auraient été scandalisés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0987",
-          "begin": 1625611,
-          "end": 1628915,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0504",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et vous avez ressenti les effets de la des grèves et ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0504"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0988",
-          "begin": 1628915,
-          "end": 1631256,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "bien dans le bâtiment euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0989",
-          "begin": 1631256,
-          "end": 1634424,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "tout tout tout tout a suivi les finances ont suivi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0990",
-          "begin": 1634424,
-          "end": 1637070,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et nous euh nous avons passé l'hiver"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0991",
-          "begin": 1637070,
-          "end": 1639427,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "très très doucement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0992",
-          "begin": 1639427,
-          "end": 1641730,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh pour les les travaux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0993",
-          "begin": 1641730,
-          "end": 1648263,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh évidemment puisque les commandes on faisait beaucoup de devis mais pas de commandes alors si y a eu un frein énorme euh ça a gêné énormément"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0994",
-          "begin": 1648263,
-          "end": 1649426,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "aussi bien dans le bâtiment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0995",
-          "begin": 1650685,
-          "end": 1651033,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0506",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0506"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0996",
-          "begin": 1650685,
-          "end": 1651033,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0506",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0506"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0997",
-          "begin": 1652578,
-          "end": 1653003,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0507",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0507"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0998",
-          "begin": 1653003,
-          "end": 1653602,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0507",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0507"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a0999",
-          "begin": 1654356,
-          "end": 1658030,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0507",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quand vous votez pour un député enfin ces questions sont pas sont pas politiques"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0507"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1000",
-          "begin": 1658030,
-          "end": 1658227,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0508",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0508"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1001",
-          "begin": 1658227,
-          "end": 1659289,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0509",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "elles sont pas c'est pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0509"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1002",
-          "begin": 1659289,
-          "end": 1661588,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0509",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "toute façon vous répondez pas si vous voulez pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0509"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1003",
-          "begin": 1661588,
-          "end": 1664756,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0509",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "s- quand vous votez pour un député qu'est-ce que vous attendez de lui ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0509"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1004",
-          "begin": 1666421,
-          "end": 1668488,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0510",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh bien ça évidemment euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0510"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1005",
-          "begin": 1669149,
-          "end": 1670717,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0510",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "généralement on connaît"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0510"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1006",
-          "begin": 1671819,
-          "end": 1672248,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0510",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "l'homme"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0510"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1007",
-          "begin": 1672851,
-          "end": 1673203,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0511",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0511"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1008",
-          "begin": 1673999,
-          "end": 1675297,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0512",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et alors on sait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0512"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1009",
-          "begin": 1675297,
-          "end": 1681227,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0512",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on sait que c'est en en lui demandant une euh un sujet quelconque"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0512"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1010",
-          "begin": 1681961,
-          "end": 1683912,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0512",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et euh on aura satisfaction"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0512"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1011",
-          "begin": 1685090,
-          "end": 1686346,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0512",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on aime mieux un homme"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0512"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1012",
-          "begin": 1687022,
-          "end": 1690808,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0512",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh comment du pays à qui on peut s'adresser"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0512"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1013",
-          "begin": 1690808,
-          "end": 1691136,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0513",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0513"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1014",
-          "begin": 1691136,
-          "end": 1692991,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0514",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et alors c'est toujours ce c'est ce qui arrive"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0514"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1015",
-          "begin": 1692991,
-          "end": 1693690,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0515",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0515"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1016",
-          "begin": 1693690,
-          "end": 1695100,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0516",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est ce qui arrive"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0516"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1017",
-          "begin": 1695100,
-          "end": 1697534,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0516",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on est toujours assez bien reçu et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0516"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1018",
-          "begin": 1698713,
-          "end": 1703643,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0516",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment vous pour n'importe quoi le député est indispensable on est forcé d'aller le trouver"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0516"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1019",
-          "begin": 1703643,
-          "end": 1706448,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0516",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh pour obtenir la preuve pour une classe d'école"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0516"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1020",
-          "begin": 1706448,
-          "end": 1708287,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0517",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ou pour n'importe quoi pour"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0517"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1021",
-          "begin": 1706448,
-          "end": 1708287,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0517",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0517"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1022",
-          "begin": 1708287,
-          "end": 1708890,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0518",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0518"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1023",
-          "begin": 1708890,
-          "end": 1709203,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0519",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0519"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1024",
-          "begin": 1709203,
-          "end": 1712800,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0520",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "obtenir le PMU dans un café ou n'importe"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0520"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1025",
-          "begin": 1712800,
-          "end": 1714658,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0520",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le député il est prêt à tout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0520"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1026",
-          "begin": 1714658,
-          "end": 1715025,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0520",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0520"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1027",
-          "begin": 1715025,
-          "end": 1715392,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0521",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0521"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1028",
-          "begin": 1716957,
-          "end": 1717424,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0522",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0522"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1029",
-          "begin": 1718274,
-          "end": 1721771,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0522",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pourquoi est-ce qu'il y a deux tours dans les élections nationales"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0522"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1030",
-          "begin": 1721771,
-          "end": 1722605,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0522",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à votre avis ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0522"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1031",
-          "begin": 1723397,
-          "end": 1723861,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0523",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0523"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1032",
-          "begin": 1723861,
-          "end": 1726237,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0523",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est une c'est une histoire de ballottage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0523"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1033",
-          "begin": 1727014,
-          "end": 1727250,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0524",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0524"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1034",
-          "begin": 1728297,
-          "end": 1728513,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0524",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0524"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1035",
-          "begin": 1729112,
-          "end": 1732106,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0525",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça évidemment pour avoir la majorité absolue au premier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0525"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1036",
-          "begin": 1732106,
-          "end": 1732666,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0526",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0526"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1037",
-          "begin": 1732666,
-          "end": 1734637,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0527",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "tour ce n'est pas possible"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0527"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1038",
-          "begin": 1734637,
-          "end": 1735240,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0528",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0528"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1039",
-          "begin": 1735240,
-          "end": 1735881,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0529",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0529"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1040",
-          "begin": 1736808,
-          "end": 1738167,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0529",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non non même que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0529"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1041",
-          "begin": 1738450,
-          "end": 1741348,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0529",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh le député plaise énormément euh c'est pas possible"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0529"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1042",
-          "begin": 1741348,
-          "end": 1742202,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0530",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0530"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1043",
-          "begin": 1741348,
-          "end": 1742202,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0530",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0530"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1044",
-          "begin": 1742202,
-          "end": 1743094,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0531",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0531"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1045",
-          "begin": 1743094,
-          "end": 1745760,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0532",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et la seconde fois comment décide-t-on de son vote ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0532"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1046",
-          "begin": 1745760,
-          "end": 1747730,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0533",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah bien c'est ça c'est la moitié plus une"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0533"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1047",
-          "begin": 1747730,
-          "end": 1750280,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0533",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "la moitié des voix plus une qui remporte"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0533"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1048",
-          "begin": 1750280,
-          "end": 1751265,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0534",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors là c'est c'est"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0534"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1049",
-          "begin": 1750280,
-          "end": 1751265,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0534",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est normal"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0534"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1050",
-          "begin": 1751265,
-          "end": 1752559,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0535",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh ça a toujours existé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0535"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1051",
-          "begin": 1753216,
-          "end": 1754394,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0535",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui ça c'est normal"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0535"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1052",
-          "begin": 1755901,
-          "end": 1756481,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0535",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est normal"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0535"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1053",
-          "begin": 1757678,
-          "end": 1760189,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0536",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "on dit toujours la droite la gauche mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0536"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1054",
-          "begin": 1760189,
-          "end": 1762951,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0536",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quelle est la différence entre la droite et la gauche ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0536"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1055",
-          "begin": 1762951,
-          "end": 1764713,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0537",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0537"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1056",
-          "begin": 1762951,
-          "end": 1764713,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0537",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous pouvez dire grossièrement ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0537"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1057",
-          "begin": 1764713,
-          "end": 1767170,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0538",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui tout de même ça il y a une grosse marche"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0538"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1058",
-          "begin": 1767170,
-          "end": 1768986,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0538",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et euh avant il y avait le centre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0538"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1059",
-          "begin": 1768986,
-          "end": 1772216,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0538",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh la la quatrième république était vraiment au centre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0538"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1060",
-          "begin": 1772216,
-          "end": 1776199,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0538",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors évidemment la gauche n'est-ce pas on s'en va vers la Russie et la droite"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0538"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1061",
-          "begin": 1776991,
-          "end": 1779077,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0538",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "dans le temps nous avions euh les royalistes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0538"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1062",
-          "begin": 1779077,
-          "end": 1779309,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0539",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0539"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1063",
-          "begin": 1779970,
-          "end": 1780244,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0540",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0540"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1064",
-          "begin": 1780940,
-          "end": 1782451,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0540",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors maintenant évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0540"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1065",
-          "begin": 1784019,
-          "end": 1786531,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0540",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on penche un peu un peu sur la droite"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0540"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1066",
-          "begin": 1786531,
-          "end": 1787114,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0541",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0541"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1067",
-          "begin": 1788293,
-          "end": 1789919,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0541",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est la façon dont vous pourriez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0541"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1068",
-          "begin": 1789919,
-          "end": 1792160,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0541",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pourriez définir la droite la gauche est-ce que vous pourriez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0541"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1069",
-          "begin": 1792160,
-          "end": 1794536,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0542",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui bien évidemment on a toujours dit la droite le"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0542"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1070",
-          "begin": 1794536,
-          "end": 1795231,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0543",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "capital"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0543"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1071",
-          "begin": 1794536,
-          "end": 1795231,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0543",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0543"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1072",
-          "begin": 1795231,
-          "end": 1797899,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0543",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "la gauche l'ouvrier euh parti communiste"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0543"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1073",
-          "begin": 1795231,
-          "end": 1797899,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0543",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0543"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1074",
-          "begin": 1797899,
-          "end": 1799056,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0544",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "bof"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0544"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1075",
-          "begin": 1799056,
-          "end": 1800489,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0545",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en exagérant quoi hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0545"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1076",
-          "begin": 1799056,
-          "end": 1800489,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0545",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0545"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1077",
-          "begin": 1802038,
-          "end": 1807466,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0546",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous trouvez que les différences entre les milieux entre les classes sociales sont très marquées à Orléans ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0546"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1078",
-          "begin": 1809784,
-          "end": 1810132,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1079",
-          "begin": 1810831,
-          "end": 1811469,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1080",
-          "begin": 1811469,
-          "end": 1813057,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "la bourgeoisie"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1081",
-          "begin": 1813057,
-          "end": 1816001,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "Orléans était une ville très bourgeoise y a longtemps"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1082",
-          "begin": 1816615,
-          "end": 1819184,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "aujourd'hui y a plus de bourgeois ils sont tous malheureux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1083",
-          "begin": 1819957,
-          "end": 1824697,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh depuis les lois sociales euh les allocations euh les assurances sociales"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1084",
-          "begin": 1824697,
-          "end": 1826420,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "toute la bourgeoisie euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1085",
-          "begin": 1826420,
-          "end": 1827367,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "n'existe plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1086",
-          "begin": 1827367,
-          "end": 1829109,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors maintenant tout le monde travaille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1087",
-          "begin": 1829109,
-          "end": 1830592,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "tout le monde est dans le commerce"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1088",
-          "begin": 1830592,
-          "end": 1832119,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors il y a moins de paliers"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1089",
-          "begin": 1832119,
-          "end": 1837290,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment y a l'ingénieur y a le commerçant y a le petit artisan et y a l'ouvrier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1090",
-          "begin": 1837290,
-          "end": 1839647,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais tout de même y a pas ça ne choque pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1091",
-          "begin": 1840492,
-          "end": 1841181,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "comme dans le temps"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1092",
-          "begin": 1841912,
-          "end": 1842145,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0548",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0548"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1093",
-          "begin": 1842145,
-          "end": 1844115,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0549",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "dans le temps y avait vraiment le bourgeois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0549"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1094",
-          "begin": 1844115,
-          "end": 1845190,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0549",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et puis le petit ouvrier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0549"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1095",
-          "begin": 1846188,
-          "end": 1846953,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0549",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le serviteur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0549"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1096",
-          "begin": 1847833,
-          "end": 1851577,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0550",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que quand même vous pensez qu'on peut reconnaître les différentes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0550"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1097",
-          "begin": 1852193,
-          "end": 1852442,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0551",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0551"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1098",
-          "begin": 1852442,
-          "end": 1853268,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0552",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "catégories ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0552"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1099",
-          "begin": 1853268,
-          "end": 1854492,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0553",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui tout de même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1100",
-          "begin": 1854492,
-          "end": 1856768,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0553",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à tous poi- à beaucoup de points de vue"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1101",
-          "begin": 1856768,
-          "end": 1859236,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0553",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "n'est-ce pas on reconnaîtra tout de même un commerçant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1102",
-          "begin": 1860081,
-          "end": 1861668,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0553",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh ou un industriel"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1103",
-          "begin": 1861668,
-          "end": 1863504,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0553",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "avec un simple employé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1104",
-          "begin": 1863504,
-          "end": 1864537,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0553",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "si on le reconnaît"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1105",
-          "begin": 1864537,
-          "end": 1864942,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0554",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "comment ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0554"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1106",
-          "begin": 1864942,
-          "end": 1865726,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0555",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à beaucoup de choses"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0555"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1107",
-          "begin": 1866377,
-          "end": 1867566,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0555",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "rien qu'à sa tenue"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0555"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1108",
-          "begin": 1867566,
-          "end": 1868618,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0555",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à son maintien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0555"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1109",
-          "begin": 1869460,
-          "end": 1869942,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0556",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0556"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1110",
-          "begin": 1869942,
-          "end": 1871131,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0557",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à son langage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0557"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1111",
-          "begin": 1871131,
-          "end": 1871667,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0558",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0558"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1112",
-          "begin": 1871667,
-          "end": 1872856,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0559",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "la conversation quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0559"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1113",
-          "begin": 1872856,
-          "end": 1873392,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0560",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0560"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1114",
-          "begin": 1874964,
-          "end": 1875293,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0560",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0560"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1115",
-          "begin": 1881416,
-          "end": 1882009,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0561",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0561"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1116",
-          "begin": 1882009,
-          "end": 1883042,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0561",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0561"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1117",
-          "begin": 1883753,
-          "end": 1885857,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0561",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "là je fais on va passer à des"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0561"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1118",
-          "begin": 1885857,
-          "end": 1886702,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0561",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "des questions"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0561"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1119",
-          "begin": 1888022,
-          "end": 1893663,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0561",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qui sont un peu plus précises y en a certaines qui vont peut-être vous paraître vous faire rire un peu vous paraître un peu bête"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0561"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1120",
-          "begin": 1893663,
-          "end": 1894792,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0562",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0562"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1121",
-          "begin": 1893663,
-          "end": 1894792,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0562",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais enfin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0562"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1122",
-          "begin": 1894792,
-          "end": 1895828,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0563",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "par exemple en"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1123",
-          "begin": 1895828,
-          "end": 1897530,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0563",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "en je vais vous demander"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1124",
-          "begin": 1898640,
-          "end": 1899275,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0563",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1125",
-          "begin": 1899910,
-          "end": 1901520,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0563",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "comment est-ce que vous vous y"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1126",
-          "begin": 1901520,
-          "end": 1902629,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0563",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "prendriez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1127",
-          "begin": 1902629,
-          "end": 1903719,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0563",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pour faire une omelette ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1128",
-          "begin": 1905039,
-          "end": 1909479,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0564",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ça c'est pas mal ah non ça m'arrive"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0564"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1129",
-          "begin": 1905039,
-          "end": 1909479,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0564",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous pouvez me me décrire ça ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0564"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1130",
-          "begin": 1909479,
-          "end": 1911832,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0565",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh comme euh ben c'est pas du- euh c'est pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0565"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1131",
-          "begin": 1911832,
-          "end": 1916292,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0565",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je mets évidemment un peu de beurre même maintenant avec la poêle Tefal j'ai plus besoin de beurre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0565"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1132",
-          "begin": 1916292,
-          "end": 1916581,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0566",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0566"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1133",
-          "begin": 1916581,
-          "end": 1916910,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0567",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh je"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0567"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1134",
-          "begin": 1916910,
-          "end": 1919094,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0567",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je casse mes oeufs dans un bol"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0567"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1135",
-          "begin": 1919094,
-          "end": 1920188,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0567",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et puis alors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0567"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1136",
-          "begin": 1920188,
-          "end": 1922334,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0567",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un peu de euh de beurre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0567"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1137",
-          "begin": 1922334,
-          "end": 1923758,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0568",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et je mets mes oeufs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0568"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1138",
-          "begin": 1922334,
-          "end": 1923758,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0568",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0568"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1139",
-          "begin": 1924489,
-          "end": 1928853,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0569",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à cuire pour mon omelette quoi je les bats euh dans mon bol d'abord euh si je fais des une omelette"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0569"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1140",
-          "begin": 1928853,
-          "end": 1930062,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0570",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0570"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1141",
-          "begin": 1928853,
-          "end": 1930062,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0570",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et je la mets dans la poêle"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0570"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1142",
-          "begin": 1930062,
-          "end": 1933279,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0571",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un peu de poivre et de sel et puis ça y est un peu de persil"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0571"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1143",
-          "begin": 1934488,
-          "end": 1935677,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0571",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "voilà pour mon omelette"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0571"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1144",
-          "begin": 1935677,
-          "end": 1936022,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0572",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "bon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0572"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1145",
-          "begin": 1936022,
-          "end": 1940329,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0573",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben je suis forcé de faire ma cuisine des fois je rentre huit jours de vacances plus tôt que ma femme"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0573"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1146",
-          "begin": 1940329,
-          "end": 1942761,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0573",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors pendant huit jours ben je fais mon petit frichti moi-même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0573"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1147",
-          "begin": 1944521,
-          "end": 1945232,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0575",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "bon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0575"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1148",
-          "begin": 1945232,
-          "end": 1947087,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0575",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0575"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1149",
-          "begin": 1947087,
-          "end": 1948981,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0575",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que chez vous vous avez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0575"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1150",
-          "begin": 1948981,
-          "end": 1951050,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0575",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh un dictionnaire par exemple ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0575"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1151",
-          "begin": 1951050,
-          "end": 1954167,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0576",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui ça j'ai toujours euh mon dictionnaire c'était les"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0576"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1152",
-          "begin": 1954167,
-          "end": 1956347,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0576",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "les mots-croisés c'était mon dada étant jeune"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0576"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1153",
-          "begin": 1956347,
-          "end": 1956825,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0577",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0577"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1154",
-          "begin": 1956825,
-          "end": 1959235,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0577",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ben je vais vous demander ça un peu plus tard justement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0577"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1155",
-          "begin": 1959235,
-          "end": 1963408,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0577",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et euh vous savez des des genre encyclopédie des"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0577"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1156",
-          "begin": 1963408,
-          "end": 1966176,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0578",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui j'aime beaucoup aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0578"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1157",
-          "begin": 1963408,
-          "end": 1966176,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0578",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "des choses comme ça ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0578"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1158",
-          "begin": 1966176,
-          "end": 1968934,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0579",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "l'histoire ancienne mais malgré tout j'ai pas assez de temps"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0579"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1159",
-          "begin": 1968934,
-          "end": 1971118,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0580",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour m'en occuper mais dès que j'ai le temps"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0580"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1160",
-          "begin": 1968934,
-          "end": 1971118,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0580",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0580"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1161",
-          "begin": 1971118,
-          "end": 1972786,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0581",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh la preuve j'ai un guide"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0581"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1162",
-          "begin": 1972786,
-          "end": 1975677,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0582",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais je veux dire est-ce que chez vous vous en po- vous en possédez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0582"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1163",
-          "begin": 1972786,
-          "end": 1975677,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0582",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0582"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1164",
-          "begin": 1975677,
-          "end": 1976423,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0583",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous avez des"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0583"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1165",
-          "begin": 1976423,
-          "end": 1976844,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0584",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0584"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1166",
-          "begin": 1976844,
-          "end": 1982604,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0585",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "des guides des encyclo- oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0585"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1167",
-          "begin": 1976844,
-          "end": 1982604,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0585",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "des des choses anciennes oh oui oui oui voyez le le cadeau de mon anci- de mon patron il m'a demandé ce que je préférais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0585"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1168",
-          "begin": 1982604,
-          "end": 1983889,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0586",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "du premier de l'an il est là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0586"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1169",
-          "begin": 1983889,
-          "end": 1984099,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0587",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0587"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1170",
-          "begin": 1984099,
-          "end": 1987848,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0588",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est le guide de l'Orléanais rien que des choses historiques des petites histoires"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0588"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1171",
-          "begin": 1987848,
-          "end": 1988445,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0589",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0589"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1172",
-          "begin": 1988445,
-          "end": 1990036,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0590",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'aime beaucoup ces choses-là le voilà"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0590"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1173",
-          "begin": 1990036,
-          "end": 1990457,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0591",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0591"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1174",
-          "begin": 1990457,
-          "end": 1991188,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0592",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est le guide du Val de Loire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0592"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1175",
-          "begin": 1991188,
-          "end": 1991880,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0593",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0593"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1176",
-          "begin": 1991880,
-          "end": 1995020,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0593",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah oui c'est c'est bien je connais cette collection c'est formidable"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0593"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1177",
-          "begin": 1995020,
-          "end": 1996951,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0593",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et chez vous euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0593"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1178",
-          "begin": 1996951,
-          "end": 1999036,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0593",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quel est le dictionnaire que vous avez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0593"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1179",
-          "begin": 1999036,
-          "end": 2001220,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0594",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben alors nous avons tous les Larousse forcément"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0594"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1180",
-          "begin": 2001220,
-          "end": 2002065,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0595",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "tous les Larousse ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0595"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1181",
-          "begin": 2002065,
-          "end": 2002486,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0596",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0596"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1182",
-          "begin": 2002486,
-          "end": 2005492,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0597",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah tous les Larousse non pas pas les huit volumes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0597"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1183",
-          "begin": 2002486,
-          "end": 2005492,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0597",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "enfin le Lar- le"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0597"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1184",
-          "begin": 2005492,
-          "end": 2005894,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0598",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0598"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1185",
-          "begin": 2005894,
-          "end": 2009875,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0599",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh non le gros et le petit et puis le le"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0599"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1186",
-          "begin": 2005894,
-          "end": 2009875,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0599",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "troisième"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0599"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1187",
-          "begin": 2009875,
-          "end": 2010354,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0599",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0599"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1188",
-          "begin": 2010354,
-          "end": 2011716,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0599",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'avais même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0599"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1189",
-          "begin": 2011716,
-          "end": 2012963,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0599",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'en ai donné"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0599"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1190",
-          "begin": 2012963,
-          "end": 2016971,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0600",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un à mon frère"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0600"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1191",
-          "begin": 2012963,
-          "end": 2016971,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0600",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'avais le Simon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0600"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1192",
-          "begin": 2012963,
-          "end": 2016971,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0600",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous avez donc plusieurs volumes de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0600"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1193",
-          "begin": 2016971,
-          "end": 2017376,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0601",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0601"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1194",
-          "begin": 2017376,
-          "end": 2020857,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0602",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'avais un autre euh le dictionnaire le Simon que j'ai donné à mon plus jeune frère"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0602"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1195",
-          "begin": 2020857,
-          "end": 2021129,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0603",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0603"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1196",
-          "begin": 2021129,
-          "end": 2024766,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0604",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et l'autre euh le Littré un vieux Littré que j'ai donné à mon frère aîné"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0604"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1197",
-          "begin": 2024766,
-          "end": 2027520,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0604",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce qu'on faisait tous les trois des mots-croisés à cette époque-là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0604"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1198",
-          "begin": 2027520,
-          "end": 2028327,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0605",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0605"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1199",
-          "begin": 2028327,
-          "end": 2029363,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0606",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "les trois frères"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0606"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1200",
-          "begin": 2029363,
-          "end": 2035505,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0607",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "donc vous avez vous êtes riche en dictionnaires vous avez vous avez même plusieurs volumes euh chez vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0607"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1201",
-          "begin": 2029363,
-          "end": 2035505,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0607",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et on s'échangeait oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0607"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1202",
-          "begin": 2029363,
-          "end": 2035505,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0607",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'était de fami- de famille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0607"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1203",
-          "begin": 2035505,
-          "end": 2035945,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0608",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0608"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1204",
-          "begin": 2036940,
-          "end": 2038053,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0609",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "do- et euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0609"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1205",
-          "begin": 2038917,
-          "end": 2040371,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0609",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous les avez depuis quand ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0609"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1206",
-          "begin": 2041293,
-          "end": 2044835,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0610",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "depuis longtemps vous les avez toujours"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0610"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1207",
-          "begin": 2041293,
-          "end": 2044835,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0610",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui ces dictionnaires-là c'est d'enfance"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0610"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1208",
-          "begin": 2044835,
-          "end": 2046560,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0611",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh le le vieux Larousse"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0611"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1209",
-          "begin": 2044835,
-          "end": 2046560,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0611",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "d'enfance"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0611"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1210",
-          "begin": 2046560,
-          "end": 2048481,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0612",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il est de mille neuf cent cinq il est avant moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0612"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1211",
-          "begin": 2048481,
-          "end": 2051030,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0612",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh c'est hm hein le premier Larousse"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0612"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1212",
-          "begin": 2051030,
-          "end": 2054285,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0613",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous vous souvenez comm- quand vous les avez eus enfin euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0613"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1213",
-          "begin": 2051030,
-          "end": 2054285,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0613",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'était"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0613"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1214",
-          "begin": 2054285,
-          "end": 2055639,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0614",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben oui c'est d'héritage quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0614"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1215",
-          "begin": 2055639,
-          "end": 2056542,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0615",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "d'héritage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0615"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1216",
-          "begin": 2056542,
-          "end": 2056928,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0616",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0616"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1217",
-          "begin": 2056928,
-          "end": 2057483,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0617",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0617"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1218",
-          "begin": 2057483,
-          "end": 2059483,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0617",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et est-ce que vous en avez acheté depuis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0617"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1219",
-          "begin": 2059483,
-          "end": 2059594,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0617",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0617"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1220",
-          "begin": 2059594,
-          "end": 2060313,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0618",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0618"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1221",
-          "begin": 2060313,
-          "end": 2060858,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0619",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vos dictionnaires ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0619"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1222",
-          "begin": 2060858,
-          "end": 2061325,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0620",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0620"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1223",
-          "begin": 2061325,
-          "end": 2063898,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0620",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment les mots usuels euh les mots de maintenant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0620"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1224",
-          "begin": 2063898,
-          "end": 2066857,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0620",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh nous les avions pas alors euh on a racheté"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0620"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1225",
-          "begin": 2066857,
-          "end": 2068615,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0620",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "deux deux dictionnaires toi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0620"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1226",
-          "begin": 2068615,
-          "end": 2069681,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0621",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "même trois même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0621"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1227",
-          "begin": 2068615,
-          "end": 2069681,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0621",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0621"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1228",
-          "begin": 2069681,
-          "end": 2070183,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0622",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0622"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1229",
-          "begin": 2070705,
-          "end": 2071033,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0623",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0623"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1230",
-          "begin": 2071033,
-          "end": 2072521,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0624",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh vous les avez achetés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0624"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1231",
-          "begin": 2072521,
-          "end": 2073607,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0624",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "comment dans un magasin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0624"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1232",
-          "begin": 2073607,
-          "end": 2076045,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0625",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "un représentant ? en librairie"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0625"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1233",
-          "begin": 2073607,
-          "end": 2076045,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0625",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ben en librairie à la librairie hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0625"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1234",
-          "begin": 2077884,
-          "end": 2079395,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0626",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce qui s'en sert le plus souvent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0626"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1235",
-          "begin": 2079395,
-          "end": 2080210,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0626",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "dans la famille ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0626"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1236",
-          "begin": 2080963,
-          "end": 2082393,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0627",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ben et euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0627"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1237",
-          "begin": 2080963,
-          "end": 2082393,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0627",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "des dictionnaires"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0627"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1238",
-          "begin": 2082393,
-          "end": 2083324,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0628",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0628"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1239",
-          "begin": 2083324,
-          "end": 2087902,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0628",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh il y a encore seulement vingt ans j'avais toujours le dictionnaire sur le coin de la table par rapport à ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0628"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1240",
-          "begin": 2087902,
-          "end": 2089142,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0628",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour mes mots-croisés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0628"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1241",
-          "begin": 2089142,
-          "end": 2089451,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0629",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0629"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1242",
-          "begin": 2089451,
-          "end": 2092291,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0630",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais alors depuis que je suis marié j'ai pas le temps et puis j'embarrasse la table"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0630"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1243",
-          "begin": 2092291,
-          "end": 2093222,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0631",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je me ferais disputer"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0631"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1244",
-          "begin": 2092291,
-          "end": 2093222,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0631",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0631"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1245",
-          "begin": 2093222,
-          "end": 2095250,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0632",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors maintenant ils sont sur le bureau de mon fils"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0632"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1246",
-          "begin": 2095250,
-          "end": 2097317,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0633",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et c'est qu'est-ce qui s'en sert le plus souvent votre fils"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0633"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1247",
-          "begin": 2097317,
-          "end": 2099214,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0634",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui oui oui oui oui malgré tout euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0634"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1248",
-          "begin": 2097317,
-          "end": 2099214,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0634",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous votre femme ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0634"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1249",
-          "begin": 2099214,
-          "end": 2102077,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0635",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh le midi aux jeux souvent on va chercher le dictionnaire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0635"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1250",
-          "begin": 2102077,
-          "end": 2102409,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0636",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0636"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1251",
-          "begin": 2102409,
-          "end": 2105693,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0637",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ou pour un mot ou euh radiophonique ou pour les jeux radiophoniques"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0637"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1252",
-          "begin": 2105693,
-          "end": 2106408,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0637",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0637"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1253",
-          "begin": 2107281,
-          "end": 2107687,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0638",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0638"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1254",
-          "begin": 2109120,
-          "end": 2111767,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0638",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et vous par exemple approximativement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0638"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1255",
-          "begin": 2111767,
-          "end": 2112447,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0638",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0638"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1256",
-          "begin": 2112447,
-          "end": 2114035,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0638",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "combien de fois euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0638"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1257",
-          "begin": 2114035,
-          "end": 2119409,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0638",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quelle est la fréquence avec laquelle vous regardez le dictionnaire c'est-à-dire une fois par mois une fois par an une fois par euh ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0638"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1258",
-          "begin": 2120475,
-          "end": 2122739,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0639",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0639"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1259",
-          "begin": 2120475,
-          "end": 2122739,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0639",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à p- a peu près en gros quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0639"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1260",
-          "begin": 2122739,
-          "end": 2125544,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0640",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ça je sais pas euh moi personnellement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0640"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1261",
-          "begin": 2125544,
-          "end": 2128774,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0640",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh c'est je regarde qu'une fois de par ci par là quoi peut-être deux ou trois fois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0640"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1262",
-          "begin": 2128774,
-          "end": 2130381,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0641",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "par mois c'est tout oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0641"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1263",
-          "begin": 2128774,
-          "end": 2130381,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0641",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0641"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1264",
-          "begin": 2130903,
-          "end": 2132984,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0642",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais évidemment toi c'est pas pareil"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0642"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1265",
-          "begin": 2133824,
-          "end": 2135045,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0643",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "par exemple est-ce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0643"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1266",
-          "begin": 2135045,
-          "end": 2136536,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0643",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous pouvez vous souvenir"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0643"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1267",
-          "begin": 2136536,
-          "end": 2138951,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0643",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de la dernière fois ou vous l'av- ou vous l'avez regardé ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0643"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1268",
-          "begin": 2138951,
-          "end": 2140635,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0644",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben c'est ça c'est la semaine dernière"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0644"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1269",
-          "begin": 2140635,
-          "end": 2141930,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0645",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "la semaine dernière"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0645"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1270",
-          "begin": 2140635,
-          "end": 2141930,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0645",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'on a"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0645"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1271",
-          "begin": 2141930,
-          "end": 2143402,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0646",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0646"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1272",
-          "begin": 2141930,
-          "end": 2143402,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0646",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0646"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1273",
-          "begin": 2143402,
-          "end": 2144970,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0647",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et qu'est-ce que vous cherchez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0647"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1274",
-          "begin": 2145473,
-          "end": 2146566,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0648",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "dans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0648"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1275",
-          "begin": 2145473,
-          "end": 2146566,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0648",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "dans un dictionnaire ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0648"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1276",
-          "begin": 2146566,
-          "end": 2148366,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0649",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "eh bien c'est"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0649"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1277",
-          "begin": 2148366,
-          "end": 2150916,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0649",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh comme là une île une île"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0649"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1278",
-          "begin": 2150916,
-          "end": 2152017,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0649",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0649"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1279",
-          "begin": 2152017,
-          "end": 2154658,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0649",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "du Pacifique ou quelque chose comme ça on a cherché tout de suite voir"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0649"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1280",
-          "begin": 2154658,
-          "end": 2156189,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0650",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "avant que le"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0650"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1281",
-          "begin": 2154658,
-          "end": 2156189,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0650",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0650"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1282",
-          "begin": 2156189,
-          "end": 2157696,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0651",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "candidat réponde"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0651"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1283",
-          "begin": 2157696,
-          "end": 2159956,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0652",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "n'est-ce pas nous avons cherché pour voir"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0652"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1284",
-          "begin": 2157696,
-          "end": 2159956,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0652",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0652"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1285",
-          "begin": 2159956,
-          "end": 2161308,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0653",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "au jeu des mille francs là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0653"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1286",
-          "begin": 2161308,
-          "end": 2161714,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0653",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0653"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1287",
-          "begin": 2161714,
-          "end": 2167551,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0654",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et le plus souvent quel genre de choses vous regardez ? l'orthographe le sens des mots des renseignements d'histoire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0654"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1288",
-          "begin": 2167551,
-          "end": 2170178,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0655",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de géographie ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0655"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1289",
-          "begin": 2167551,
-          "end": 2170178,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0655",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui des renseignements en histoire et géographie oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0655"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1290",
-          "begin": 2170178,
-          "end": 2170449,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0656",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0656"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1291",
-          "begin": 2170449,
-          "end": 2174871,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0657",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh euh pour l'orthographe euh c'est rare parce que maintenant mon fils est assez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0657"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1292",
-          "begin": 2174871,
-          "end": 2175764,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0657",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "si euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0657"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1293",
-          "begin": 2175764,
-          "end": 2179916,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0657",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je fais une faute je lui demande comment je dois écrire pour les lettres de premier de l'an ou n'importe des correspondances"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0657"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1294",
-          "begin": 2179916,
-          "end": 2180283,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0657",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0657"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1295",
-          "begin": 2180283,
-          "end": 2180940,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0658",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0658"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1296",
-          "begin": 2180940,
-          "end": 2184842,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0659",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous avez un livre euh ou vous possédez des livres s-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0659"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1297",
-          "begin": 2184842,
-          "end": 2185982,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0659",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à la chez vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0659"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1298",
-          "begin": 2185982,
-          "end": 2186913,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0660",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "sur euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0660"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1299",
-          "begin": 2185982,
-          "end": 2186913,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0660",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0660"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1300",
-          "begin": 2186913,
-          "end": 2189386,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0661",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "l'art d'éc- d'écrire ou de parler"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0661"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1301",
-          "begin": 2189386,
-          "end": 2191631,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0662",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ou de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0662"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1302",
-          "begin": 2189386,
-          "end": 2191631,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0662",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ou de choses comme ça ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0662"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1303",
-          "begin": 2189386,
-          "end": 2191631,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0662",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non non non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0662"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1304",
-          "begin": 2193624,
-          "end": 2193818,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0663",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0663"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1305",
-          "begin": 2195000,
-          "end": 2195773,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0664",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pourquoi ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0664"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1306",
-          "begin": 2195773,
-          "end": 2196569,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0664",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous trou-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0664"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1307",
-          "begin": 2196569,
-          "end": 2197210,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0665",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0665"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1308",
-          "begin": 2197210,
-          "end": 2199007,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0666",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous pensez que c'est utile ou ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0666"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1309",
-          "begin": 2199007,
-          "end": 2201213,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0667",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm non moi je trouve euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0667"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1310",
-          "begin": 2201213,
-          "end": 2205428,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0667",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je regardais des choses comme ça ça me m'éclairais pas beaucoup les manières de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0667"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1311",
-          "begin": 2205428,
-          "end": 2207866,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0667",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de formules euh les manières de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0667"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1312",
-          "begin": 2207866,
-          "end": 2212042,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0667",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "d'envoyer des voeux de bonne année ou des choses comme ça je trouvais ça ridicule"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0667"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1313",
-          "begin": 2212042,
-          "end": 2212486,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0667",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0667"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1314",
-          "begin": 2212486,
-          "end": 2213452,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0668",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ou- oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0668"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1315",
-          "begin": 2213452,
-          "end": 2213897,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0669",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0669"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1316",
-          "begin": 2213897,
-          "end": 2214538,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0669",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'ai euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0669"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1317",
-          "begin": 2215813,
-          "end": 2218769,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0670",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "alors vous m'avez dit que vous f- vous faisiez beaucoup de mots-croisés ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0670"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1318",
-          "begin": 2218769,
-          "end": 2219294,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0671",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0671"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1319",
-          "begin": 2219294,
-          "end": 2220473,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0671",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il y a plus de vingt ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0671"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1320",
-          "begin": 2220473,
-          "end": 2222466,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0672",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et maintenant ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0672"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1321",
-          "begin": 2220473,
-          "end": 2222466,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0672",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors depuis non j'ai pas le temps du tout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0672"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1322",
-          "begin": 2222466,
-          "end": 2223065,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0673",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "plus du tout ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0673"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1323",
-          "begin": 2223065,
-          "end": 2223394,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0674",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1324",
-          "begin": 2224441,
-          "end": 2226357,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0674",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et malgré tout ça me plairait vous savez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1325",
-          "begin": 2226357,
-          "end": 2227787,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0674",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que euh nou-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1326",
-          "begin": 2228641,
-          "end": 2232585,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0674",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh y a beaucoup de journaux qui sont commencés en vacances euh je"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1327",
-          "begin": 2232585,
-          "end": 2232991,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0674",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1328",
-          "begin": 2232991,
-          "end": 2235303,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0674",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et je jette de temps en temps un coup d'oeil tout de même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1329",
-          "begin": 2235303,
-          "end": 2235950,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0675",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quand même oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0675"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1330",
-          "begin": 2235950,
-          "end": 2238292,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0676",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui oui oui euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0676"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1331",
-          "begin": 2235950,
-          "end": 2238292,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0676",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "je vais mettre oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0676"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1332",
-          "begin": 2238292,
-          "end": 2239745,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0677",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh sans écrire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0677"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1333",
-          "begin": 2239745,
-          "end": 2241449,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0678",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'aime bien deviner les mots"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0678"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1334",
-          "begin": 2239745,
-          "end": 2241449,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0678",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0678"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1335",
-          "begin": 2241449,
-          "end": 2243056,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0678",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0678"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1336",
-          "begin": 2241449,
-          "end": 2243056,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0678",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0678"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1337",
-          "begin": 2245084,
-          "end": 2251111,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0679",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que vous pensez de ce qu'on appelle le franglais c'est-à-dire d'employer des mots comme snack-bar euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0679"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1338",
-          "begin": 2251111,
-          "end": 2253796,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0680",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui oh ben ça euh moi je ne connais pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0680"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1339",
-          "begin": 2251111,
-          "end": 2253796,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0680",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "en français des choses comme ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0680"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1340",
-          "begin": 2253796,
-          "end": 2254839,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0681",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "du tout l'anglais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0681"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1341",
-          "begin": 2254839,
-          "end": 2257089,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0681",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors là ça me paralyse complètement l'histoire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0681"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1342",
-          "begin": 2257089,
-          "end": 2259997,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0681",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que quand je vois les choses ou alors pour les vêtements"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0681"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1343",
-          "begin": 2260696,
-          "end": 2261102,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0682",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0682"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1344",
-          "begin": 2261102,
-          "end": 2264660,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0683",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "puisque aujourd'hui presque tous les vêtements sont appelés comme ça euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0683"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1345",
-          "begin": 2264660,
-          "end": 2265162,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0684",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0684"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1346",
-          "begin": 2265162,
-          "end": 2267384,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0685",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh &chewing-short ou des je ne sais quoi moi alors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0685"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1347",
-          "begin": 2267384,
-          "end": 2267697,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0686",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0686"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1348",
-          "begin": 2267697,
-          "end": 2268879,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0687",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh déjà je le prononce très mal"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0687"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1349",
-          "begin": 2268879,
-          "end": 2269208,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0688",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0688"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1350",
-          "begin": 2269208,
-          "end": 2272302,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0689",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors euh ça c'est ça c'est de l'hébreu pour moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0689"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1351",
-          "begin": 2272302,
-          "end": 2272747,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0690",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0690"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1352",
-          "begin": 2272747,
-          "end": 2273214,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0691",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "zéro"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0691"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1353",
-          "begin": 2275243,
-          "end": 2275575,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0692",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0692"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1354",
-          "begin": 2275575,
-          "end": 2275749,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0693",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0693"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1355",
-          "begin": 2275749,
-          "end": 2277352,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0694",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "donc vous êtes vous êtes contre ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0694"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1356",
-          "begin": 2277352,
-          "end": 2278434,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0695",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0695"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1357",
-          "begin": 2278434,
-          "end": 2280717,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0696",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous êtes pour ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0696"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1358",
-          "begin": 2278434,
-          "end": 2280717,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0696",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "tout ça c'est pour mon manque d'instruction"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0696"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1359",
-          "begin": 2280717,
-          "end": 2282421,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0697",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mon fils l'apprend de l'anglais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0697"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1360",
-          "begin": 2282421,
-          "end": 2284781,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0697",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "lui ça euh ça lui fera rien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0697"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1361",
-          "begin": 2284781,
-          "end": 2285303,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0697",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "n'est-ce pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0697"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1362",
-          "begin": 2285303,
-          "end": 2285689,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0698",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "enfin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0698"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1363",
-          "begin": 2286114,
-          "end": 2288301,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0699",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est un moi c'est un manque de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0699"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1364",
-          "begin": 2286114,
-          "end": 2288301,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0699",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0699"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1365",
-          "begin": 2288301,
-          "end": 2289232,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0700",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "d'instruction"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0700"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1366",
-          "begin": 2290526,
-          "end": 2293968,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0701",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "si par exemple on vous demandait vous êtes pour contre ou indifférent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0701"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1367",
-          "begin": 2294490,
-          "end": 2296715,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0702",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est ce que vous diriez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0702"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1368",
-          "begin": 2294490,
-          "end": 2296715,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0702",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah si moi je ça me serait égal"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0702"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1369",
-          "begin": 2296715,
-          "end": 2298570,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0703",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça je serais indifférent complètement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0703"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1370",
-          "begin": 2298570,
-          "end": 2302688,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0703",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais euh je vous dis il faut arriver à un à un niveau d'instruction pour tout le monde"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0703"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1371",
-          "begin": 2303538,
-          "end": 2305122,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0703",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi jamais j'ai jamais fait d'anglais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0703"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1372",
-          "begin": 2305122,
-          "end": 2306281,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0703",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que à mon époque"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0703"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1373",
-          "begin": 2306996,
-          "end": 2309878,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0703",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on ne faisait pas d'anglais y avait que ceux qui poussaient les études"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0703"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1374",
-          "begin": 2309878,
-          "end": 2310593,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0704",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0704"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1375",
-          "begin": 2312432,
-          "end": 2313344,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0705",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0705"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1376",
-          "begin": 2313344,
-          "end": 2315782,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0705",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh selon vous y a des différences"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0705"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1377",
-          "begin": 2316462,
-          "end": 2320001,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0705",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "dans la façon de parler français se- selon les gens"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0705"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1378",
-          "begin": 2320001,
-          "end": 2320932,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0706",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "appartenant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0706"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1379",
-          "begin": 2320001,
-          "end": 2320932,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0706",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0706"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1380",
-          "begin": 2320932,
-          "end": 2322284,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0707",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à différents milieux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0707"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1381",
-          "begin": 2322284,
-          "end": 2323984,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0708",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "sociaux ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0708"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1382",
-          "begin": 2322284,
-          "end": 2323984,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0708",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui oui oui de beaucoup beaucoup"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0708"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1383",
-          "begin": 2323984,
-          "end": 2324390,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0709",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0709"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1384",
-          "begin": 2324390,
-          "end": 2324838,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0710",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "beaucoup beaucoup ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0710"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1385",
-          "begin": 2324838,
-          "end": 2328412,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mon fils mon mon fils me reproche euh énormément"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1386",
-          "begin": 2328412,
-          "end": 2330521,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mon mauvais langage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1387",
-          "begin": 2330521,
-          "end": 2333399,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et et ce qui lui fait faire des fautes aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1388",
-          "begin": 2333399,
-          "end": 2334307,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en français"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1389",
-          "begin": 2335331,
-          "end": 2336200,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "n'est-ce pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1390",
-          "begin": 2336200,
-          "end": 2337379,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1391",
-          "begin": 2337379,
-          "end": 2339025,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh nos parents"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1392",
-          "begin": 2339025,
-          "end": 2340787,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "étaient de la campagne"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1393",
-          "begin": 2340787,
-          "end": 2342954,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et euh moi j'ai continué moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1394",
-          "begin": 2343553,
-          "end": 2344449,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et mes frères quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1395",
-          "begin": 2344449,
-          "end": 2348529,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh nous avons continué à causer comme on nous a montré tout petit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1396",
-          "begin": 2348529,
-          "end": 2351334,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh et alors on fait des fautes de langage énormément quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1397",
-          "begin": 2351334,
-          "end": 2354467,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "puisque euh tout ça nous étions pas de famille euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1398",
-          "begin": 2354467,
-          "end": 2355317,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "d'intellectuels"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1399",
-          "begin": 2356321,
-          "end": 2358060,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0712",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et donc alors sur vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0712"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1400",
-          "begin": 2358060,
-          "end": 2360478,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0712",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "d'après vous les différences de langage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0712"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1401",
-          "begin": 2360478,
-          "end": 2360749,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0713",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0713"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1402",
-          "begin": 2360749,
-          "end": 2364983,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0714",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "entre les les différents milieux sociaux ça porte surtout sur euh ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0714"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1403",
-          "begin": 2364983,
-          "end": 2368263,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0715",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "sur euh ce sera oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0715"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1404",
-          "begin": 2364983,
-          "end": 2368263,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0715",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "la famille euh ce c'est c'est ça c'est c'est euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0715"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1405",
-          "begin": 2368263,
-          "end": 2370079,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0716",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le coup du berceau de la famille quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0716"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1406",
-          "begin": 2370079,
-          "end": 2371319,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0716",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh c'est"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0716"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1407",
-          "begin": 2371319,
-          "end": 2374603,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0716",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "une famille intellectuelle ou une famille qui a eu de l'instruction"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0716"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1408",
-          "begin": 2374603,
-          "end": 2376616,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0716",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "cause euh s'exprime mieux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0716"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1409",
-          "begin": 2376616,
-          "end": 2378334,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0716",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et les enfants pareils"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0716"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1410",
-          "begin": 2378334,
-          "end": 2379246,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0717",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0717"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1411",
-          "begin": 2379246,
-          "end": 2381722,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0718",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui tandis que moi il se trouve handicapé par rapport à ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0718"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1412",
-          "begin": 2381722,
-          "end": 2381973,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0719",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0719"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1413",
-          "begin": 2381973,
-          "end": 2384233,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0720",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "faut qu'il redresse nos fautes de langage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0720"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1414",
-          "begin": 2384233,
-          "end": 2384678,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0721",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0721"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1415",
-          "begin": 2384678,
-          "end": 2386725,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0722",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et nous on peut pas en remédier maintenant il est trop tard"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0722"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1416",
-          "begin": 2388158,
-          "end": 2392176,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0723",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et selon vous est-ce que les gens parlent le français maintenant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0723"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1417",
-          "begin": 2392176,
-          "end": 2396387,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0723",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de mieux en mieux de plus en plus mal ou sans changement ça reste ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0723"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1418",
-          "begin": 2396387,
-          "end": 2399149,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0724",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh si tout de même je crois que si parce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1419",
-          "begin": 2399149,
-          "end": 2400656,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0724",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "dans le temps c'était affreux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1420",
-          "begin": 2400656,
-          "end": 2403036,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0724",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh en en campagne"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1421",
-          "begin": 2403036,
-          "end": 2405203,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0724",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le &coûtieau et tout ça quoi il y avait de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1422",
-          "begin": 2405203,
-          "end": 2406644,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0724",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de l'argot ou quoi de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1423",
-          "begin": 2406644,
-          "end": 2407811,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0724",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mauvais langage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1424",
-          "begin": 2407811,
-          "end": 2410732,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0725",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "dans toutes les régions toutes les provinces c'était p- pareil"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0725"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1425",
-          "begin": 2407811,
-          "end": 2410732,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0725",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0725"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1426",
-          "begin": 2410732,
-          "end": 2414000,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0726",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh non maintenant les gens s'expriment un peu mieux ça c'est sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0726"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1427",
-          "begin": 2414000,
-          "end": 2414425,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0727",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0727"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1428",
-          "begin": 2414425,
-          "end": 2414676,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0728",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0728"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1429",
-          "begin": 2414676,
-          "end": 2415777,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0729",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et de quoi ça vient ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0729"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1430",
-          "begin": 2417226,
-          "end": 2419467,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0730",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben tout de même de l'évolution du monde"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0730"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1431",
-          "begin": 2419467,
-          "end": 2422658,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0730",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "tout de même euh les gens sont de plus en plus instruits"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0730"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1432",
-          "begin": 2422658,
-          "end": 2425729,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0730",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on lit la radio d'abord qui aide beaucoup"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0730"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1433",
-          "begin": 2425729,
-          "end": 2426019,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0731",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0731"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1434",
-          "begin": 2426019,
-          "end": 2427854,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0732",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce qu'on s'exprime en grand français"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0732"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1435",
-          "begin": 2427854,
-          "end": 2428144,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0732",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0732"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1436",
-          "begin": 2428144,
-          "end": 2428438,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0733",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0733"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1437",
-          "begin": 2431050,
-          "end": 2434898,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0734",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "parmi les gens que v- parmi vos connaissances les gens que vous connaissez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0734"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1438",
-          "begin": 2434898,
-          "end": 2435250,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0735",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0735"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1439",
-          "begin": 2435250,
-          "end": 2435756,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0736",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0736"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1440",
-          "begin": 2435756,
-          "end": 2437649,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0736",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quelle est la personne qui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0736"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1441",
-          "begin": 2437649,
-          "end": 2440180,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0736",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "que vous voyez qui parlerait le mieux le français ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0736"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1442",
-          "begin": 2440180,
-          "end": 2440763,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0736",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "enfin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0736"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1443",
-          "begin": 2440763,
-          "end": 2441748,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0736",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "sa profession je vous demande"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0736"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1444",
-          "begin": 2441748,
-          "end": 2443352,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0737",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben rien que mon employeur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0737"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1445",
-          "begin": 2443352,
-          "end": 2445414,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0737",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi j'ai mon employeur qui est un ingénieur"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0737"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1446",
-          "begin": 2445414,
-          "end": 2445867,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0738",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0738"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1447",
-          "begin": 2445867,
-          "end": 2447030,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0739",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il s'exprime euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0739"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1448",
-          "begin": 2447030,
-          "end": 2448734,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0739",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "dans la perfection évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0739"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1449",
-          "begin": 2448734,
-          "end": 2449201,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0740",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0740"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1450",
-          "begin": 2449201,
-          "end": 2449395,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0741",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0741"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1451",
-          "begin": 2453030,
-          "end": 2454556,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0742",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que selon vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0742"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1452",
-          "begin": 2454556,
-          "end": 2457377,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0742",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "il existe en France un organisme"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0742"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1453",
-          "begin": 2457377,
-          "end": 2460742,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0742",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qui est chargé de décider si un mot ou une expression"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0742"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1454",
-          "begin": 2460742,
-          "end": 2462586,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0742",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "fait partie ou non du français ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0742"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1455",
-          "begin": 2463343,
-          "end": 2464579,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0743",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah bien c'est la"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0743"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1456",
-          "begin": 2465584,
-          "end": 2467887,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0743",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh c'est je si évidemment c'est euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0743"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1457",
-          "begin": 2467887,
-          "end": 2468953,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0743",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "bien l'Académie"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0743"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1458",
-          "begin": 2468953,
-          "end": 2469591,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0744",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0744"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1459",
-          "begin": 2469591,
-          "end": 2469981,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0745",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0745"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1460",
-          "begin": 2471565,
-          "end": 2473458,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0746",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous trouvez ça utile ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0746"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1461",
-          "begin": 2473458,
-          "end": 2474405,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0747",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0747"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1462",
-          "begin": 2474405,
-          "end": 2475143,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0748",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0748"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1463",
-          "begin": 2474405,
-          "end": 2475143,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0748",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0748"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1464",
-          "begin": 2475143,
-          "end": 2475997,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0749",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui oui oh oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0749"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1465",
-          "begin": 2475997,
-          "end": 2477990,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0750",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "très oh oui très utile"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0750"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1466",
-          "begin": 2475997,
-          "end": 2477990,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0750",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "très ut- très utile"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0750"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1467",
-          "begin": 2477990,
-          "end": 2483109,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0751",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ils nous ont introduit en plus dans le dictionnaire les mots nouveaux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0751"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1468",
-          "begin": 2483109,
-          "end": 2486779,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0751",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh comme électronique et tout ça euh aujourd'hui n'est-ce pas euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0751"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1469",
-          "begin": 2486779,
-          "end": 2488618,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0751",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh le Spoutnik"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0751"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1470",
-          "begin": 2486779,
-          "end": 2488618,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0751",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et tout ça euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0751"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1471",
-          "begin": 2488618,
-          "end": 2488796,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0752",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0752"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1472",
-          "begin": 2488796,
-          "end": 2489920,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0753",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on est forcé de suivre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0753"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1473",
-          "begin": 2490789,
-          "end": 2492103,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0753",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour l'évolution quoi on est forcé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0753"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1474",
-          "begin": 2492667,
-          "end": 2494348,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0754",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui alors donc vous trouvez que c'est"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0754"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1475",
-          "begin": 2494348,
-          "end": 2495395,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0755",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui tout à fait utile"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0755"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1476",
-          "begin": 2496403,
-          "end": 2497215,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0756",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "très utile"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0756"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1477",
-          "begin": 2497215,
-          "end": 2497644,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0756",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0756"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1478",
-          "begin": 2499753,
-          "end": 2503122,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0757",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "on dit parfois que la langue française se se dégrade"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0757"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1479",
-          "begin": 2504191,
-          "end": 2505183,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0757",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que vous en pensez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0757"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1480",
-          "begin": 2505183,
-          "end": 2507195,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0758",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous trouvez que c'est vrai ou c'est pas vrai ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0758"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1481",
-          "begin": 2505183,
-          "end": 2507195,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0758",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0758"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1482",
-          "begin": 2507195,
-          "end": 2508634,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0758",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0758"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1483",
-          "begin": 2507195,
-          "end": 2508634,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0758",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non je ne crois pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0758"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1484",
-          "begin": 2509256,
-          "end": 2509353,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0759",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0759"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1485",
-          "begin": 2512386,
-          "end": 2515069,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0760",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment y a de l'argot y a toujours eu de l'argot"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0760"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1486",
-          "begin": 2515069,
-          "end": 2515944,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0760",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0760"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1487",
-          "begin": 2515944,
-          "end": 2517246,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0760",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh dans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0760"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1488",
-          "begin": 2517246,
-          "end": 2518977,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0760",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "la la basse classe quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0760"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1489",
-          "begin": 2518977,
-          "end": 2520746,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0760",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh ça ça ça ne change rien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0760"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1490",
-          "begin": 2523720,
-          "end": 2530097,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0761",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous trouvez que c'est important que les journalistes les speakers les professeurs parlent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0761"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1491",
-          "begin": 2530097,
-          "end": 2530991,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0761",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "un"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0761"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1492",
-          "begin": 2530991,
-          "end": 2532119,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0761",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "bon français ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0761"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1493",
-          "begin": 2532119,
-          "end": 2533869,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0762",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh c'est indispensable"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0762"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1494",
-          "begin": 2535016,
-          "end": 2536979,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0763",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0763"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1495",
-          "begin": 2535016,
-          "end": 2536979,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0763",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est indispensable instantanément"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0763"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1496",
-          "begin": 2537951,
-          "end": 2539040,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0764",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on on répéterait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0764"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1497",
-          "begin": 2540109,
-          "end": 2541081,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0764",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le leurs fautes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0764"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1498",
-          "begin": 2541626,
-          "end": 2542054,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0765",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0765"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1499",
-          "begin": 2542832,
-          "end": 2546856,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0766",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors c'est à eux ah oui oui oui c'est à eux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0766"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1500",
-          "begin": 2542832,
-          "end": 2546856,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0766",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous trouvez qu'on devrait qu'on devrait les obliger à à parler bon français ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0766"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1501",
-          "begin": 2546856,
-          "end": 2547614,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0767",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est à eux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0767"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1502",
-          "begin": 2547614,
-          "end": 2549850,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0767",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et le laisser-aller de la radio"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0767"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1503",
-          "begin": 2549850,
-          "end": 2551133,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0767",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "est tout à fait nuisible"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0767"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1504",
-          "begin": 2552572,
-          "end": 2552864,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0768",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0768"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1505",
-          "begin": 2553758,
-          "end": 2556402,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0768",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "parce que vous trouvez qu'y a un certain laisser-aller à la radio ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0768"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1506",
-          "begin": 2556402,
-          "end": 2561339,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0769",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui maintenant euh ça commence à se tutoyer à employer des mots"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0769"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1507",
-          "begin": 2561884,
-          "end": 2561981,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0770",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0770"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1508",
-          "begin": 2561981,
-          "end": 2563109,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0771",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "déplacés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0771"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1509",
-          "begin": 2563109,
-          "end": 2563265,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0772",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0772"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1510",
-          "begin": 2563265,
-          "end": 2564762,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0773",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est c'est très néfaste"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0773"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1511",
-          "begin": 2564762,
-          "end": 2565676,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0773",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour les jeunes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0773"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1512",
-          "begin": 2566512,
-          "end": 2566959,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0774",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0774"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1513",
-          "begin": 2566959,
-          "end": 2568825,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0775",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qu'on a du mal à redresser alors ça c'est pas bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0775"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1514",
-          "begin": 2570147,
-          "end": 2570361,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0776",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0776"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1515",
-          "begin": 2570964,
-          "end": 2572111,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0777",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "sans rester évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0777"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1516",
-          "begin": 2573005,
-          "end": 2574074,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0777",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à l'ancienne mode"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0777"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1517",
-          "begin": 2574697,
-          "end": 2575455,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0778",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0778"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1518",
-          "begin": 2575455,
-          "end": 2576408,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0779",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en restant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0779"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1519",
-          "begin": 2576408,
-          "end": 2577594,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0779",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "correct très correct"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0779"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1520",
-          "begin": 2579149,
-          "end": 2580763,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0779",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et un professeur pareil surtout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0779"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1521",
-          "begin": 2581346,
-          "end": 2581657,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0780",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0780"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1522",
-          "begin": 2583290,
-          "end": 2584009,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0781",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et un prêtre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0781"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1523",
-          "begin": 2585934,
-          "end": 2589433,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0782",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que euh il y a des prêtres qui ont des langages maintenant vraiment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0782"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1524",
-          "begin": 2585934,
-          "end": 2589433,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0782",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0782"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1525",
-          "begin": 2589433,
-          "end": 2591533,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0782",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un petit peu"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0782"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1526",
-          "begin": 2589433,
-          "end": 2591533,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0782",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0782"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1527",
-          "begin": 2591533,
-          "end": 2592855,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0783",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et un peu mal placés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0783"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1528",
-          "begin": 2592855,
-          "end": 2593302,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0784",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0784"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1529",
-          "begin": 2595246,
-          "end": 2596024,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0785",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0785"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1530",
-          "begin": 2597812,
-          "end": 2599426,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0785",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "aujourd'hui à votre avis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0785"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1531",
-          "begin": 2600029,
-          "end": 2603625,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0785",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "on enseigne l'orthographe et la correction de la langue"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0785"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1532",
-          "begin": 2604092,
-          "end": 2604592,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0785",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "moins"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0785"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1533",
-          "begin": 2605220,
-          "end": 2608408,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0785",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mieux ou moins bien que du temps où vous étiez vous-même à l'école ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0785"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1534",
-          "begin": 2610002,
-          "end": 2611208,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0786",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0786"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1535",
-          "begin": 2611208,
-          "end": 2612413,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0786",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non ça suit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0786"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1536",
-          "begin": 2612413,
-          "end": 2613774,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0786",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0786"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1537",
-          "begin": 2613774,
-          "end": 2614299,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0787",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "aussi bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0787"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1538",
-          "begin": 2614299,
-          "end": 2616581,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je sais bien que mon fils était bon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1539",
-          "begin": 2616581,
-          "end": 2617623,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en orthographe"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1540",
-          "begin": 2618187,
-          "end": 2618556,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1541",
-          "begin": 2619392,
-          "end": 2620559,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça s'est"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1542",
-          "begin": 2620559,
-          "end": 2622347,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est venu progressivement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1543",
-          "begin": 2622872,
-          "end": 2624810,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça a suivi parce qu'il avait des facilités"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1544",
-          "begin": 2626521,
-          "end": 2629126,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais euh je ne crois pas qu'il y ait beaucoup plus d'efforts"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1545",
-          "begin": 2629126,
-          "end": 2630098,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "aujourd'hui euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1546",
-          "begin": 2631964,
-          "end": 2635203,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0789",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous pensez qu'on l'enseignement on enseigne de la même façon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0789"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1547",
-          "begin": 2635942,
-          "end": 2636720,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0789",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "l'orthographe"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0789"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1548",
-          "begin": 2636720,
-          "end": 2638334,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0790",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et la langue française ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0790"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1549",
-          "begin": 2636720,
-          "end": 2638334,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0790",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0790"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1550",
-          "begin": 2638334,
-          "end": 2638937,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0791",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "peut-être"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0791"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1551",
-          "begin": 2638937,
-          "end": 2642300,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0791",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "tout de même pas comme nous dans le temps non certainement aujourd'hui ils ont"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0791"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1552",
-          "begin": 2642300,
-          "end": 2644225,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0792",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "certainement modernisé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0792"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1553",
-          "begin": 2642300,
-          "end": 2644225,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0792",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "plutôt mieux ou moins bien ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0792"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1554",
-          "begin": 2645877,
-          "end": 2647957,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0793",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est peut-être plus compliqué mais c'est mieux"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0793"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1555",
-          "begin": 2647957,
-          "end": 2649493,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0794",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est mieux quand même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0794"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1556",
-          "begin": 2647957,
-          "end": 2649493,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0794",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi je suppose hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0794"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1557",
-          "begin": 2650310,
-          "end": 2651826,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0795",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et ça tient à quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0795"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1558",
-          "begin": 2651826,
-          "end": 2654120,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0795",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui vous m'avez dit c'est plus plus moderne"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0795"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1559",
-          "begin": 2654742,
-          "end": 2656298,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0796",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui évidemment maintenant"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0796"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1560",
-          "begin": 2656298,
-          "end": 2658475,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0796",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il y a euh beaucoup de textes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0796"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1561",
-          "begin": 2659547,
-          "end": 2661002,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0796",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh imprimés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0796"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1562",
-          "begin": 2661002,
-          "end": 2661722,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0797",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0797"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1563",
-          "begin": 2661722,
-          "end": 2664327,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0798",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ou qu'on leur donne comme modèle et tout ça euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0798"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1564",
-          "begin": 2665182,
-          "end": 2666329,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0799",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour les compositions"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0799"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1565",
-          "begin": 2665182,
-          "end": 2666329,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0799",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0799"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1566",
-          "begin": 2666329,
-          "end": 2668195,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0800",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et tout ça du coup moi je trouve c'est beaucoup mieux quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0800"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1567",
-          "begin": 2668195,
-          "end": 2669167,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0800",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est plus moderne que de notre temps"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0800"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1568",
-          "begin": 2669167,
-          "end": 2669420,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0801",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0801"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1569",
-          "begin": 2669420,
-          "end": 2669984,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0802",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0802"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1570",
-          "begin": 2672084,
-          "end": 2674786,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0803",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "dans quelles matières est-ce que vous étiez le plus fort à l'école ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0803"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1571",
-          "begin": 2674786,
-          "end": 2677760,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0804",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ben c'était ça nous c'était en écriture en écriture en orthographe"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0804"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1572",
-          "begin": 2678830,
-          "end": 2684662,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0805",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est là où vous étiez le plus fort personnellement ? en écriture orthographe"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0805"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1573",
-          "begin": 2678830,
-          "end": 2684662,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0805",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi et mon fils mon fils aussi oui oui et puis même mes frères aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0805"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1574",
-          "begin": 2685732,
-          "end": 2688628,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0806",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'était la famille mais alors euh pour les maths"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0806"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1575",
-          "begin": 2689367,
-          "end": 2689678,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0807",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0807"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1576",
-          "begin": 2690417,
-          "end": 2690884,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0808",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "zéro"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0808"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1577",
-          "begin": 2693333,
-          "end": 2694033,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0809",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0809"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1578",
-          "begin": 2694033,
-          "end": 2697202,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0809",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "habituellement vous avez quelque chose pour écrire sur vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0809"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1579",
-          "begin": 2697202,
-          "end": 2697960,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0809",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous avez de quoi écrire ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0809"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1580",
-          "begin": 2697960,
-          "end": 2698602,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0810",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah toujours oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0810"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1581",
-          "begin": 2698602,
-          "end": 2698835,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0811",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "toujours ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0811"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1582",
-          "begin": 2698835,
-          "end": 2699360,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0812",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "toujours"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0812"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1583",
-          "begin": 2699360,
-          "end": 2701712,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0812",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah toujours ah mon stylo un carnet tout le temps"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0812"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1584",
-          "begin": 2701712,
-          "end": 2702393,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0813",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0813"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1585",
-          "begin": 2703832,
-          "end": 2705718,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0813",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "un sty- un stylo à plume ou un Bic ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0813"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1586",
-          "begin": 2705718,
-          "end": 2707526,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0814",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah non euh une Bic une non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0814"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1587",
-          "begin": 2707526,
-          "end": 2708556,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0815",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0815"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1588",
-          "begin": 2707526,
-          "end": 2708556,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0815",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "un un"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0815"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1589",
-          "begin": 2708556,
-          "end": 2709334,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0815",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non j'ai pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0815"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1590",
-          "begin": 2708556,
-          "end": 2709334,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0815",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0815"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1591",
-          "begin": 2709334,
-          "end": 2710948,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0816",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "l'utilité d'un porte euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0816"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1592",
-          "begin": 2710948,
-          "end": 2711240,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0817",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0817"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1593",
-          "begin": 2711240,
-          "end": 2711668,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0818",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "plume"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0818"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1594",
-          "begin": 2712271,
-          "end": 2713982,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0819",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et un carnet enfin vous avez toujours"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0819"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1595",
-          "begin": 2713982,
-          "end": 2715193,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0820",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de quoi écrire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0820"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1596",
-          "begin": 2713982,
-          "end": 2715193,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0820",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui j'ai toujours toujours"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0820"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1597",
-          "begin": 2715193,
-          "end": 2716762,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0821",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je suis forcé tout les jours j'écris"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0821"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1598",
-          "begin": 2716762,
-          "end": 2717481,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0822",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0822"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1599",
-          "begin": 2717481,
-          "end": 2718434,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0823",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est forcé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0823"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1600",
-          "begin": 2718434,
-          "end": 2718784,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0824",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0824"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1601",
-          "begin": 2719698,
-          "end": 2721467,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0825",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous avez un stylo"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0825"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1602",
-          "begin": 2721467,
-          "end": 2721972,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0825",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à encre ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0825"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1603",
-          "begin": 2721972,
-          "end": 2723177,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0825",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous vous en vous vous servez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0825"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1604",
-          "begin": 2723177,
-          "end": 2724305,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0826",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de stylo à encre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0826"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1605",
-          "begin": 2723177,
-          "end": 2724305,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0826",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0826"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1606",
-          "begin": 2724305,
-          "end": 2727610,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0827",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui c'était trois ou quatre stylo plume or et tout ce"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0827"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1607",
-          "begin": 2727610,
-          "end": 2728893,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0827",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh oui bien sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0827"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1608",
-          "begin": 2729651,
-          "end": 2731051,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0827",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'était des cadeaux de famille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0827"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1609",
-          "begin": 2731051,
-          "end": 2731556,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0828",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0828"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1610",
-          "begin": 2732101,
-          "end": 2734512,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0828",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous vous souvenez la première fois que vous en avez eu un ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0828"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1611",
-          "begin": 2735406,
-          "end": 2737422,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0829",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui mon premier stylo"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0829"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1612",
-          "begin": 2737422,
-          "end": 2741044,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0829",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est un de mes camarades qui me l'avait payé une plume or"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0829"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1613",
-          "begin": 2741044,
-          "end": 2742405,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0829",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et j'avais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0829"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1614",
-          "begin": 2742405,
-          "end": 2743727,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0829",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je ne dix-huit ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0829"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1615",
-          "begin": 2743727,
-          "end": 2744563,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0830",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "dix-huit ans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0830"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1616",
-          "begin": 2744563,
-          "end": 2745321,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0831",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0831"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1617",
-          "begin": 2745321,
-          "end": 2746390,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0831",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un cadeau d'usine"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0831"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1618",
-          "begin": 2750667,
-          "end": 2752592,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0832",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "alors vous avez il faut pour euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0832"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1619",
-          "begin": 2752592,
-          "end": 2754011,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0832",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "que vous écriviez tous les jours"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0832"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1620",
-          "begin": 2754011,
-          "end": 2756072,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0833",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pour vo- pour votre métier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0833"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1621",
-          "begin": 2754011,
-          "end": 2756072,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0833",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui pour le travail"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0833"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1622",
-          "begin": 2756072,
-          "end": 2756344,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0834",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0834"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1623",
-          "begin": 2756344,
-          "end": 2758463,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0834",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour le travail j'ai toujours à écrire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0834"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1624",
-          "begin": 2758463,
-          "end": 2761535,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0834",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ce que j'ai fait ce que j'ai à faire et des rendez-vous et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0834"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1625",
-          "begin": 2761535,
-          "end": 2761866,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0835",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0835"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1626",
-          "begin": 2761866,
-          "end": 2762002,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0836",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0836"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1627",
-          "begin": 2762002,
-          "end": 2763479,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0837",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "par exemple aujourd'hui vous avez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0837"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1628",
-          "begin": 2763479,
-          "end": 2767795,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0838",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui moi toujours toujours j'ai euh à écrire pour euh ce qui me faut pour demain et après-demain"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0838"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1629",
-          "begin": 2767795,
-          "end": 2770517,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0838",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et puis alors en même temps pour penser pour ne pas oublier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0838"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1630",
-          "begin": 2770517,
-          "end": 2771450,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0838",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à quelque chose"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0838"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1631",
-          "begin": 2771450,
-          "end": 2773433,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0839",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je suis forcé tout le temps d'avoir le crayon à la main"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0839"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1632",
-          "begin": 2771450,
-          "end": 2773433,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0839",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0839"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1633",
-          "begin": 2773433,
-          "end": 2773763,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0840",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0840"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1634",
-          "begin": 2773763,
-          "end": 2774288,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0841",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0841"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1635",
-          "begin": 2776777,
-          "end": 2781637,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0842",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "la dernière fois que vous avez eu besoin d'écrire pour votre travail euh c'est c'est quand c'est aujourd'hui finalement ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0842"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1636",
-          "begin": 2781637,
-          "end": 2782434,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0843",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui tous les jours"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0843"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1637",
-          "begin": 2783231,
-          "end": 2783464,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0844",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0844"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1638",
-          "begin": 2784767,
-          "end": 2789258,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0845",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous p- vous avez sur vous pour écrire exactement c'est c'est un agenda finalement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0845"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1639",
-          "begin": 2789258,
-          "end": 2791066,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0846",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est ça oui c'est l'agenda c'est ça oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0846"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1640",
-          "begin": 2789258,
-          "end": 2791066,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0846",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est un agenda"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0846"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1641",
-          "begin": 2791066,
-          "end": 2791620,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0846",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0846"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1642",
-          "begin": 2791066,
-          "end": 2791620,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0846",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0846"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1643",
-          "begin": 2793885,
-          "end": 2797151,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0847",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "si vous avez un quelque chose à dire à"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0847"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1644",
-          "begin": 2797151,
-          "end": 2798084,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0847",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à un ami"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0847"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1645",
-          "begin": 2799173,
-          "end": 2800339,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0847",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qui habite à"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0847"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1646",
-          "begin": 2800809,
-          "end": 2802167,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0847",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quatre cinq kilomètres"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0847"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1647",
-          "begin": 2802167,
-          "end": 2802867,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0848",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0848"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1648",
-          "begin": 2802867,
-          "end": 2806444,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0849",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que vous faites vous vous déplacez ou vous lui écrivez une lettre ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0849"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1649",
-          "begin": 2806444,
-          "end": 2810371,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0850",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh euh je fais un mot oui oui oui oh oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0850"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1650",
-          "begin": 2806444,
-          "end": 2810371,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0850",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est ce que vous préférez ? vous préférez faire un mot ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0850"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1651",
-          "begin": 2810371,
-          "end": 2811129,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0851",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui enfin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0851"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1652",
-          "begin": 2811129,
-          "end": 2812490,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0852",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui ou alors ça serait vraiment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0852"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1653",
-          "begin": 2813365,
-          "end": 2816748,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0852",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour une chose indispensable que je voudrais le cau- lui causer"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0852"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1654",
-          "begin": 2816748,
-          "end": 2817856,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0853",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors je me déplace"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0853"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1655",
-          "begin": 2816748,
-          "end": 2817856,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0853",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0853"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1656",
-          "begin": 2817856,
-          "end": 2818264,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0854",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0854"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1657",
-          "begin": 2818264,
-          "end": 2819314,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0855",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm sans ça j'envoie un mot"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0855"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1658",
-          "begin": 2819314,
-          "end": 2820267,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0856",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous envoyez un mot"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0856"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1659",
-          "begin": 2820267,
-          "end": 2820423,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0857",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0857"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1660",
-          "begin": 2820967,
-          "end": 2821239,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0858",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0858"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1661",
-          "begin": 2821239,
-          "end": 2822659,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0858",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et si c'est une lettre offici-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0858"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1662",
-          "begin": 2822659,
-          "end": 2824020,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0858",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oh que non ça euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0858"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1663",
-          "begin": 2824020,
-          "end": 2825808,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0858",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quelq- si c'est quelque chose de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0858"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1664",
-          "begin": 2825808,
-          "end": 2826450,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0858",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "d'important"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0858"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1665",
-          "begin": 2826450,
-          "end": 2827597,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0859",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah là je me déplace"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0859"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1666",
-          "begin": 2826450,
-          "end": 2827597,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0859",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "d'officiel"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0859"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1667",
-          "begin": 2827597,
-          "end": 2828025,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0860",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh je me déplace"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0860"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1668",
-          "begin": 2828025,
-          "end": 2828939,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0861",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "là vous vous déplacez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0861"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1669",
-          "begin": 2828939,
-          "end": 2831233,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0862",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui sans hésitation bien sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0862"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1670",
-          "begin": 2831233,
-          "end": 2831952,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0863",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pourquoi ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0863"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1671",
-          "begin": 2832924,
-          "end": 2834343,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0864",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben euh je préfère"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0864"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1672",
-          "begin": 2834343,
-          "end": 2837259,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0864",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le contact hein personnel tout de suite"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0864"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1673",
-          "begin": 2837259,
-          "end": 2837609,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0865",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0865"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1674",
-          "begin": 2837609,
-          "end": 2838348,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0866",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour voir euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0866"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1675",
-          "begin": 2839106,
-          "end": 2841944,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0866",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh si c'est une chose importante on voit tout de suite la réaction"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0866"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1676",
-          "begin": 2842819,
-          "end": 2843091,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0867",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0867"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1677",
-          "begin": 2843091,
-          "end": 2844394,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0868",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ça je n'hésiterais pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0868"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1678",
-          "begin": 2844394,
-          "end": 2844919,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0869",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0869"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1679",
-          "begin": 2844919,
-          "end": 2848554,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0870",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "même pour un ouvrier un camarade ou un accident ou n'importe"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0870"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1680",
-          "begin": 2848554,
-          "end": 2849682,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0870",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je me déplacerais ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0870"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1681",
-          "begin": 2849682,
-          "end": 2851393,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0870",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je regarderais pas à faire dix ou quinze kilomètres"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0870"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1682",
-          "begin": 2851393,
-          "end": 2851782,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0871",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0871"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1683",
-          "begin": 2851782,
-          "end": 2852054,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0872",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0872"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1684",
-          "begin": 2852968,
-          "end": 2854869,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0872",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je préfère de vive voix même que par écrit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0872"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1685",
-          "begin": 2854869,
-          "end": 2855359,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0873",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0873"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1686",
-          "begin": 2856603,
-          "end": 2860200,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0874",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que pour vous croyez que c'est important d'avoir une une belle écriture ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0874"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1687",
-          "begin": 2861677,
-          "end": 2862144,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0875",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0875"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1688",
-          "begin": 2863796,
-          "end": 2868034,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0876",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est quoi très important important important"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0876"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1689",
-          "begin": 2863796,
-          "end": 2868034,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0876",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que très important non important parce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0876"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1690",
-          "begin": 2868034,
-          "end": 2871903,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0877",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi je suis malheureux pour mon fils qui a une très vilaine écriture"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0877"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1691",
-          "begin": 2871903,
-          "end": 2874683,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0877",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et euh nous moi et mon frère"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0877"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1692",
-          "begin": 2874683,
-          "end": 2875169,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0878",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0878"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1693",
-          "begin": 2875169,
-          "end": 2876685,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0879",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "nous avons une écriture"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0879"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1694",
-          "begin": 2876685,
-          "end": 2877288,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0879",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "potable"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0879"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1695",
-          "begin": 2877988,
-          "end": 2879504,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0880",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour pas dire une écriture de notaire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0880"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1696",
-          "begin": 2877988,
-          "end": 2879504,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0880",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0880"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1697",
-          "begin": 2879504,
-          "end": 2881584,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0881",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "comme on disait pour se fiche de nous mais vraiment je"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0881"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1698",
-          "begin": 2881584,
-          "end": 2883373,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0881",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "moi j'écris pas mal et mon frère"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0881"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1699",
-          "begin": 2883373,
-          "end": 2884462,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0882",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mes frères aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0882"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1700",
-          "begin": 2883373,
-          "end": 2884462,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0882",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0882"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1701",
-          "begin": 2884462,
-          "end": 2886037,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0883",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et pourquoi vous croyez que ce"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0883"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1702",
-          "begin": 2886426,
-          "end": 2887495,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0884",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pourquoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0884"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1703",
-          "begin": 2886426,
-          "end": 2887495,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0884",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh c'est presque"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0884"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1704",
-          "begin": 2887495,
-          "end": 2889264,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0885",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pas illisible mais tout de même c'est pas très joli"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0885"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1705",
-          "begin": 2889264,
-          "end": 2889847,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0885",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0885"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1706",
-          "begin": 2889847,
-          "end": 2891033,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0885",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je crois qu'un"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0885"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1707",
-          "begin": 2891033,
-          "end": 2892958,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0885",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un intellectuel euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0885"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1708",
-          "begin": 2894008,
-          "end": 2896055,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0885",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "d'une situation assez élevée"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0885"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1709",
-          "begin": 2896055,
-          "end": 2896405,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0886",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0886"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1710",
-          "begin": 2896405,
-          "end": 2899530,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0887",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ou qui a une vilaine écriture évidemment un docteur ça euh accepté"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0887"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1711",
-          "begin": 2899530,
-          "end": 2899788,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0888",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0888"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1712",
-          "begin": 2899788,
-          "end": 2901207,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0889",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh c'est do- euh c'est dommage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0889"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1713",
-          "begin": 2901207,
-          "end": 2903482,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0889",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est dommage euh moi je trouve qu'on"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0889"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1714",
-          "begin": 2903482,
-          "end": 2906087,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0889",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on ne peut pas distinguer l'instruction avec un écriture comme ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0889"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1715",
-          "begin": 2906806,
-          "end": 2907195,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0890",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0890"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1716",
-          "begin": 2907195,
-          "end": 2909372,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0891",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors c'est pourquoi j'ai voulu lui acheter une machine à écrire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0891"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1717",
-          "begin": 2911064,
-          "end": 2912250,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0893",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "il y gagne hein"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0893"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1718",
-          "begin": 2912250,
-          "end": 2913591,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0893",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "je mets que ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0893"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1719",
-          "begin": 2914680,
-          "end": 2917790,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0894",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et est-ce que c'est important d'avoir de de l'orthographe ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0894"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1720",
-          "begin": 2917790,
-          "end": 2919151,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0895",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh hein alors oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0895"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1721",
-          "begin": 2920220,
-          "end": 2920512,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0895",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0895"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1722",
-          "begin": 2921348,
-          "end": 2921834,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0896",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0896"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1723",
-          "begin": 2921834,
-          "end": 2922320,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0896",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0896"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1724",
-          "begin": 2922320,
-          "end": 2923992,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0897",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "beaucoup beaucoup beaucoup oh oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0897"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1725",
-          "begin": 2924789,
-          "end": 2928541,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0897",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça fiche une personnalité par terre avec trois fautes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0897"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1726",
-          "begin": 2929532,
-          "end": 2929921,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0898",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0898"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1727",
-          "begin": 2931962,
-          "end": 2936784,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0899",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous seriez favorable à une réforme de l'orthographe ? vous savez des fois on parle de simplifier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0899"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1728",
-          "begin": 2936784,
-          "end": 2943569,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0900",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "l'orthographe de faire une réforme vous auriez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0900"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1729",
-          "begin": 2936784,
-          "end": 2943569,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0900",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oh oui alors oh oui oui oui oui oh oui euh nous en France avec deux S trois F ou"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0900"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1730",
-          "begin": 2943569,
-          "end": 2944347,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0901",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0901"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1731",
-          "begin": 2944347,
-          "end": 2945844,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0901",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça oui bien sûr mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0901"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1732",
-          "begin": 2945844,
-          "end": 2947496,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0901",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça ça doit être très difficile"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0901"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1733",
-          "begin": 2947496,
-          "end": 2949115,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0902",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous seriez très favorable"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0902"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1734",
-          "begin": 2947496,
-          "end": 2949115,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0902",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0902"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1735",
-          "begin": 2949115,
-          "end": 2950626,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0903",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ou seulement favorable ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0903"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1736",
-          "begin": 2950626,
-          "end": 2952084,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0904",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh si très favorable"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0904"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1737",
-          "begin": 2952084,
-          "end": 2952978,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0905",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "très favorable"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0905"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1738",
-          "begin": 2952084,
-          "end": 2952978,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0905",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0905"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1739",
-          "begin": 2952978,
-          "end": 2954825,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0906",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça serait tout de même beaucoup plus facile"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0906"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1740",
-          "begin": 2955506,
-          "end": 2955934,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0907",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0907"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1741",
-          "begin": 2958403,
-          "end": 2960036,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0908",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et certainement qu'y a pas qu'en France"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0908"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1742",
-          "begin": 2965129,
-          "end": 2969834,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0909",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "chez vous euh dans la famille qui est-ce qui écrit les lettres normalement ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0909"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1743",
-          "begin": 2969834,
-          "end": 2971175,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0910",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous ou votre femme ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0910"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1744",
-          "begin": 2969834,
-          "end": 2971175,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0910",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est moi c'est moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0910"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1745",
-          "begin": 2971175,
-          "end": 2971797,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0911",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah c'est vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0911"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1746",
-          "begin": 2971797,
-          "end": 2974286,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0912",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ma femme écrit euh à ses amis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0912"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1747",
-          "begin": 2974286,
-          "end": 2976036,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0912",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais malgré tout moi j'écris"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0912"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1748",
-          "begin": 2976036,
-          "end": 2978408,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0913",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le plus souvent ah le plus souvent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0913"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1749",
-          "begin": 2976036,
-          "end": 2978408,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0913",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "par exemple à des amis communs ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0913"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1750",
-          "begin": 2978408,
-          "end": 2982393,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0914",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh si il y a à écrire au lycée ou n'importe ma femme me fait confiance c'est moi qui écris"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0914"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1751",
-          "begin": 2983112,
-          "end": 2985348,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0915",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui et par exemple dans la famille si vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0915"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1752",
-          "begin": 2985348,
-          "end": 2987156,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0916",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui c'est toujours moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0916"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1753",
-          "begin": 2985348,
-          "end": 2987156,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0916",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "dans la famille de votre femme ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0916"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1754",
-          "begin": 2987156,
-          "end": 2987890,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0917",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ben"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0917"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1755",
-          "begin": 2987890,
-          "end": 2990242,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0917",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh ça elle écrit à ses"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0917"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1756",
-          "begin": 2990242,
-          "end": 2992303,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0917",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ses amis et à sa famille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0917"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1757",
-          "begin": 2992303,
-          "end": 2994791,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0918",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est sûr oui tout de même oui oui oui oh oui ben si tout de même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0918"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1758",
-          "begin": 2992303,
-          "end": 2994791,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0918",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0918"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1759",
-          "begin": 2994791,
-          "end": 2997824,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0919",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais dans votre famille c'est vous qui qui écrivez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0919"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1760",
-          "begin": 2994791,
-          "end": 2997824,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0919",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on aime mieux oui oh oui oui oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0919"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1761",
-          "begin": 2997824,
-          "end": 2999476,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0920",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour n'importe quoi de la maison"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0920"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1762",
-          "begin": 2999476,
-          "end": 3001459,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0920",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh c'est ma femme me dit écris donc euh à tel"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0920"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1763",
-          "begin": 3001459,
-          "end": 3007097,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0921",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à tel c'est ça c'est toujours moi oui ah oui oui c'est toujours moi oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0921"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1764",
-          "begin": 3001459,
-          "end": 3007097,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0921",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "les papiers administratifs euh les feuilles d'impôts sécurité sociale tout ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0921"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1765",
-          "begin": 3007097,
-          "end": 3007816,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0922",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pourquoi ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0922"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1766",
-          "begin": 3008633,
-          "end": 3008866,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0923",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0923"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1767",
-          "begin": 3010052,
-          "end": 3012385,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0923",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment c'est de aussi une question peut-être d'écriture"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0923"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1768",
-          "begin": 3012988,
-          "end": 3013182,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0924",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0924"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1769",
-          "begin": 3013182,
-          "end": 3014388,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0925",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "eh ben puis alors le temps"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0925"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1770",
-          "begin": 3014388,
-          "end": 3017965,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0925",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que ma femme a toujours toujours quelque chose à faire n'est-ce pas comme beaucoup de dames hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0925"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1771",
-          "begin": 3017965,
-          "end": 3018412,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0926",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0926"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1772",
-          "begin": 3023350,
-          "end": 3024186,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0927",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "selon vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0927"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1773",
-          "begin": 3024828,
-          "end": 3026636,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0927",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qui est-ce qui a la la plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0927"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1774",
-          "begin": 3026636,
-          "end": 3029401,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0927",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "la plus belle écriture votre femme ou vous ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0927"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1775",
-          "begin": 3029401,
-          "end": 3031948,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0928",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ça euh évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0928"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1776",
-          "begin": 3029401,
-          "end": 3031948,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0928",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "j'introduis la brouille là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0928"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1777",
-          "begin": 3031948,
-          "end": 3033678,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0929",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est moi évidemment mais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0929"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1778",
-          "begin": 3033678,
-          "end": 3034242,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0930",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est vous"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0930"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1779",
-          "begin": 3034242,
-          "end": 3036244,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0931",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui mais ma femme n'écrit pas mal tout de même oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0931"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1780",
-          "begin": 3036244,
-          "end": 3039316,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0932",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et au point de vue orthographe euh bon français ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0932"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1781",
-          "begin": 3039316,
-          "end": 3040677,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0933",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah c'est ma femme est meilleure"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0933"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1782",
-          "begin": 3040677,
-          "end": 3043379,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0934",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "au point de vue orthographe c'est votre femme ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0934"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1783",
-          "begin": 3040677,
-          "end": 3043379,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0934",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui elle relève ah oui elle corrige mes lettres"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0934"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1784",
-          "begin": 3043379,
-          "end": 3043690,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0935",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0935"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1785",
-          "begin": 3044293,
-          "end": 3045207,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0936",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et au point de vue"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0936"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1786",
-          "begin": 3045207,
-          "end": 3046665,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0936",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "correction du français ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0936"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1787",
-          "begin": 3046665,
-          "end": 3047384,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0937",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui aussi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0937"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1788",
-          "begin": 3047384,
-          "end": 3048026,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0938",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0938"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1789",
-          "begin": 3048026,
-          "end": 3048629,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0939",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "aussi oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0939"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1790",
-          "begin": 3048629,
-          "end": 3050612,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0940",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh même même euh dans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0940"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1791",
-          "begin": 3050612,
-          "end": 3051740,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0940",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oral même quand on parle ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0940"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1792",
-          "begin": 3051740,
-          "end": 3053062,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0941",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui oui oui oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0941"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1793",
-          "begin": 3051740,
-          "end": 3053062,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0941",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0941"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1794",
-          "begin": 3053062,
-          "end": 3053490,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0942",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0942"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1795",
-          "begin": 3056562,
-          "end": 3056776,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0943",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0943"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1796",
-          "begin": 3056776,
-          "end": 3059167,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0944",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour une bonne chose elle est restée toujours avec ses parents"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0944"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1797",
-          "begin": 3059731,
-          "end": 3060159,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0945",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0945"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1798",
-          "begin": 3060159,
-          "end": 3062628,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0946",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qui ont été dans le commerce et ils ont euh un niveau"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0946"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1799",
-          "begin": 3062628,
-          "end": 3063619,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0946",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh moyen"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0946"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1800",
-          "begin": 3063619,
-          "end": 3064300,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0947",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0947"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1801",
-          "begin": 3064300,
-          "end": 3065661,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0948",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "d'ins- euh d'instruction"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0948"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1802",
-          "begin": 3065661,
-          "end": 3066089,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0949",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0949"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1803",
-          "begin": 3066089,
-          "end": 3070385,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0950",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et alors elle s'exprime mieux que moi qui ai été en usine et dans le bâtiment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0950"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1804",
-          "begin": 3070385,
-          "end": 3071027,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0951",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0951"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1805",
-          "begin": 3071027,
-          "end": 3071591,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0952",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "vous comprenez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0952"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1806",
-          "begin": 3071591,
-          "end": 3072116,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0953",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0953"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1807",
-          "begin": 3073982,
-          "end": 3077073,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0954",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "en moyenne combien de lettres vous écrivez par mois ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0954"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1808",
-          "begin": 3078084,
-          "end": 3080436,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0955",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh par mois c'est plutôt à la fin de l'année"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0955"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1809",
-          "begin": 3080436,
-          "end": 3083527,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0955",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh y a tout de suite une dizaine de lettre au premier de l'an"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0955"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1810",
-          "begin": 3083527,
-          "end": 3083897,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0956",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0956"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1811",
-          "begin": 3083897,
-          "end": 3085627,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0957",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et dans euh au cours de l'année"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0957"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1812",
-          "begin": 3087552,
-          "end": 3091226,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0957",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm peut-être euh trois trois lettres par mois euh moyenne euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0957"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1813",
-          "begin": 3091226,
-          "end": 3098458,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0958",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pour le travail quoi ou en général non des lettres personnelles ? personnelles tr- trois par mois"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0958"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1814",
-          "begin": 3091226,
-          "end": 3098458,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0958",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ah pour le travail non ah oui oui oui ben lettres de la maison oui oui person- oui oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0958"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1815",
-          "begin": 3099780,
-          "end": 3101160,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0959",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et pour le travail là beaucoup plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0959"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1816",
-          "begin": 3101160,
-          "end": 3104100,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0960",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ben c'est tous les jours ça n'importe euh ça c'est sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0960"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1817",
-          "begin": 3101160,
-          "end": 3104100,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0960",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0960"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1818",
-          "begin": 3104896,
-          "end": 3105306,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0961",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0961"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1819",
-          "begin": 3105306,
-          "end": 3105542,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0962",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0962"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1820",
-          "begin": 3106917,
-          "end": 3109239,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0963",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que vous gardez les lettres qu'on vous envoie ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0963"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1821",
-          "begin": 3109239,
-          "end": 3113435,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0964",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "enfin pas les lettres de travail hein les lettres d'amis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0964"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1822",
-          "begin": 3109239,
-          "end": 3113435,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0964",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui c'est manque de de place mais on les garde un an"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0964"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1823",
-          "begin": 3113435,
-          "end": 3114173,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0965",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "un an ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0965"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1824",
-          "begin": 3114173,
-          "end": 3114505,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0966",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0966"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1825",
-          "begin": 3115587,
-          "end": 3117851,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0966",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "une pour euh l'année suivante toujours"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0966"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1826",
-          "begin": 3118917,
-          "end": 3121255,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0966",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais sans ça euh dans le temps on les conservait beaucoup plus"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0966"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1827",
-          "begin": 3121255,
-          "end": 3122997,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0967",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quelles lettres les les let- les lettres"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0967"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1828",
-          "begin": 3122997,
-          "end": 3124021,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0968",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "les lettres de famille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0968"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1829",
-          "begin": 3124021,
-          "end": 3125528,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0969",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0969"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1830",
-          "begin": 3124021,
-          "end": 3125528,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0969",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on aime bien relire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0969"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1831",
-          "begin": 3125528,
-          "end": 3126053,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0970",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0970"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1832",
-          "begin": 3126053,
-          "end": 3129666,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0971",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "les lettres de famille même si il vient un autre parent nous leur lisons les lettres"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0971"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1833",
-          "begin": 3129666,
-          "end": 3130385,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0971",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui ensuite"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0971"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1834",
-          "begin": 3130385,
-          "end": 3134288,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0972",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "alors par exemple en ce moment vous en possédez approximativement combien ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0972"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1835",
-          "begin": 3135219,
-          "end": 3137657,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0973",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "enfin un chiffre global"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0973"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1836",
-          "begin": 3135219,
-          "end": 3137657,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0973",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "les deux placards les deux placards eh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0973"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1837",
-          "begin": 3137657,
-          "end": 3139457,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0974",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en sont pas plein mais presque"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0974"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1838",
-          "begin": 3139457,
-          "end": 3140539,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0974",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "y a toujours bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0974"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1839",
-          "begin": 3141524,
-          "end": 3143456,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0974",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "une cinquantaine de lettres certainement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0974"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1840",
-          "begin": 3143456,
-          "end": 3143981,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0975",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0975"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1841",
-          "begin": 3148115,
-          "end": 3148714,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0976",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0976"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1842",
-          "begin": 3148714,
-          "end": 3150572,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0976",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quand vous écrivez à"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0976"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1843",
-          "begin": 3150572,
-          "end": 3151615,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0976",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à vos amis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0976"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1844",
-          "begin": 3152195,
-          "end": 3155174,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0976",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que est-ce que vous faites un brouillon ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0976"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1845",
-          "begin": 3155174,
-          "end": 3156916,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0977",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ou vous écrivez directement ? rarement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0977"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1846",
-          "begin": 3155174,
-          "end": 3156916,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0977",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh rarement rarement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0977"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1847",
-          "begin": 3156916,
-          "end": 3158887,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0978",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "quand c'est une personne supérieure"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0978"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1848",
-          "begin": 3158887,
-          "end": 3160127,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0978",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "là je fais le brouillon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0978"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1849",
-          "begin": 3160127,
-          "end": 3163372,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0978",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh si j'écris au proviseur du lycée ou des"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0978"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1850",
-          "begin": 3163372,
-          "end": 3164435,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0978",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors là je fais un brouillon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0978"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1851",
-          "begin": 3164999,
-          "end": 3165911,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0979",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais sans quoi euh non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0979"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1852",
-          "begin": 3164999,
-          "end": 3165911,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0979",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0979"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1853",
-          "begin": 3165911,
-          "end": 3168851,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0980",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je ne je ne fais pas pour ma famille j'écris directement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0980"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1854",
-          "begin": 3170555,
-          "end": 3170965,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0980",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0980"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1855",
-          "begin": 3174040,
-          "end": 3176184,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0981",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais est-ce que vous vous re- relisez par exemple"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0981"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1856",
-          "begin": 3176184,
-          "end": 3177096,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0982",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pour l'orthographe ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0982"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1857",
-          "begin": 3176184,
-          "end": 3177096,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0982",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0982"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1858",
-          "begin": 3177096,
-          "end": 3178800,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0983",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui oui oui et puis ma femme relis derrière moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0983"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1859",
-          "begin": 3179383,
-          "end": 3179692,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0984",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0984"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1860",
-          "begin": 3180368,
-          "end": 3185623,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0984",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quand vous écrivez une lettre qu'est-ce que vous vous vous écrivez à quoi au Bic au stylo plume à quoi ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0984"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1861",
-          "begin": 3185623,
-          "end": 3187810,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0985",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est ce que vous préférez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0985"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1862",
-          "begin": 3185623,
-          "end": 3187810,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0985",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ça je j'aime mieux la"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0985"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1863",
-          "begin": 3187810,
-          "end": 3189958,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0986",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "plume quand c'est une personnalité"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0986"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1864",
-          "begin": 3189958,
-          "end": 3191391,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0987",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais sans quoi ordinaire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0987"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1865",
-          "begin": 3189958,
-          "end": 3191391,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0987",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0987"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1866",
-          "begin": 3191391,
-          "end": 3195815,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0988",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh pour la famille mes frères je prends mon mon s- mon s- pointe Bic"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0988"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1867",
-          "begin": 3195815,
-          "end": 3196379,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0989",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0989"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1868",
-          "begin": 3196379,
-          "end": 3196553,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0990",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0990"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1869",
-          "begin": 3197754,
-          "end": 3200536,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0990",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais eh vous m- pour par grande politesse je prends la plume"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0990"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1870",
-          "begin": 3201077,
-          "end": 3201660,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0991",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0991"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1871",
-          "begin": 3201660,
-          "end": 3204075,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0991",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et quel genre de papier de quel genre de papier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0991"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1872",
-          "begin": 3204075,
-          "end": 3207305,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0992",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous vous servez ? deux sortes de papiers ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0992"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1873",
-          "begin": 3204075,
-          "end": 3207305,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0992",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah j'ai deux sortes de papier évidemment j'ai du beau oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0992"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1874",
-          "begin": 3207305,
-          "end": 3208082,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0993",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0993"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1875",
-          "begin": 3208082,
-          "end": 3208511,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0994",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0994"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1876",
-          "begin": 3208511,
-          "end": 3212243,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0995",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "j'ai du papier ordinaire pour euh les frères ou n'importe un mot d'urgence"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0995"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1877",
-          "begin": 3212243,
-          "end": 3212653,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0996",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0996"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1878",
-          "begin": 3212653,
-          "end": 3214395,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0997",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh et du beau papier glacé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0997"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1879",
-          "begin": 3214395,
-          "end": 3215071,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0997",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0997"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1880",
-          "begin": 3215071,
-          "end": 3217118,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0997",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour écrire aux à une personnalité"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0997"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1881",
-          "begin": 3217118,
-          "end": 3221272,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0998",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "du pa- du papier qu'est-ce que vous pour les lettres d'amis vous prenez de famille"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0998"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1882",
-          "begin": 3221272,
-          "end": 3223362,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0999",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben le petit bloc un petit bloc"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0999"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1883",
-          "begin": 3221272,
-          "end": 3223362,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn0999",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous prenez du papier"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0999"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1884",
-          "begin": 3223362,
-          "end": 3225375,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1000",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à lignes ou blanc ou ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1000"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1885",
-          "begin": 3225375,
-          "end": 3227755,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1001",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui rayé rayé ou rayé oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1001"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1886",
-          "begin": 3225375,
-          "end": 3227755,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1001",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "rayé rayé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1001"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1887",
-          "begin": 3227755,
-          "end": 3229922,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1002",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1002"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1888",
-          "begin": 3227755,
-          "end": 3229922,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1002",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et puis alors le papier blanc uni"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1002"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1889",
-          "begin": 3229922,
-          "end": 3230444,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1003",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1003"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1890",
-          "begin": 3230444,
-          "end": 3230911,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1004",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1004"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1891",
-          "begin": 3230911,
-          "end": 3232070,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1004",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "pour euh les"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1004"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1892",
-          "begin": 3232070,
-          "end": 3233268,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1004",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "choses importantes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1004"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1893",
-          "begin": 3233268,
-          "end": 3233886,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1005",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1005"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1894",
-          "begin": 3233886,
-          "end": 3234079,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1006",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1006"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1895",
-          "begin": 3239411,
-          "end": 3240091,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1007",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et pour"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1007"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1896",
-          "begin": 3240091,
-          "end": 3244055,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1007",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "par exemple euh si vous faites un mot pour le lycée pour votre fils"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1007"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1897",
-          "begin": 3244055,
-          "end": 3245276,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1007",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous vous faites euh ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1007"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1898",
-          "begin": 3246420,
-          "end": 3247544,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1007",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous prenez quoi du papier ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1007"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1899",
-          "begin": 3247544,
-          "end": 3249437,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1008",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah toujours le papier le plus propre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1008"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1900",
-          "begin": 3249437,
-          "end": 3249727,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1009",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1009"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1901",
-          "begin": 3249727,
-          "end": 3250194,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1010",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le plus beau"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1010"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1902",
-          "begin": 3250194,
-          "end": 3250426,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1010",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1010"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1903",
-          "begin": 3250426,
-          "end": 3250561,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1011",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1011"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1904",
-          "begin": 3250561,
-          "end": 3250967,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1012",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "bien sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1012"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1905",
-          "begin": 3251643,
-          "end": 3253440,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1013",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "du bl- du du papier uni"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1013"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1906",
-          "begin": 3253440,
-          "end": 3254159,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1014",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1014"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1907",
-          "begin": 3254159,
-          "end": 3254781,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1015",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1015"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1908",
-          "begin": 3260580,
-          "end": 3264389,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1015",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh et le pap- le le papier à lignes alors donc vous le réservez pour euh ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1015"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1909",
-          "begin": 3264389,
-          "end": 3267074,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1016",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui les choses urgentes pour la famille ou"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1016"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1910",
-          "begin": 3267557,
-          "end": 3269585,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1016",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh des amis que je connais"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1016"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1911",
-          "begin": 3270165,
-          "end": 3270420,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1017",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1017"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1912",
-          "begin": 3270420,
-          "end": 3271390,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1018",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ordinaires oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1018"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1913",
-          "begin": 3279429,
-          "end": 3279970,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1019",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1019"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1914",
-          "begin": 3282501,
-          "end": 3282891,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1020",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1020"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1915",
-          "begin": 3282891,
-          "end": 3289092,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1020",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce qu'il y a des choses qui vous qui vous agacent dans la façon de parler de de votre femme par exemple ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1020"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1916",
-          "begin": 3292264,
-          "end": 3293021,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1021",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non non non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1021"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1917",
-          "begin": 3293021,
-          "end": 3293659,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1021",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1021"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1918",
-          "begin": 3295073,
-          "end": 3297472,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1022",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "non parce que des fois il arrive qu'on se reprenne en"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1022"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1919",
-          "begin": 3297472,
-          "end": 3297974,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1023",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1023"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1920",
-          "begin": 3297974,
-          "end": 3298728,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1024",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mutuellement"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1024"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1921",
-          "begin": 3298728,
-          "end": 3299157,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1025",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1025"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1922",
-          "begin": 3299157,
-          "end": 3299702,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1026",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1026"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1923",
-          "begin": 3299702,
-          "end": 3300131,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1027",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1027"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1924",
-          "begin": 3300131,
-          "end": 3301101,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1028",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "y a rien de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1028"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1925",
-          "begin": 3301101,
-          "end": 3301684,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1029",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1029"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1926",
-          "begin": 3301684,
-          "end": 3304099,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1030",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais est-ce que par exemple il vous arrive de"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1030"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1927",
-          "begin": 3305030,
-          "end": 3306131,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1030",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de la reprendre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1030"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1928",
-          "begin": 3306131,
-          "end": 3307676,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1031",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah euh simplement de la"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1031"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1929",
-          "begin": 3306131,
-          "end": 3307676,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1031",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quand elle parle ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1031"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1930",
-          "begin": 3307676,
-          "end": 3308874,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1032",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh elle a tout un"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1032"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1931",
-          "begin": 3308874,
-          "end": 3310558,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1032",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm qu'elle cause trop fort"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1032"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1932",
-          "begin": 3310558,
-          "end": 3312162,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1032",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "elle parle trop fort c'est tout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1032"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1933",
-          "begin": 3312162,
-          "end": 3313016,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1033",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1033"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1934",
-          "begin": 3313016,
-          "end": 3315241,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1034",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et c'est pour ça je la reprends sans arrêt sans arrêt"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1034"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1935",
-          "begin": 3316284,
-          "end": 3316420,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1035",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1035"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1936",
-          "begin": 3316420,
-          "end": 3316694,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1036",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1036"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1937",
-          "begin": 3316694,
-          "end": 3317718,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1036",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "elle cause trop fort"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1036"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1938",
-          "begin": 3319186,
-          "end": 3319553,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1037",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1037"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1939",
-          "begin": 3319553,
-          "end": 3321465,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1038",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah ça c'est c'est de naissance y a rien à faire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1038"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1940",
-          "begin": 3321465,
-          "end": 3321832,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1039",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1039"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1941",
-          "begin": 3324811,
-          "end": 3328041,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1040",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qui est-ce qui reprend l'autre le plus souvent vous reprenez plus souvent votre femme"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1040"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1942",
-          "begin": 3328041,
-          "end": 3330189,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1041",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui oh oui oui c'est sûrement moi plus souvent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1041"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1943",
-          "begin": 3328041,
-          "end": 3330189,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1041",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ou votre femme vous reprend plus souvent ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1041"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1944",
-          "begin": 3330189,
-          "end": 3332530,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1042",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui c'est vous le plus souvent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1042"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1945",
-          "begin": 3330189,
-          "end": 3332530,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1042",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui sans sans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1042"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1946",
-          "begin": 3332530,
-          "end": 3336683,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1043",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "sans chamailler mais j'aime pas la la je vous l'ai déjà dit j'aime pas la guerre alors"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1043"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1947",
-          "begin": 3336683,
-          "end": 3339040,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1043",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais c'est certainement moi qui la reprends le plus souvent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1043"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1948",
-          "begin": 3339040,
-          "end": 3339507,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1044",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1044"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1949",
-          "begin": 3340299,
-          "end": 3342250,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1045",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et dans la façon de parler de votre fils ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1045"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1950",
-          "begin": 3343606,
-          "end": 3345210,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1045",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce qu'y a des choses qui vous agacent ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1045"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1951",
-          "begin": 3345890,
-          "end": 3348231,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1046",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh hm non non non non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1046"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1952",
-          "begin": 3348231,
-          "end": 3350008,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1046",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "certainement pas si vous voulez mon fils"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1046"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1953",
-          "begin": 3350008,
-          "end": 3351013,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1046",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1046"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1954",
-          "begin": 3351013,
-          "end": 3353586,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1046",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "va de plus en plus être instruit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1046"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1955",
-          "begin": 3353586,
-          "end": 3353880,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1047",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1047"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1956",
-          "begin": 3353880,
-          "end": 3356202,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1048",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors c'est plutôt lui qui va pouvoir nous reprendre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1048"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1957",
-          "begin": 3357346,
-          "end": 3358760,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1049",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "alors vous vous le reprenez pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1049"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1958",
-          "begin": 3359961,
-          "end": 3361198,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1050",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm non euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1050"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1959",
-          "begin": 3361198,
-          "end": 3363365,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1051",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "c'est j'ai pas à me plaindre de sa conduite"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1051"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1960",
-          "begin": 3363365,
-          "end": 3365355,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1051",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et dans son parler"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1051"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1961",
-          "begin": 3363365,
-          "end": 3365355,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1051",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui enfin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1051"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1962",
-          "begin": 3365355,
-          "end": 3368306,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1052",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh lui même il serait outré de mal parler"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1052"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1963",
-          "begin": 3368306,
-          "end": 3368847,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1053",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1053"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1964",
-          "begin": 3377211,
-          "end": 3380101,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1053",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce qu'y a quand même des mots que vous lui interdisez de prononcer ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1053"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1965",
-          "begin": 3380997,
-          "end": 3383497,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1054",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh c'est encore pas arrivé parce que de lui-même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1054"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1966",
-          "begin": 3383497,
-          "end": 3385262,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1054",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il ne prononcerait pas"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1054"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1967",
-          "begin": 3386131,
-          "end": 3386633,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1054",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "un mot euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1054"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1968",
-          "begin": 3386633,
-          "end": 3387155,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1055",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1055"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1969",
-          "begin": 3387155,
-          "end": 3388217,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1056",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "interdit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1056"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1970",
-          "begin": 3388217,
-          "end": 3388662,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1057",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1057"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1971",
-          "begin": 3393476,
-          "end": 3395373,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1057",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais si ça lui arrivait vous le punissez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1057"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1972",
-          "begin": 3395373,
-          "end": 3396671,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1058",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ben évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1058"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1973",
-          "begin": 3396671,
-          "end": 3397077,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1059",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1059"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1974",
-          "begin": 3397077,
-          "end": 3399534,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1060",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça évidemment parce que nous avons été élevés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1060"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1975",
-          "begin": 3399534,
-          "end": 3404231,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1060",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à l'ancienne mode évidemment nos parents étaient assez durs mais c'était tout à fait juste"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1060"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1976",
-          "begin": 3405220,
-          "end": 3406132,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1061",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui vous trouvez que c'était ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1061"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1977",
-          "begin": 3406132,
-          "end": 3407952,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1062",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah moi je trouve que c'était tout à fait juste"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1062"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1978",
-          "begin": 3407952,
-          "end": 3408265,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1062",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1062"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1979",
-          "begin": 3408868,
-          "end": 3409065,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1063",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vos"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1063"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1980",
-          "begin": 3409065,
-          "end": 3412346,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1064",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et mes frères ont élevé leurs enfants comme nous avons été élevés ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1064"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1981",
-          "begin": 3412890,
-          "end": 3412971,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1065",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1065"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1982",
-          "begin": 3412971,
-          "end": 3416661,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1066",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on peut très bien causer normalement sans c'est s- mal euh s'exprimer"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1066"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1983",
-          "begin": 3416661,
-          "end": 3417399,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1067",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1067"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1984",
-          "begin": 3417399,
-          "end": 3420049,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1068",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vos parents faisaient attention à la façon dont vous parliez ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1068"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1985",
-          "begin": 3420049,
-          "end": 3420706,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1069",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1069"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1986",
-          "begin": 3420706,
-          "end": 3422699,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1069",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui oui oui oui oui parce que eux-mêmes"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1069"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1987",
-          "begin": 3423704,
-          "end": 3425485,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1069",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "n'auraient pas mal parlé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1069"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1988",
-          "begin": 3426532,
-          "end": 3428583,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1069",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm hm tout en n'étant pas instruits"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1069"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1989",
-          "begin": 3428583,
-          "end": 3428989,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1070",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1070"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1990",
-          "begin": 3428989,
-          "end": 3429881,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1071",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais tout de même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1071"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1991",
-          "begin": 3431871,
-          "end": 3434343,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1072",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça jam- jamais on a eu un mauvais langage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1072"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1992",
-          "begin": 3431871,
-          "end": 3434343,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1072",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1072"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1993",
-          "begin": 3434343,
-          "end": 3434788,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1073",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1073"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1994",
-          "begin": 3434788,
-          "end": 3436067,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1074",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ils n'auraient pas toléré"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1074"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1995",
-          "begin": 3436067,
-          "end": 3436959,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1074",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "à tous points de vue"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1074"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1996",
-          "begin": 3437983,
-          "end": 3439571,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1075",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qui est-ce qui vous reprenait le plus souvent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1075"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1997",
-          "begin": 3439571,
-          "end": 3441120,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1075",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "votre père ou votre mère ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1075"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1998",
-          "begin": 3441120,
-          "end": 3442936,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1076",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh c'est la mère ah c'est maman ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1076"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a1999",
-          "begin": 3442936,
-          "end": 3443365,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1077",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1077"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2000",
-          "begin": 3443365,
-          "end": 3443846,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1078",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1078"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2001",
-          "begin": 3444744,
-          "end": 3447255,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1079",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pour quel genre de choses surtout elle vous reprenait ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1079"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2002",
-          "begin": 3450133,
-          "end": 3450597,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1080",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça vous savez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1080"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2003",
-          "begin": 3451447,
-          "end": 3452088,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1080",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "elle avait p-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1080"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2004",
-          "begin": 3452088,
-          "end": 3454290,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1080",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "elle nous a tellement bien élevés petits"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1080"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2005",
-          "begin": 3454290,
-          "end": 3455797,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1080",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh que même étant grands"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1080"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2006",
-          "begin": 3456434,
-          "end": 3458601,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1080",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "elle n'avait pas euh beaucoup à nous reprendre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1080"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2007",
-          "begin": 3458601,
-          "end": 3458852,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1081",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1081"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2008",
-          "begin": 3458852,
-          "end": 3461715,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1082",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce qu'on savait d'avance euh ce qui lui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1082"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2009",
-          "begin": 3458852,
-          "end": 3461715,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1082",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "plaisait et déplaisait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1082"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2010",
-          "begin": 3462237,
-          "end": 3462666,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1082",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1082"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2011",
-          "begin": 3463404,
-          "end": 3463582,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1082",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1082"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2012",
-          "begin": 3463582,
-          "end": 3465749,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1083",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "enfin je veux dire pour le langage c'était"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1083"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2013",
-          "begin": 3466889,
-          "end": 3470041,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1084",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh pour le langage non elle n'aurait pas eu à nous reprendre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1084"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2014",
-          "begin": 3470041,
-          "end": 3471548,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1084",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce que je vous dis"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1084"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2015",
-          "begin": 3471548,
-          "end": 3473325,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1084",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "elle n'aurait pu nous prendre que les choses"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1084"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2016",
-          "begin": 3474156,
-          "end": 3478004,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1084",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh des mots outrageants et jamais on en a prononcé"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1084"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2017",
-          "begin": 3478004,
-          "end": 3478433,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1085",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1085"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2018",
-          "begin": 3478433,
-          "end": 3478958,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1086",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de vilaines choses"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1086"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2019",
-          "begin": 3479692,
-          "end": 3480059,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1087",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1087"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2020",
-          "begin": 3481779,
-          "end": 3482111,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1087",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1087"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2021",
-          "begin": 3485569,
-          "end": 3488335,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1087",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "euh je vais regarder où on en est sur euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1087"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2022",
-          "begin": 3488335,
-          "end": 3490069,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1088",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "on va poser ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1088"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2023",
-          "begin": 3490069,
-          "end": 3493744,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1088",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "si un étranger voulait venir en France pour apprendre le français ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1088"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2024",
-          "begin": 3493744,
-          "end": 3494424,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1089",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1089"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2025",
-          "begin": 3494424,
-          "end": 3496978,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1090",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "dans quelle région est-ce qu'il doit euh vous v-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1090"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2026",
-          "begin": 3496978,
-          "end": 3498276,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1090",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "vous lui conseilleriez d'aller ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1090"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2027",
-          "begin": 3498276,
-          "end": 3500353,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1091",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "où il devrait aller d'après vous ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1091"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2028",
-          "begin": 3498276,
-          "end": 3500353,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1091",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah pour le meilleur langage"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1091"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2029",
-          "begin": 3500353,
-          "end": 3500797,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1092",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1092"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2030",
-          "begin": 3500797,
-          "end": 3502575,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1093",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je crois que ça doit être la ville de Lyon"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1093"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2031",
-          "begin": 3503139,
-          "end": 3503800,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1094",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de Lyon ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1094"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2032",
-          "begin": 3503800,
-          "end": 3507030,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1095",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je crois que c'est Lyon qui cause le mieux le français sans accent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1095"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2033",
-          "begin": 3503800,
-          "end": 3507030,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1095",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1095"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2034",
-          "begin": 3507787,
-          "end": 3508579,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1096",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "sans accent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1096"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2035",
-          "begin": 3508579,
-          "end": 3508850,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1097",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1097"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2036",
-          "begin": 3509530,
-          "end": 3511581,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1098",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et est-ce qu'y a des endroits qu'il devrait"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1098"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2037",
-          "begin": 3512161,
-          "end": 3512918,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1098",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "éviter ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1098"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2038",
-          "begin": 3514966,
-          "end": 3515839,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1099",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1099"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2039",
-          "begin": 3515839,
-          "end": 3517790,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1099",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le Midi euh le Midi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1099"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2040",
-          "begin": 3518312,
-          "end": 3522353,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1099",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "où on a du mal nous-mêmes Français à les comprendre le Midi ou la Bretagne évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1099"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2041",
-          "begin": 3522353,
-          "end": 3523149,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1100",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1100"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2042",
-          "begin": 3523149,
-          "end": 3524447,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1100",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à cause de quoi ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1100"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2043",
-          "begin": 3524447,
-          "end": 3525645,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1101",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ben de leur accent"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1101"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2044",
-          "begin": 3525645,
-          "end": 3526093,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1102",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1102"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2045",
-          "begin": 3527098,
-          "end": 3530502,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1103",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qui rend presque le français hein inintelligible"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1103"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2046",
-          "begin": 3530502,
-          "end": 3530892,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1104",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1104"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2047",
-          "begin": 3531549,
-          "end": 3535378,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1104",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et pour bien apprendre le français quel genre de gens est-ce qu'il doit fréquenter ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1104"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2048",
-          "begin": 3536483,
-          "end": 3537530,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1105",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh évidemment tous les"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1105"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2049",
-          "begin": 3537530,
-          "end": 3538055,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1106",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pourquoi ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1106"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2050",
-          "begin": 3538055,
-          "end": 3540045,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1107",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "tous les le corps enseignant d'abord"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1107"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2051",
-          "begin": 3540532,
-          "end": 3540729,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1108",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1108"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2052",
-          "begin": 3540729,
-          "end": 3541579,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1109",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1109"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2053",
-          "begin": 3541579,
-          "end": 3542626,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1109",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh les"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1109"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2054",
-          "begin": 3543364,
-          "end": 3546710,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1109",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "les av- oui les avocats les professions libérales quoi les docteurs"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1109"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2055",
-          "begin": 3546710,
-          "end": 3547324,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1110",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1110"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2056",
-          "begin": 3546710,
-          "end": 3547324,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1110",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1110"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2057",
-          "begin": 3548835,
-          "end": 3549418,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1111",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pourquoi ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1111"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2058",
-          "begin": 3549418,
-          "end": 3552393,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1112",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh bien et tous ces gens s'expriment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1112"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2059",
-          "begin": 3552393,
-          "end": 3554557,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1112",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "dans le grand français forcément"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1112"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2060",
-          "begin": 3554557,
-          "end": 3555237,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1113",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1113"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2061",
-          "begin": 3555994,
-          "end": 3559150,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1113",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et est-ce qu'y a des gens qu'il devrait éviter de fréquenter au contraire ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1113"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2062",
-          "begin": 3561055,
-          "end": 3561383,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1114",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1114"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2063",
-          "begin": 3562060,
-          "end": 3562856,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1114",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça va de soit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1114"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2064",
-          "begin": 3563381,
-          "end": 3563536,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1115",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1115"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2065",
-          "begin": 3563536,
-          "end": 3564892,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1116",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça ça va de soi évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1116"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2066",
-          "begin": 3566070,
-          "end": 3566901,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1116",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est sûr"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1116"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2067",
-          "begin": 3566901,
-          "end": 3567465,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1117",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1117"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2068",
-          "begin": 3568102,
-          "end": 3569223,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1117",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "quels par exemple"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1117"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2069",
-          "begin": 3569223,
-          "end": 3570482,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1118",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ben c'est"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1118"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2070",
-          "begin": 3570482,
-          "end": 3575080,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1118",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh moi je ne voudrais pas aller me promener dans les bars ou les trucs comme ça euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1118"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2071",
-          "begin": 3575080,
-          "end": 3575702,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1119",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1119"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2072",
-          "begin": 3575702,
-          "end": 3576324,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1120",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1120"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2073",
-          "begin": 3576324,
-          "end": 3578279,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1120",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "des endroits tout à fait déplacés quoi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1120"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2074",
-          "begin": 3578746,
-          "end": 3579847,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1120",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "qui s'expriment euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1120"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2075",
-          "begin": 3580524,
-          "end": 3582440,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1120",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en mauvais très mauvais français"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1120"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2076",
-          "begin": 3583213,
-          "end": 3583545,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1121",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1121"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2077",
-          "begin": 3583545,
-          "end": 3584897,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1122",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "non non ça ces choses-là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1122"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2078",
-          "begin": 3585844,
-          "end": 3586833,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1122",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "je les évite moi"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1122"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2079",
-          "begin": 3586833,
-          "end": 3587416,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1123",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1123"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2080",
-          "begin": 3588324,
-          "end": 3593034,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1123",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et quels s- d'après vous quelles sont les difficultés de la langue française pour un étranger ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1123"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2081",
-          "begin": 3594505,
-          "end": 3594969,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1123",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "surtout"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1123"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2082",
-          "begin": 3596186,
-          "end": 3596769,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1124",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2083",
-          "begin": 3598469,
-          "end": 3600072,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1124",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh nos mots"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2084",
-          "begin": 3600072,
-          "end": 3601695,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1124",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "nos mots stupides"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2085",
-          "begin": 3601695,
-          "end": 3603047,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1124",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "comme euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2086",
-          "begin": 3603047,
-          "end": 3605288,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1124",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh avec des"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2087",
-          "begin": 3605288,
-          "end": 3607958,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1124",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "des homonymes du diable le mot ver"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2088",
-          "begin": 3607958,
-          "end": 3608252,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1125",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1125"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2089",
-          "begin": 3608252,
-          "end": 3608816,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1126",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "entre autres"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1126"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2090",
-          "begin": 3609338,
-          "end": 3611119,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1127",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh qui a sept ou huit sens"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1127"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2091",
-          "begin": 3609338,
-          "end": 3611119,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1127",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1127"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2092",
-          "begin": 3611119,
-          "end": 3613248,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1128",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ver de terre verre à boire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1128"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2093",
-          "begin": 3613248,
-          "end": 3616285,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1128",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh la couleur vert le verre à vitre et"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1128"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2094",
-          "begin": 3616285,
-          "end": 3616675,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1129",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1129"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2095",
-          "begin": 3616675,
-          "end": 3617081,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1130",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1130"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2096",
-          "begin": 3617081,
-          "end": 3619847,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1130",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "alors voilà des choses idiotes que je trouve pour un étranger"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1130"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2097",
-          "begin": 3619847,
-          "end": 3621605,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1130",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le même mot signifie"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1130"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2098",
-          "begin": 3621605,
-          "end": 3624178,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1130",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "en en rajoutant un S ou un T"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1130"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2099",
-          "begin": 3624178,
-          "end": 3626013,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1131",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ou un R ou un E"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1131"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2100",
-          "begin": 3624178,
-          "end": 3626013,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1131",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1131"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2101",
-          "begin": 3626013,
-          "end": 3628467,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1132",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on on on transforme le même mot"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1132"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2102",
-          "begin": 3628467,
-          "end": 3629958,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1133",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "avec la même prononciation"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1133"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2103",
-          "begin": 3628467,
-          "end": 3629958,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1133",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1133"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2104",
-          "begin": 3629958,
-          "end": 3630982,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1134",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est stupide"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1134"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2105",
-          "begin": 3630982,
-          "end": 3631392,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1135",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1135"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2106",
-          "begin": 3631392,
-          "end": 3631647,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1136",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1136"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2107",
-          "begin": 3632559,
-          "end": 3635248,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1136",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "comme pend et euh beaucoup de mot en euh dans le français"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1136"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2108",
-          "begin": 3636546,
-          "end": 3638072,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1137",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce qu'on parle bien à Orléans ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1137"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2109",
-          "begin": 3638787,
-          "end": 3639486,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1137",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "d'après vous ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1137"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2110",
-          "begin": 3639486,
-          "end": 3641577,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1138",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh oui tout de même"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1138"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2111",
-          "begin": 3641577,
-          "end": 3643261,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1138",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il y a un petit brin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1138"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2112",
-          "begin": 3643261,
-          "end": 3648168,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1138",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de de solognot comme moi je l'ai le pays de Blois et la le Loire-et-Cher le Centre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1138"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2113",
-          "begin": 3648168,
-          "end": 3648423,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1139",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1139"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2114",
-          "begin": 3648423,
-          "end": 3649798,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1140",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on on cause ben"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1140"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2115",
-          "begin": 3649798,
-          "end": 3650339,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1140",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "comme on dit"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1140"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2116",
-          "begin": 3650339,
-          "end": 3650745,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1141",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1141"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2117",
-          "begin": 3650745,
-          "end": 3651715,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1142",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "on parle le ben"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1142"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2118",
-          "begin": 3651715,
-          "end": 3652047,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1143",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1143"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2119",
-          "begin": 3652047,
-          "end": 3655756,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1144",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "parce qu'au lieu de dire bien on dit ben et moi ça me c'est sans arrêt"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1144"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2120",
-          "begin": 3655756,
-          "end": 3657112,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1145",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "et on reconnaît"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1145"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2121",
-          "begin": 3655756,
-          "end": 3657112,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1145",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1145"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2122",
-          "begin": 3657112,
-          "end": 3658004,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1146",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "le centre"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1146"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2123",
-          "begin": 3658004,
-          "end": 3659592,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1146",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de la France par rapport à ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1146"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2124",
-          "begin": 3659592,
-          "end": 3660253,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1147",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ah bon ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1147"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2125",
-          "begin": 3660253,
-          "end": 3660566,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1148",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1148"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2126",
-          "begin": 3661033,
-          "end": 3663892,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1149",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui on est du pa- du pays qu'on parle le ben"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1149"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2127",
-          "begin": 3661033,
-          "end": 3663892,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1149",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1149"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2128",
-          "begin": 3665090,
-          "end": 3666968,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1150",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce qu'y a des gens qui parlent pas bien ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1150"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2129",
-          "begin": 3667976,
-          "end": 3668575,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1150",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à Orléans ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1150"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2130",
-          "begin": 3669580,
-          "end": 3670914,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1151",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh de moins en moins"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1151"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2131",
-          "begin": 3670914,
-          "end": 3672112,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1152",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de moins en moins"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1152"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2132",
-          "begin": 3670914,
-          "end": 3672112,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1152",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "de moins en moins"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1152"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2133",
-          "begin": 3672112,
-          "end": 3673024,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1153",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1153"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2134",
-          "begin": 3673024,
-          "end": 3673472,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1154",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1154"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2135",
-          "begin": 3673472,
-          "end": 3674766,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1155",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh oui tous les gens"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1155"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2136",
-          "begin": 3675578,
-          "end": 3676316,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1155",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "même les"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1155"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2137",
-          "begin": 3676316,
-          "end": 3677556,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1155",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "même les ouvriers"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1155"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2138",
-          "begin": 3678271,
-          "end": 3682215,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1155",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh s'expriment en en vraiment français sans argot"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1155"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2139",
-          "begin": 3682853,
-          "end": 3683185,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1156",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1156"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2140",
-          "begin": 3684982,
-          "end": 3687806,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1157",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "est-ce que à votre avis le français c'est une langue difficile ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1157"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2141",
-          "begin": 3688540,
-          "end": 3689912,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1158",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oh euh nous sommes nés"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1158"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2142",
-          "begin": 3689912,
-          "end": 3690534,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1158",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh non"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1158"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2143",
-          "begin": 3690534,
-          "end": 3691504,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1159",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "pour un étranger"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1159"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2144",
-          "begin": 3691504,
-          "end": 3694079,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1160",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah pour un étranger il paraît il paraît"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1160"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2145",
-          "begin": 3694721,
-          "end": 3695030,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1161",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1161"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2146",
-          "begin": 3695030,
-          "end": 3696614,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1162",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "que le français est assez difficile"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1162"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2147",
-          "begin": 3696614,
-          "end": 3699222,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1162",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "certainement pour ces choses-là déjà"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1162"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2148",
-          "begin": 3699222,
-          "end": 3701930,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1162",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh ce ces nombreux sens"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1162"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2149",
-          "begin": 3701930,
-          "end": 3702838,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1162",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1162"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2150",
-          "begin": 3702838,
-          "end": 3703128,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1163",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1163"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2151",
-          "begin": 3705102,
-          "end": 3707478,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "si quelqu'un était de passage à"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2152",
-          "begin": 3707478,
-          "end": 3708425,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "à Orléans"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2153",
-          "begin": 3708425,
-          "end": 3710071,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et vous demandait ce qui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2154",
-          "begin": 3711253,
-          "end": 3713185,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "ce qu'il pouvait faire pendant son séjour"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2155",
-          "begin": 3713730,
-          "end": 3714989,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que vous lui conseillez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2156",
-          "begin": 3715685,
-          "end": 3716191,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1164",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "de faire ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2157",
-          "begin": 3716693,
-          "end": 3719668,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1165",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah nos châteaux de la Loire évidemment puisque ça c'est ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1165"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2158",
-          "begin": 3720305,
-          "end": 3724478,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1165",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "euh les les les les beautés des sites euh aux alentours"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1165"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2159",
-          "begin": 3724478,
-          "end": 3724733,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1166",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "hm hm"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1166"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2160",
-          "begin": 3724733,
-          "end": 3729004,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1167",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "la forêt d'Orléans le Loiret la Loire les bords de la Loire"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1167"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2161",
-          "begin": 3729004,
-          "end": 3731249,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1168",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment puis alors nos musées"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1168"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2162",
-          "begin": 3729004,
-          "end": 3731249,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1168",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1168"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2163",
-          "begin": 3731249,
-          "end": 3732528,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1169",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment nos églises"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1169"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2164",
-          "begin": 3732528,
-          "end": 3733053,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1170",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1170"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2165",
-          "begin": 3733749,
-          "end": 3735066,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1171",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "l'archéologie tout ça vous savez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1171"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2166",
-          "begin": 3736245,
-          "end": 3736635,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1172",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1172"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2167",
-          "begin": 3736635,
-          "end": 3737833,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1173",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ah c'est un beau coin"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1173"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2168",
-          "begin": 3737833,
-          "end": 3738281,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1174",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1174"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2169",
-          "begin": 3740039,
-          "end": 3740352,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1175",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "là"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1175"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2170",
-          "begin": 3740352,
-          "end": 3744045,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1175",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est un petit peu différent on imagi- imaginez que quelqu'un frappe à la porte"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1175"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2171",
-          "begin": 3744045,
-          "end": 3744393,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1176",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1176"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2172",
-          "begin": 3744393,
-          "end": 3745247,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1177",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que vous lui dites ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1177"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2173",
-          "begin": 3746062,
-          "end": 3746526,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1178",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "entrez"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1178"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2174",
-          "begin": 3747360,
-          "end": 3747708,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1178",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "évidemment"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1178"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2175",
-          "begin": 3748481,
-          "end": 3751885,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1179",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "et si vous voulez l'inviter euh à prendre quelque chose à la maison ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1179"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2176",
-          "begin": 3751885,
-          "end": 3752990,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1179",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que vous lui dites ?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1179"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2177",
-          "begin": 3754230,
-          "end": 3757301,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1180",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "comment euh c'est c'est la moindre des choses aussi ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1180"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2178",
-          "begin": 3757301,
-          "end": 3760545,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1180",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ça c'est un peu le Solognot le Solognot lui il offre toujours"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1180"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2179",
-          "begin": 3760545,
-          "end": 3763077,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1181",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "mais quelle phrase vous lui dites pour lui dire?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1181"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2180",
-          "begin": 3760545,
-          "end": 3763077,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1181",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "mais au fond il il cache bien vite"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1181"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2181",
-          "begin": 3763869,
-          "end": 3765383,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1183",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "il cache bien vite euh ce qu'y a sur la table"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1183"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2182",
-          "begin": 3765383,
-          "end": 3766156,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1184",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "c'est pas gentil ça"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1184"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2183",
-          "begin": 3766156,
-          "end": 3767083,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1185",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui oui oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1185"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2184",
-          "begin": 3767083,
-          "end": 3768802,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1186",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "qu'est-ce que vous lui dites euh"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1186"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2185",
-          "begin": 3768802,
-          "end": 3770302,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1186",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "comme phrase d'invitation?"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1186"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2186",
-          "begin": 3770302,
-          "end": 3771255,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1186",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "enfin co-"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1186"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2187",
-          "begin": 3771255,
-          "end": 3772859,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1187",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "ben je vous offre quelque chose"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1187"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2188",
-          "begin": 3771255,
-          "end": 3772859,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1187",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "n'importe"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1187"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2189",
-          "begin": 3772859,
-          "end": 3773206,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1188",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1188"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2190",
-          "begin": 3773206,
-          "end": 3773515,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1189",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
-              },
-              "content": "oui"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1189"
-          }
-        },
-        {
-          "id": "11280.100/crdo-ESLO1_ENT_047_a2191",
-          "begin": 3775640,
-          "end": 3776123,
-          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
-          "type": "11280.100/crdo-ESLO1_ENT_047_trn1190",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "speaker": {
-                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
-              },
-              "content": "bien"
-            }
-          },
-          "meta": {
-            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1190"
-          }
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-CAYCHAX_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:53+00:00",
-        "dc:modified": "2016-06-01T23:47:53+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Caychax : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144792_09-CAYCHAX_22km.wav",
-          "meta": {
-            "dc:duration": 198000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Caychax : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144792.wav",
-          "meta": {
-            "dc:duration": 198000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Caychax : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144792_09-CAYCHAX_44k.mp3",
-          "meta": {
-            "dc:duration": 198000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Caychax : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a001",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme aviá que dos gojats.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3485
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a002",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pus jove diguèc a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3485,
-          "end": 7312
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a003",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« es temps que siá le mieu mèstre,",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 7312,
-          "end": 11264
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a004",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que aja argent;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 11264,
-          "end": 14168
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a005",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cau que me'n pèsca anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 14168,
-          "end": 17606
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a006",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que veja país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 17606,
-          "end": 20103
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a007",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben,",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 20103,
-          "end": 22855
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a008",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que devi aver. »",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 22855,
-          "end": 25217
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a009",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ò le mieu gojat,diguèc le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 25217,
-          "end": 29321
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a010",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma voldràs;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 29321,
-          "end": 31974
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a011",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ès un maishant, e siràs punit.",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 31974,
-          "end": 36326
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a012",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, derbic un tiroèr,",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 36326,
-          "end": 40694
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a013",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "partatgèc son ben ende fer dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 40694,
-          "end": 45104
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a014",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualque jorns aprèts, le maishant se n'anèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 45104,
-          "end": 51985
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a015",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fèrn le fièr,",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 51985,
-          "end": 55336
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a016",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "sense dire adieu a diguns.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 55336,
-          "end": 59304
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a017",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Travessèc un pauc de bosiasses,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 59304,
-          "end": 63173
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a018",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsques e de rius.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 63173,
-          "end": 66619
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a019",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualqui mèses,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 66619,
-          "end": 70099
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a020",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "deviè vendre la sia farda a una vièlha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 70099,
-          "end": 75034
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a021",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèc per estre vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 75034,
-          "end": 78723
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a022",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L'envoièren enà's camps per gardar les ases e li biòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 78723,
-          "end": 85989
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a023",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz, fec plan malerós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 85989,
-          "end": 89670
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a024",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ajec pas mèi de lèit per dermir la nèit,",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 89670,
-          "end": 94028
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a025",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni fòc per se calfar quant aviá fret.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 94028,
-          "end": 98553
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a026",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aviá qualque còp tant de talent,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 98553,
-          "end": 102754
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a027",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu'aurá plan manjat aquera fèdolh de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 102754,
-          "end": 106637
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a028",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquera fruta poirida que manjan les pòrcs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 106637,
-          "end": 111163
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a029",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mes diguns i balhava pas res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 111163,
-          "end": 115210
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a030",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Una nèit, le ventre vuèit,",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 115210,
-          "end": 119232
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a031",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishèc cáire sus una tronca,",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 119232,
-          "end": 122977
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a032",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e guèitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 122977,
-          "end": 126863
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a033",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausèls que volavan laugèrament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 126863,
-          "end": 131227
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a034",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, vic arrivar dins le cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 131227,
-          "end": 135112
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a035",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la duna e i estels.",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 135112,
-          "end": 138311
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a036",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E se diguèc en plorant :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 138311,
-          "end": 141720
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a037",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Adà, l'ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 141720,
-          "end": 144966
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a038",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 144966,
-          "end": 148004
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a039",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "que an pan e vin,",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 148004,
-          "end": 151157
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a040",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "iòus e formatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 151157,
-          "end": 154792
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a041",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que ne vòlen.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 154792,
-          "end": 158238
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a042",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Dins aquel temps, ieu mòri de talent ací.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 158238,
-          "end": 163654
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a043",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben, me vau lhevar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 163654,
-          "end": 167257
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a044",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "virè trobar le mieu paire, e i dirè :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 167257,
-          "end": 171988
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a045",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« fèi un pecat quan volguèi voi dishar;",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 171988,
-          "end": 176355
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a046",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agèi un gran tòrt",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 176355,
-          "end": 180002
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a047",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me'n puniscatz,",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 180002,
-          "end": 183365
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a048",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ac sabi plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 183365,
-          "end": 185721
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a049",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Maperèi poi mei le vòstre gojat,",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 185721,
-          "end": 189815
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a050",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "menatz-me coma le darrèr dei vòstre vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 189815,
-          "end": 194419
-        },
-        {
-          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a051",
-          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Fèi copable, mèi m'enujava luenh de vos. »",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 194419,
-          "end": 199105.306122
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-DUN_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:54+00:00",
-        "dc:modified": "2016-06-01T23:47:54+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Dun : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144793_09-DUN_22km.wav",
-          "meta": {
-            "dc:duration": 187000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Dun : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144793.wav",
-          "meta": {
-            "dc:duration": 187000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Dun : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144793_09-DUN_44k.mp3",
-          "meta": {
-            "dc:duration": 187000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Dun : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a001",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme aviá pas que dos gojats",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3503
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a002",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pus jove diguèc a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3503,
-          "end": 7654
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a003",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Es temps que siague mon mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 7654,
-          "end": 10921
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a004",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’aja argent ;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 10921,
-          "end": 13083
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a005",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cal que pesca me’n anar,",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 13083,
-          "end": 15993
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a006",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que veja país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 15993,
-          "end": 18412
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a007",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partissetz vòstre ben,",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 18412,
-          "end": 21034
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a008",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que debi aver. »",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 21034,
-          "end": 23617
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a009",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ò mon filh, diguèc le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 23617,
-          "end": 27460
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a010",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma voldràs.",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 27460,
-          "end": 29724
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a011",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Es un maishant, e siràs punit.",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 29724,
-          "end": 33126
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a012",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, durbisquèc una tireta",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 33126,
-          "end": 37006
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a013",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "partisquèc son ben, e ne fasquèc dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 37006,
-          "end": 41481
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a014",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualque jorns après, le maishant se n’anguèc del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 41481,
-          "end": 46674
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a015",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fasent le fièr,",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 46674,
-          "end": 49261
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a016",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sense dire adieu a diguns.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 49261,
-          "end": 52467
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a017",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Travetsèc fòrça bosigas,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 52467,
-          "end": 56136
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a018",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "bòsques e rivièras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 56136,
-          "end": 59337
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a019",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualqui meses",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 59337,
-          "end": 63126
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a020",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "devèc vendre sos vestits a una vielha femna.",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 63126,
-          "end": 68390
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a021",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loguèc per estre vailet",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 68390,
-          "end": 71786
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a022",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièguen dins les camps per gardar les ases e li biòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 71786,
-          "end": 79249
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a023",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz, fosquèc plan malerós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 79249,
-          "end": 82976
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a024",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèc pas mèi de lèit per durmir anèit",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 82976,
-          "end": 87022
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a025",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fòc per se calfar quan aviá fret.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 87022,
-          "end": 91213
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a026",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "T’aviá qualque còp talament talent",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 91213,
-          "end": 95413
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a027",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’auriá plan manjat aquelas fèlhas de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 95413,
-          "end": 99611
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a028",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquela fruta poirida que manjan les pòrcs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 99611,
-          "end": 104572
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a029",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mès diguns i donava pas res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 104572,
-          "end": 107993
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a030",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un soèr, le ventre voit,",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 107993,
-          "end": 111587
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a031",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishèc tombar sus una turra",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 111587,
-          "end": 115351
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a032",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e gaitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 115351,
-          "end": 119154
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a033",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausèls que volavan leugèrament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 119154,
-          "end": 123674
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a034",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E pèi, vegèc paréisher dins le cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 123674,
-          "end": 128133
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a035",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 128133,
-          "end": 131701
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a036",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguèc en plorant :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 131701,
-          "end": 134993
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a037",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "A la bàs, l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 134993,
-          "end": 138600
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a038",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets,",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 138600,
-          "end": 141237
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a039",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’an pan e vin,",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 141237,
-          "end": 143956
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a040",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "iòus e fromatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 143956,
-          "end": 147104
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a041",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que ne vòlen.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 147104,
-          "end": 150527
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a042",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Dins aquel temps, ieu mòri de talent ací.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 150527,
-          "end": 155543
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a043",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben, me vau lhevar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 155543,
-          "end": 158484
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a044",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "anirè trobar mon paire, e i dirè :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 158484,
-          "end": 162903
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a045",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« fasquègui un pecat quan voi volguègui dishar",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 162903,
-          "end": 167348
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a046",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agèi plan tòrt, e cal que me’n castiguetz,",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 167348,
-          "end": 173391
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a047",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ac sèi plan.",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 173391,
-          "end": 175710
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a048",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mes non me’n sè pas pus vòstre filh",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 175710,
-          "end": 179760
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a049",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tratatz-me coma le darnièr de vostri vailets.",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 179760,
-          "end": 184088
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a050",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Fosquèri copable,",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 184088,
-          "end": 186290
-        },
-        {
-          "id": "11280.100/crdo-09-DUN_SOUND_a051",
-          "media": "11280.100/crdo-09-DUN_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "mes m’enejava loènh de vos. »",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 186290,
-          "end": 188969.795918
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:54+00:00",
-        "dc:modified": "2016-06-01T23:47:54+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : La Bastide-de-Lordat : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144794_09-LABASTIDE-DE-LORDAT_22km.wav",
-          "meta": {
-            "dc:duration": 166000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : La Bastide-de-Lordat : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144794.wav",
-          "meta": {
-            "dc:duration": 166000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : La Bastide-de-Lordat : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144794_09-LABASTIDE-DE-LORDAT_44k.mp3",
-          "meta": {
-            "dc:duration": 166000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : La Bastide-de-Lordat : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a001",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme n’aviá que dos gojats",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3464
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a002",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pus jove diguec a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3464,
-          "end": 6887
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a003",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Es temps que siá le mieu mèstre,",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 6887,
-          "end": 10410
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a004",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’aja argent.",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 10410,
-          "end": 12893
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a005",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Cal que me’n pèsca anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 12893,
-          "end": 15781
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a006",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que veja país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 15781,
-          "end": 18271
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a007",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben,",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 18271,
-          "end": 21150
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a008",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que devi aver.",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 21150,
-          "end": 24635
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a009",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "O le mieu filh, diguèc le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 24635,
-          "end": 28555
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a010",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma vèrgas ;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 28555,
-          "end": 30648
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a011",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es un mashant, e siràs punit.",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 30648,
-          "end": 33987
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a012",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, drubisquec una tireta",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 33987,
-          "end": 37637
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a013",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatgèc son ben e ne fasquèc dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 37637,
-          "end": 41364
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a014",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualqui jorns aprèts, le mashant se n’anguec del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 41364,
-          "end": 46646
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a015",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fèr le fièr,",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 46646,
-          "end": 48885
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a016",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e san dire adieu a digun.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 48885,
-          "end": 52246
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a017",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Travetsèc un flòc de bosigas,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 52246,
-          "end": 55280
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a018",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsques e de rius.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 55280,
-          "end": 58194
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a019",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualqui mèses",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 58194,
-          "end": 61068
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a020",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "divec vendre sas fardas a una vièlha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 61068,
-          "end": 65532
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a021",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèc per estre vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 65532,
-          "end": 68779
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a022",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièren dins les camps per gardar les ases e li biòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 68779,
-          "end": 75356
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a023",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz fosquec plan malerós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 75356,
-          "end": 78475
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a024",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Avec pas pus de lieit per dremir la nèit,",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 78475,
-          "end": 82431
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a025",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fòc per se calfar quand aviá fret.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 82431,
-          "end": 85992
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a026",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aviá qualque còp talament talent,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 85992,
-          "end": 89380
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a027",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’aurá plan manjat aquelas fèlhas de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 89380,
-          "end": 93220
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a028",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquela fruta poirida que manjan les pòrcs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 93220,
-          "end": 97087
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a029",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mès diguns i donava pas ren.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 97087,
-          "end": 100447
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a030",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Una nèit, le ventre voit,",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 100447,
-          "end": 104160
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a031",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishèc tombar sus un tanc",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 104160,
-          "end": 107176
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a032",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e gaitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 107176,
-          "end": 110226
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a033",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausels que volavan laugèrament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 110226,
-          "end": 113215
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a034",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, vesec aparéister dins le cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 113215,
-          "end": 116507
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a035",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas ;",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 116507,
-          "end": 118856
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a036",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguec en plorant :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 118856,
-          "end": 121408
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a037",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ala lènh, l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 121408,
-          "end": 124815
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a038",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets.",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 124815,
-          "end": 127156
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a039",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qu’an pan e vin,",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 127156,
-          "end": 129616
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a040",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "iòus e formatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 129616,
-          "end": 132400
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a041",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que’n vòlen.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 132400,
-          "end": 134636
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a042",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aquel temps, ieu mòri de talent ací.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 134636,
-          "end": 138667
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a043",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben, me vau levar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 138667,
-          "end": 141029
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a044",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "airè trobar mon paire, e i dirè :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 141029,
-          "end": 143834
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a045",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« fasquèi un pecat quan vos [buj] volguèi dishar,",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 143834,
-          "end": 147603
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a046",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "avèi gran tòrt,",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 147603,
-          "end": 149964
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a047",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n puniscatz,",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 149964,
-          "end": 153088
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a048",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ac sai plan ;",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 153088,
-          "end": 155486
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a049",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "me cridetz pas mes vòstre gojat,",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 155486,
-          "end": 159046
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a050",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Tretatz-me coma le darrièr des [dej] vòstres vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 159046,
-          "end": 162727
-        },
-        {
-          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a051",
-          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Fosquei copable, mes me languissiá lènh de vos. »",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 162727,
-          "end": 167915.102041
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-LOUBENS_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:54+00:00",
-        "dc:modified": "2016-06-01T23:47:54+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Loubens : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144795_09-LOUBENS_22km.wav",
-          "meta": {
-            "dc:duration": 148000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Loubens : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144795.wav",
-          "meta": {
-            "dc:duration": 148000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Loubens : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144795_09-LOUBENS_44k.mp3",
-          "meta": {
-            "dc:duration": 148000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Loubens : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a001",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme aviá pas que dos [duj] filhs .",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3041
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a002",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pus joen diguec a son pair :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3041,
-          "end": 5988
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a003",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« es temps que siá ‘l mieu mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 5988,
-          "end": 8591
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a004",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’aja argent.",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 8591,
-          "end": 10529
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a005",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Cal que me’n pèsca anar,",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 10529,
-          "end": 12678
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a006",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que veja país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 12678,
-          "end": 14363
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a007",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben, e donatz-me çò que devi aver. »",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 14363,
-          "end": 18518
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a008",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "O’l mieu filh, diguèc le pair,",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 18518,
-          "end": 21661
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a009",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma vèlgas ;",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 21661,
-          "end": 23516
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a010",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ès un maishant, e siràs punit.",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 23516,
-          "end": 26828
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a011",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, destampèc una tireta,",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 26828,
-          "end": 30198
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a012",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "partatgèc le sieu ben,",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 30198,
-          "end": 32005
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a013",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e’n fasquèt dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 32005,
-          "end": 33840
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a014",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualqui jorns apèi, le maishant se’n anguec del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 33840,
-          "end": 38339
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a015",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fèr le fièr,",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 38339,
-          "end": 40392
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a016",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sense dire adieu en digun.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 40392,
-          "end": 43397
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a017",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Travessèc un flòc de bosics,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 43397,
-          "end": 45834
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a018",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsques e de rivièras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 45834,
-          "end": 48016
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a019",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualqui meses,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 48016,
-          "end": 51256
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a020",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "devec vendre la sieu farda a una vièlha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 51256,
-          "end": 55379
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a021",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loguèc per èsser vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 55379,
-          "end": 58397
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a022",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièren dins les camps ende gardar les ases e li biòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 58397,
-          "end": 63152
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a023",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz, fusquèc plan malerós ;",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 63152,
-          "end": 66417
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a024",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "avec pas mei de lieit per dremir la nèit,",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 66417,
-          "end": 70306
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a025",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fòc per se calfar quand aviá fret ;",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 70306,
-          "end": 74128
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a026",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "aviá qualque còp talament talent,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 74128,
-          "end": 77290
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a027",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’aurá plan manjat aquelas fèlhas de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 77290,
-          "end": 80743
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a028",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquela fruta poirida que manjan les pòrcs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 80743,
-          "end": 84421
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a029",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mès diguns i donava pas [pɔ] res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 84421,
-          "end": 87611
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a030",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Una nèit, le ventre voit,",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 87611,
-          "end": 90417
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a031",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishèc tombar sus una soca",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 90417,
-          "end": 92950
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a032",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e gaitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 92950,
-          "end": 95235
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a033",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausèls que volavan laugèrament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 95235,
-          "end": 98336
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a034",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Apèi, vesec paréisher dins le cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 98336,
-          "end": 101746
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a035",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas ;",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 101746,
-          "end": 104150
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a036",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguec en plorant :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 104150,
-          "end": 106893
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a037",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alà, l’ostal de mon pair",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 106893,
-          "end": 109557
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a038",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets ;",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 109557,
-          "end": 111460
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a039",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’an pan e vin,",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 111460,
-          "end": 113819
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a040",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "iòus e fromatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 113819,
-          "end": 116265
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a041",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que ne vòlen.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 116265,
-          "end": 118429
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a042",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "D’aquel temps, jo me mòri de talent ací ;",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 118429,
-          "end": 122511
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a043",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e ben, me vau levar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 122511,
-          "end": 125228
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a044",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "anirè trobar ‘l mieu pair e i dirè :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 125228,
-          "end": 128795
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a045",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« fasquègui un pecat quan vos volguègui dishar,",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 128795,
-          "end": 132490
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a046",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "avèi gran tòrt,",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 132490,
-          "end": 134249
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a047",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n puniscatz,",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 134249,
-          "end": 136302
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a048",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ac sabi plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 136302,
-          "end": 138205
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a049",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apelè pas [pɔj] mèi le vòste filh,",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 138205,
-          "end": 141027
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a050",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tretatz-me coma’l darrèr des vòsti vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 141027,
-          "end": 145000
-        },
-        {
-          "id": "11280.100/crdo-09-LOUBENS_SOUND_a051",
-          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Fusquèi copable, mès m’anejava lènh de vos. »",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 145000,
-          "end": 149472.653061
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:55+00:00",
-        "dc:modified": "2016-06-01T23:47:55+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Mérens-les-Vals : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144796_09-MERENS-LES-VALS_22km.wav",
-          "meta": {
-            "dc:duration": 165000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Mérens-les-Vals : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144796.wav",
-          "meta": {
-            "dc:duration": 165000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Mérens-les-Vals : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144796_09-MERENS-LES-VALS_44k.mp3",
-          "meta": {
-            "dc:duration": 165000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Mérens-les-Vals : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a001",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme n’avía que dos /doj/ gojats.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3421
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a002",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le mès jove diguèc a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3421,
-          "end": 6847
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a003",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« es temps que sía mon mèstre,",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 6847,
-          "end": 9686
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a004",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’age argent ;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 9686,
-          "end": 12077
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a005",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cal que pèsca me n’anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 12077,
-          "end": 14589
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a006",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que vege país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 14589,
-          "end": 16831
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a007",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatgètz vòstre ben,",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 16831,
-          "end": 19166
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a008",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que devi aver. »",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 19166,
-          "end": 22075
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a009",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "O’l mieu gojat, diguec le paire",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 22075,
-          "end": 24449
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a010",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma voldràs ;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 24449,
-          "end": 26129
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a011",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ès un maishant e siràs punit.",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 26129,
-          "end": 29149
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a012",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, durbic un tiroèr,",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 29149,
-          "end": 32429
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a013",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatgèt son ben en fèr dos parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 32429,
-          "end": 35801
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a014",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualque jorn après, le maishant se n’anèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 35801,
-          "end": 39611
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a015",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fèr le fièr,",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 39611,
-          "end": 42030
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a016",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sense dire adieu a diguns.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 42030,
-          "end": 44922
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a017",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Traversè bèl còp de landes,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 44922,
-          "end": 47532
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a018",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòscs e de rivères.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 47532,
-          "end": 49340
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a019",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualques mesis,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 49340,
-          "end": 51856
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a020",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "deviè vendre sievas fardas a una vielha femna ;",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 51856,
-          "end": 55556
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a021",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loè per èstre vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 55556,
-          "end": 58429
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a022",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L'envoièren dins les camps per gardar les ases e’ls biòus",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 58429,
-          "end": 64024
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a023",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz frec plan malerós ;",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 64024,
-          "end": 66715
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a024",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agè pas mes de lieit per dremir la nèit",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 66715,
-          "end": 69728
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a025",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fòc per se calfar quan avía fret.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 69728,
-          "end": 73312
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a026",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Avía qualque còp talament fam,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 73312,
-          "end": 76967
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a027",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’auría plan manjat aquelhas fèlhas de caulet,",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 76967,
-          "end": 82012
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a028",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquelhi fruts poiridi que mangen les pòrcs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 82012,
-          "end": 86395
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a029",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mès diguns i donava pas rès.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 86395,
-          "end": 90195
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a030",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Una nèit, le ventre voit,",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 90195,
-          "end": 94303
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a031",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishè cáire sus un tronc",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 94303,
-          "end": 98602
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a032",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e guèitava per la frinèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 98602,
-          "end": 102480
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a033",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausels que volavan laugèrament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 102480,
-          "end": 106485
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a034",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E pèi, vic paréisher dins le cel*",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 106485,
-          "end": 109311
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a035",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e les esteles.",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 109311,
-          "end": 112125
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a036",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E se diguec en plorant :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 112125,
-          "end": 115737
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a037",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Ailà, l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 115737,
-          "end": 119714
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a038",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets ;",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 119714,
-          "end": 122458
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a039",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "que tenen pan e vin,",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 122458,
-          "end": 124787
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a040",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e èus e fromatge,",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 124787,
-          "end": 126773
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a041",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que’n vòlen.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 126773,
-          "end": 129147
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a042",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aquel temps, jo mòri de fam ací.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 129147,
-          "end": 133372
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a043",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben, me vau lhevar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 133372,
-          "end": 136151
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a044",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "virè trobar mon paire e i dirè :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 136151,
-          "end": 140083
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a045",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "fègui un pecat quan volguèi vos dishar",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 140083,
-          "end": 144184
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a046",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agègui gran tòrt,",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 144184,
-          "end": 147581
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a047",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n punissetz",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 147581,
-          "end": 150989
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a048",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ac sabi plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 150989,
-          "end": 153478
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a049",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apeletz pas mes le vòstre gojat.",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 153478,
-          "end": 156947
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a050",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Tretatz-me coma’l darrèr des vòsti vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 156947,
-          "end": 161155
-        },
-        {
-          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a051",
-          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Fregui copable, mes m’anujavi luenh de vos ».",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 161155,
-          "end": 166818
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-MONTSEGUR_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:55+00:00",
-        "dc:modified": "2016-06-01T23:47:55+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Montségur : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144797_09-MONTSEGUR_22km.wav",
-          "meta": {
-            "dc:duration": 170000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Montségur : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144797.wav",
-          "meta": {
-            "dc:duration": 170000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Montségur : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144797_09-MONTSEGUR_44k.mp3",
-          "meta": {
-            "dc:duration": 170000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Montségur : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a001",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme aviá que dos gojats.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 2937
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a002",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pus jove diguec a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 2937,
-          "end": 6796
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a003",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« es temps que siá le mieu mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 6796,
-          "end": 9873
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a004",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que aja argent;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 9873,
-          "end": 12982
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a005",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cal que me’n pèsca anar,",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 12982,
-          "end": 15887
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a006",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que veja país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 15887,
-          "end": 18485
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a007",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben,",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 18485,
-          "end": 20963
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a008",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que divi aver.",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 20963,
-          "end": 24077
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a009",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "O le mieu gojat, diguèc le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 24077,
-          "end": 27489
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a010",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma voldràs ;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 27489,
-          "end": 29814
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a011",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es un maishant, e siràs punit.",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 29814,
-          "end": 33114
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a012",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, durbisquèc una tireta,",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 33114,
-          "end": 36885
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a013",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "partatgèc le sieu ben, e ne fasquèc dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 36885,
-          "end": 41894
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a014",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualqui jorns aprèts, le maishant se’n anèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 41894,
-          "end": 46895
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a015",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fasent le fier,",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 46895,
-          "end": 49772
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a016",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sense dire adieu a deguns.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 49772,
-          "end": 52980
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a017",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Travetsèc un pauc de bosigas,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 52980,
-          "end": 56121
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a018",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsques e de rivièras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 56121,
-          "end": 59631
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a019",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualqui meses,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 59631,
-          "end": 62964
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a020",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "divec vendre la sieva farda a una vielha femnae",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 62964,
-          "end": 67308
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a021",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se loè per estre vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 67308,
-          "end": 70529
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a022",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièren dins les camps per gardar les ases e li biòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 70529,
-          "end": 76618
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a023",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz, fosquèc plan malurós;",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 76618,
-          "end": 80191
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a024",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agè pas pus de lèit per durmir anèit",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 80191,
-          "end": 83779
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a025",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni cap de fòc per se calfar quand aviá fret.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 83779,
-          "end": 87598
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a026",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aviá qualque còp talament talent,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 87598,
-          "end": 91291
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a027",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’aurá plan manjat aquelas felhas de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 91291,
-          "end": 94981
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a028",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aqueli fruts poiridi que manjan les pòrcs;",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 94981,
-          "end": 99539
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a029",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "mes degun i donava pas res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 99539,
-          "end": 102653
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a030",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Una nèit, le ventre voit,",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 102653,
-          "end": 105947
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a031",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishèc tombar sus un soc",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 105947,
-          "end": 108872
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a032",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e guèitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 108872,
-          "end": 112148
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a033",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausels que volavan laugèrament;",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 112148,
-          "end": 116514
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a034",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e apèi vic lúser dins le cel",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 116514,
-          "end": 120158
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a035",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e les estels",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 120158,
-          "end": 123012
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a036",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguec en plorant :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 123012,
-          "end": 125993
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a037",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ailà, l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 125993,
-          "end": 128698
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a038",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 128698,
-          "end": 130033
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a039",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "que an pan e vin,",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 130033,
-          "end": 132338
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a040",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "iòus e fromatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 132338,
-          "end": 135031
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a041",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que ne vòlen.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 135031,
-          "end": 137655
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a042",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aquel temps, jo crèbi de talent ací.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 137655,
-          "end": 141774
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a043",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben, me vau levar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 141774,
-          "end": 144775
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a044",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "airè trobar papà, e i ac dirè :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 144775,
-          "end": 148434
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a045",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« fasquèi un pecat quan vos volguèi dishar",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 148434,
-          "end": 152120
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a046",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agèi gran tòrt,",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 152120,
-          "end": 155104
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a047",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n punisquetz,",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 155104,
-          "end": 157892
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a048",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ac sai plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 157892,
-          "end": 160376
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a049",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Maperè pas mèi le vòstre gojat",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 160376,
-          "end": 164089
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a050",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tretatz-me coma le darnièr des vòstri vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 164089,
-          "end": 167905
-        },
-        {
-          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a051",
-          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Fosquèi copable, mes m’anejava luènh de vos ».",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 167905,
-          "end": 171990.204082
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-PRAYOLS_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:55+00:00",
-        "dc:modified": "2016-06-01T23:47:55+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Prayols : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144798_09-PRAYOLS_22km.wav",
-          "meta": {
-            "dc:duration": 182000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Prayols : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144798.wav",
-          "meta": {
-            "dc:duration": 182000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Prayols : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144798_09-PRAYOLS_44k.mp3",
-          "meta": {
-            "dc:duration": 182000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Prayols : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a001",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme n’aviá ren que dos gojats.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3879
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a002",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pus jove diguèc a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3879,
-          "end": 7547
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a003",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« es temps que siá’ l mieu mèstre,",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 7547,
-          "end": 10641
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a004",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’aja argent ;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 10641,
-          "end": 13181
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a005",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cal que me’n pèsca anar,",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 13181,
-          "end": 16023
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a006",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que veja país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 16023,
-          "end": 18792
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a007",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben,",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 18792,
-          "end": 21519
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a008",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que devi aver.",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 21519,
-          "end": 23804
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a009",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "O’l mieu gojat, diguèc le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 23804,
-          "end": 27182
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a010",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma voldràs;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 27182,
-          "end": 29730
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a011",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es un maishant, e siràs punit. »",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 29730,
-          "end": 33452
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a012",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e apèi, derbic una tireta",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 33452,
-          "end": 37196
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a013",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "partatgèc le sieu ben e ne’n fèc dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 37196,
-          "end": 41389
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a014",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualqui jorns aprèts, le maishant se n’anèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 41389,
-          "end": 46412
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a015",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fèr le fièr,",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 46412,
-          "end": 49293
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a016",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sense dire adiu a diguns.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 49293,
-          "end": 52453
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a017",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Travessèc un flòc de landas,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 52453,
-          "end": 55885
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a018",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsques e de rius.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 55885,
-          "end": 59007
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a019",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualqui mèses,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 59007,
-          "end": 61905
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a020",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "devèc vendre la sieu [siw] farda a una vièla femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 61905,
-          "end": 66192
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a021",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèc per éstre vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 66192,
-          "end": 69796
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a022",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièren dins les camps per gardar les ases e i biòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 69796,
-          "end": 76685
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a023",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz, fèc plan malerós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 76685,
-          "end": 80027
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a024",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "N’agèc pas mèi de lèit per dermir la nèit;",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 80027,
-          "end": 83869
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a025",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fòc per se calfar quand aviá fret.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 83869,
-          "end": 87973
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a026",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aviá qualque còp talament talent,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 87973,
-          "end": 91705
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a027",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’aurá plan manjat aquelai fèlhas de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 91705,
-          "end": 96290
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a028",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquela fruta poirida que manjan les pòrcs;",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 96290,
-          "end": 101158
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a029",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "mès diguns i donava pas ren.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 101158,
-          "end": 104869
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a030",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Una nèit, le ventre voit,",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 104869,
-          "end": 108162
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a031",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishèc tombar sus una soca",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 108162,
-          "end": 111353
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a032",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e guèitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 111353,
-          "end": 114950
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a033",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausels que volavan laugèrament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 114950,
-          "end": 118658
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a034",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, vic aparetre dins le cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 118658,
-          "end": 122477
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a035",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e i-s-estels",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 122477,
-          "end": 125542
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a036",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e s’a diguèc en plorant :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 125542,
-          "end": 129072
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a037",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alà, la maison de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 129072,
-          "end": 131931
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a038",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plena de vailets.",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 131931,
-          "end": 133903
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a039",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qu’an pan e vin,",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 133903,
-          "end": 136534
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a040",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "iòus e fromatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 136534,
-          "end": 139546
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a041",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que’n vòlen.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 139546,
-          "end": 142842
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a042",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aquel temps, ieu mòri de fam ací.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 142842,
-          "end": 147725
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a043",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben, me vau devar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 147725,
-          "end": 151152
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a044",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "airè trobar mon paire, e i dirè :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 151152,
-          "end": 155761
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a045",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« fèi un pecat quan vos volèi dishar",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 155761,
-          "end": 160557
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a046",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agèi gran tòrt,",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 160557,
-          "end": 163350
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a047",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n puniscatz,",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 163350,
-          "end": 166990
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a048",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ac sabi plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 166990,
-          "end": 169649
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a049",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apeletz pas mes le vòstre gojat,",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 169649,
-          "end": 173869
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a050",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tretatz-me coma’l darrèr dei vòstri vailets;",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 173869,
-          "end": 178322
-        },
-        {
-          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a051",
-          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "fèi copable, mès m’anujava luènh de vos. »",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 178322,
-          "end": 183431.836735
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-QUERIGUT_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:55+00:00",
-        "dc:modified": "2016-06-01T23:47:55+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Quérigut : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144799_09-QUERIGUT_22km.wav",
-          "meta": {
-            "dc:duration": 171000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Quérigut : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144799.wav",
-          "meta": {
-            "dc:duration": 171000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Quérigut : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144799_09-QUERIGUT_44k.mp3",
-          "meta": {
-            "dc:duration": 171000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Quérigut : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a001",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme avía que dos mainatges.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3880
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a002",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al pus jove diguèc a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3880,
-          "end": 7173
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a003",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« es temps que síe mon mèstre,",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 7173,
-          "end": 10608
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a004",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’age argent;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 10608,
-          "end": 13228
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a005",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cal que pusque me n’anar,",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 13228,
-          "end": 15960
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a006",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que vege país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 15960,
-          "end": 18303
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a007",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatgetz al vòstre ben,",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 18303,
-          "end": 20803
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a008",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donetz-me a çò que me reven. »",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 20803,
-          "end": 23880
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a009",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ai, al miu gojat, diguèc al paire",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 23880,
-          "end": 27742
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a010",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma volràs;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 27742,
-          "end": 30266
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a011",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es un maishant e seràs punit.",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 30266,
-          "end": 33402
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a012",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, drobic un tirador,",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 33402,
-          "end": 36609
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a013",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "partatgèc al sieu ben, e ne fèc dos parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 36609,
-          "end": 40468
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a014",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualque jorns après, al maishant partit del vilatge,",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 40468,
-          "end": 45199
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a015",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fèr al fièr,",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 45199,
-          "end": 47518
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a016",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sans dire adiu-s-a diguns.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 47518,
-          "end": 50616
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a017",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Trevessèc una colha de bosigues",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 50616,
-          "end": 53847
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a018",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsqui e de rivières.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 53847,
-          "end": 56967
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a019",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualque mes,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 56967,
-          "end": 59841
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a020",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "calguè que vendesse a sivi habits a una femna vièlha",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 59841,
-          "end": 64889
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a021",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loguèc per èsser vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 64889,
-          "end": 68355
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a022",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièn dins les camps per gardar als ases e als biòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 68355,
-          "end": 75300
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a023",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz, sièc plan malerόs;",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 75300,
-          "end": 78598
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a024",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agèc pas pus de lièit per dromir a la nèit",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 78598,
-          "end": 82811
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a025",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni fòc per se calfar quan avía fret;",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 82811,
-          "end": 86782
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a026",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "avía de alcuni còp talament fam,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 86782,
-          "end": 90248
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a027",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’auría plan manjat aquelhas fèlhas de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 90248,
-          "end": 93891
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a028",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquelha fruta poirida que manjan als pòrcs;",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 93891,
-          "end": 97772
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a029",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mès diguns li donava pas res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 97772,
-          "end": 101067
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a030",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Una nèit, al ventre voit,",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 101067,
-          "end": 103922
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a031",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishèc cáire sus una soca",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 103922,
-          "end": 107172
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a032",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e guardava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 107172,
-          "end": 109987
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a033",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "als audels que volaven laugièrament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 109987,
-          "end": 114759
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a034",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, vegèc aparéisher dins d’al cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 114759,
-          "end": 118626
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a035",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e als esteles ;",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 118626,
-          "end": 121244
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a036",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguèc en plorant :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 121244,
-          "end": 124054
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a037",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Ailà, l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 124054,
-          "end": 127658
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a038",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets.",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 127658,
-          "end": 130559
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a039",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qu’an pan e vin,",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 130559,
-          "end": 133499
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a040",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "iòus e fromatge,",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 133499,
-          "end": 135826
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a041",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que ne vòlen.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 135826,
-          "end": 137872
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a042",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Dins aquel temps, ieu me mòri de fam ací.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 137872,
-          "end": 141766
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a043",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben, me vau lhevar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 141766,
-          "end": 144203
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a044",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "airè trobar mon paire, e li dirè :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 144203,
-          "end": 147801
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a045",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« fèi un pecat quan vos volguèi dishar ;",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 147801,
-          "end": 151848
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a046",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agèi gran tòrt,",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 151848,
-          "end": 154238
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a047",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n castiguetz",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 154238,
-          "end": 157118
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a048",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "o sai plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 157118,
-          "end": 159335
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a049",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apelhetz pas pus al vòstre gojat.",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 159335,
-          "end": 162401
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a050",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Tretetz-me coma al darrèr des vòstri vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 162401,
-          "end": 166170
-        },
-        {
-          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a051",
-          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Sièi copable, mes m’anujavi liènh de vos ».",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 166170,
-          "end": 172408.163265
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-SIGUER_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:56+00:00",
-        "dc:modified": "2016-06-01T23:47:56+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Siguer : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144800_09-SIGUER_22km.wav",
-          "meta": {
-            "dc:duration": 177000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Siguer : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144800.wav",
-          "meta": {
-            "dc:duration": 177000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Siguer : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144800_09-SIGUER_44k.mp3",
-          "meta": {
-            "dc:duration": 177000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Siguer : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a001",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme n’aviá pas que doi gojats.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3223
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a002",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pus jove diguèc a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3223,
-          "end": 6920
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a003",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« es temps que siá le mieu mèstre,",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 6920,
-          "end": 10470
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a004",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’aja argent ;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 10470,
-          "end": 12868
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a005",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cal que me’n pèsca anar,",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 12868,
-          "end": 15764
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a006",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que veja país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 15764,
-          "end": 18240
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a007",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz le vòstre ben,",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 18240,
-          "end": 21163
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a008",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que devi aver.",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 21163,
-          "end": 24325
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a009",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "A le mieu gojat, diguèc le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 24325,
-          "end": 27975
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a010",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma voldràs ;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 27975,
-          "end": 30359
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a011",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es un maishant, e siràs punit.",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 30359,
-          "end": 33903
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a012",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, dorbic un tiroèr,",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 33903,
-          "end": 37149
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a013",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "patratgè le sieu ben, ne fasquè dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 37149,
-          "end": 43338
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a014",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualqui jorns après, le maishant se n’anèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 43338,
-          "end": 49275
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a015",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fèr le fièr,",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 49275,
-          "end": 51288
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a016",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sense dire adieu a digun.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 51288,
-          "end": 54789
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a017",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Travessè bèl còp de landas,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 54789,
-          "end": 58204
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a018",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsques e de rivièras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 58204,
-          "end": 61010
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a019",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualqui meses,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 61010,
-          "end": 63917
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a020",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "devèc vendre le siu fardas a una vièlha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 63917,
-          "end": 68204
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a021",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèc per èstre vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 68204,
-          "end": 71550
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a022",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièren dins les camps per gardar les ases e lei biòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 71550,
-          "end": 78047
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a023",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz, fèc plan malerós ;",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 78047,
-          "end": 81336
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a024",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agè pas mes de lheit per dermir la nèit,",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 81336,
-          "end": 85375
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a025",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni fòc per se calfar quand aviá fret.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 85375,
-          "end": 89122
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a026",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aviá qualque còp talament talent",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 89122,
-          "end": 93139
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a027",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’aurá plan manjat aquelas fèlhas de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 93139,
-          "end": 97780
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a028",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquela fruta poirida que manjan les pòrcs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 97780,
-          "end": 102041
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a029",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mès digun li donava pas ren.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 102041,
-          "end": 105203
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a030",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Una nèt le ventre voit,",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 105203,
-          "end": 108266
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a031",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishèc cáire sus una soca",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 108266,
-          "end": 111258
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a032",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e gaitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 111258,
-          "end": 114216
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a033",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausèls que volavan laugèrament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 114216,
-          "end": 117876
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a034",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, vic paréisher dins le cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 117876,
-          "end": 121342
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a035",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 121342,
-          "end": 124532
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a036",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguèc en plorant :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 124532,
-          "end": 127595
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a037",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ailà la maison de mieu paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 127595,
-          "end": 130630
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a038",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plena de vailets.",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 130630,
-          "end": 132124
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a039",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’an pan e vin,",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 132124,
-          "end": 134940
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a040",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "èus e fromatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 134940,
-          "end": 137713
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a041",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que ne vòlen.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 137713,
-          "end": 140249
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a042",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aquel temps, ieu mòri de fam ací.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 140249,
-          "end": 144092
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a043",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben, me vau lhevar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 144092,
-          "end": 147268
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a044",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "irè trobar al mieu paire, e i dirè :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 147268,
-          "end": 150801
-        },
-        {
-          "id": "11280.100/crdo-09-SIGUER_SOUND_a045",
-          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« fèi un pecat quan vos volguèi dishar,",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 150801,
-          "end": 177998.367347
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:56+00:00",
-        "dc:modified": "2016-06-01T23:47:56+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Saint-Martin-d'Oydes : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144801_09-ST-MARTIN-D-OYDES_22km.wav",
-          "meta": {
-            "dc:duration": 185000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Saint-Martin-d'Oydes : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144801.wav",
-          "meta": {
-            "dc:duration": 185000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Saint-Martin-d'Oydes : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144801_09-ST-MARTIN-D-OYDES_44k.mp3",
-          "meta": {
-            "dc:duration": 185000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Saint-Martin-d'Oydes : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a001",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme aviá pas [pɔs] que dus dròlles.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3438
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a002",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pus joen diguec a son pair :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3438,
-          "end": 7369
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a003",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« es ora que siai mon mèstre,",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 7369,
-          "end": 11037
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a004",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’ájai argent;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 11037,
-          "end": 14007
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a005",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cal que pèscai me n’anar,",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 14007,
-          "end": 16779
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a006",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que véjai país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 16779,
-          "end": 18914
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a007",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben,",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 18914,
-          "end": 21995
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a008",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que devi aver.",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 21995,
-          "end": 24542
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a009",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "O mon filh, diguè le pair,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 24542,
-          "end": 27885
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a010",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma vèlgas ;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 27885,
-          "end": 29773
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a011",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ès un mashant e siràs punit. »",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 29773,
-          "end": 33854
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a012",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, durbisquec un tiroèr,",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 33854,
-          "end": 37990
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a013",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "partatgec son ben e ne fasquec dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 37990,
-          "end": 42733
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a014",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualque jorn apèi, le mashant se n’anguet del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 42733,
-          "end": 48073
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a015",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fèr le fièr,",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 48073,
-          "end": 50579
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a016",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "sanse dire adieu a diguns.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 50579,
-          "end": 54283
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a017",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Travessèc un flòc de landas,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 54283,
-          "end": 57598
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a018",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòscs e de rivièras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 57598,
-          "end": 61119
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a019",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualque mes,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 61119,
-          "end": 64441
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a020",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "devec vénder se farda a una vièlha femna,",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 64441,
-          "end": 68795
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a021",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèc per èstre vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 68795,
-          "end": 72536
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a022",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièren dins las pèças per gardar les ases e les biòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 72536,
-          "end": 78656
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a023",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz, fusquè plan malerós ;",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 78656,
-          "end": 82071
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a024",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "avè pas [pɔs] cap de lièit per drumir la nèit,",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 82071,
-          "end": 86134
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a025",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni fòc per se calfar quand aviá fret ;",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 86134,
-          "end": 90214
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a026",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "aviá qualque còp talament de talent",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 90214,
-          "end": 93903
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a027",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’auriá plan manjat aquelas fèlhas de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 93903,
-          "end": 98008
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a028",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquela fruta poirida que manjan les pòrcs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 98008,
-          "end": 102430
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a029",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mès diguns i donava pas res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 102430,
-          "end": 106149
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a030",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Una nèit, le ventre voit,",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 106149,
-          "end": 109405
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a031",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishèc tombar sus una turra,",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 109405,
-          "end": 113555
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a032",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e guèitava per la frinèsta",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 113555,
-          "end": 117434
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a033",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausels que volavan laugèrament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 117434,
-          "end": 121585
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a034",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, vesec lusir dins le cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 121585,
-          "end": 124866
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a035",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas.",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 124866,
-          "end": 127607
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a036",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E se diguec en plorant :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 127607,
-          "end": 130631
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a037",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aquí delà, l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 130631,
-          "end": 134308
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a038",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets ;",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 134308,
-          "end": 136376
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a039",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’an pan e vin,",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 136376,
-          "end": 139368
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a040",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "uèus e formatge,",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 139368,
-          "end": 142603
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a041",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que ne vòlen.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 142603,
-          "end": 145722
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a042",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aqueth temps, jo mòri de talent ací.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 145722,
-          "end": 150418
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a043",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben, me vau levar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 150418,
-          "end": 153241
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a044",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "anerè trobar mon paire, e li dirè :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 153241,
-          "end": 158619
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a045",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Fasquèi un pecat quan vos volguèi dishar,",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 158619,
-          "end": 163438
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a046",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "avèi plan tòrt,",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 163438,
-          "end": 165928
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a047",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n puniscatz,",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 165928,
-          "end": 169428
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a048",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ac sabi plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 169428,
-          "end": 172467
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a049",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’aperè pas mèi vòste filh.",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 172467,
-          "end": 176349
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a050",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Tretatz-me coma le darrèr des vòsti vailets ;",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 176349,
-          "end": 180700
-        },
-        {
-          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a051",
-          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "fusquèi copable, mès m’avejavai lènh de vos.»",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 180700,
-          "end": 186148.571429
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-SURBA_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:56+00:00",
-        "dc:modified": "2016-06-01T23:47:56+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Surba : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144802_09-SURBA_22km.wav",
-          "meta": {
-            "dc:duration": 159000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Surba : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144802.wav",
-          "meta": {
-            "dc:duration": 159000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Surba : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144802_09-SURBA_44k.mp3",
-          "meta": {
-            "dc:duration": 159000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Surba : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a001",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme aviá pas que dos gojats.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3487
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a002",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pus jove diguec a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3487,
-          "end": 6602
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a003",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« es ora que siá le mieu mèstre,",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 6602,
-          "end": 9548
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a004",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que aja argent ;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 9548,
-          "end": 11765
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a005",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cal que me’n pèsca anar,",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 11765,
-          "end": 14361
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a006",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que veja país .",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 14361,
-          "end": 16910
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a007",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz le vòstre ben,",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 16910,
-          "end": 19606
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a008",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "bailhatz-me çò que devi aver.",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 19606,
-          "end": 22268
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a009",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "O’l mieu enfant, diguè le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 22268,
-          "end": 25601
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a010",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma vèlgas ;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 25601,
-          "end": 27669
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a011",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ès un maishant e siràs punit. »",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 27669,
-          "end": 30514
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a012",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, destampèc un tiroèr,",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 30514,
-          "end": 33287
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a013",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "partagè le sieu ben, ne fasquè dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 33287,
-          "end": 38045
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a014",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualque jorns aprèts, le maishant se n’anèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 38045,
-          "end": 43687
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a015",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fèr le fièr,",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 43687,
-          "end": 45872
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a016",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sense dire adieu a diguns.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 45872,
-          "end": 48529
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a017",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Travessèc plan bosigas,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 48529,
-          "end": 50895
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a018",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "plan bòsques e rivièras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 50895,
-          "end": 53475
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a019",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualques mèses",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 53475,
-          "end": 56442
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a020",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "deviec vendre la siva fardas a una vièlha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 56442,
-          "end": 60810
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a021",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loguec per éstre vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 60810,
-          "end": 64042
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a022",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièren endà’s camps per gardar les ases e-i biòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 64042,
-          "end": 69663
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a023",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz, fusquè plan malurós ;",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 69663,
-          "end": 72428
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a024",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agè pas mèi de lhièt per durmir la nèit",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 72428,
-          "end": 75878
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a025",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni fòc per se calfar quand aviá fret.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 75878,
-          "end": 80315
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a026",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aviá qualque còp talament talent",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 80315,
-          "end": 83441
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a027",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "que s’aurá plan manjat aquelas fèlhas de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 83441,
-          "end": 86840
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a028",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquela fruta poirida que se manjan les pòrcs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 86840,
-          "end": 90569
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a029",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mès digun i donava pas ren.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 90569,
-          "end": 93364
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a030",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Una nèit, le ventre voit,",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 93364,
-          "end": 95919
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a031",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishèc cáire sus una soca",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 95919,
-          "end": 99169
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a032",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e gaitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 99169,
-          "end": 101857
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a033",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausels que volavan laugèrament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 101857,
-          "end": 104925
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a034",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi, vic lúser dins le cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 104925,
-          "end": 107732
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a035",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas.",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 107732,
-          "end": 110623
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a036",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E se diguec en plorant :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 110623,
-          "end": 113296
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a037",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ailà la maison de mieu pair",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 113296,
-          "end": 116228
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a038",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plena de vailets ;",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 116228,
-          "end": 118728
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a039",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’an pan e vin,",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 118728,
-          "end": 120908
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a040",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "iòus e fromatge,",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 120908,
-          "end": 122828
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a041",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que ne vòlen.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 122828,
-          "end": 124830
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a042",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aquel temps, ieu crèbi de talent ací.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 124830,
-          "end": 130661
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a043",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben, me vau lhevar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 130661,
-          "end": 133444
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a044",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "virè trobar le mieu paire, e i dirè :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 133444,
-          "end": 138189
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a045",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Fasquèi un pecat quan vos volguèi dishar,",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 138189,
-          "end": 141357
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a046",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agèi un gran tòrt,",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 141357,
-          "end": 143668
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a047",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n puniscatz,",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 143668,
-          "end": 146851
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a048",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ac sabi plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 146851,
-          "end": 149239
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a049",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apeletz pas mèi le vòstre gojat.",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 149239,
-          "end": 152060
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a050",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Tretatz-me coma’l darrèr de vòstre vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 152060,
-          "end": 155459
-        },
-        {
-          "id": "11280.100/crdo-09-SURBA_SOUND_a051",
-          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "fusquèi copable, mès m’anujava luènh de vos. »",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 155459,
-          "end": 160548.571429
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-GRAMAZIE_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:57+00:00",
-        "dc:modified": "2016-06-01T23:47:57+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Gramazie : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144803_11-GRAMAZIE_22km.wav",
-          "meta": {
-            "dc:duration": 147000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Gramazie : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144803.wav",
-          "meta": {
-            "dc:duration": 147000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Gramazie : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144803_11-GRAMAZIE_44k.mp3",
-          "meta": {
-            "dc:duration": 147000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Gramazie : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a001",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme n’aviá que dos gojat.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3085
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a002",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pu jove diguèc a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3085,
-          "end": 6170
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a003",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“es tèmp que siás que mon mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 6170,
-          "end": 8780
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a004",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’age d’argènt.",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 8780,
-          "end": 10916
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a005",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Cal que pòsque me’n anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 10916,
-          "end": 13052
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a006",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que vege de país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 13052,
-          "end": 15117
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a007",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 15117,
-          "end": 17723
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a008",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e’s donatz-me çò que me reven.”",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 17723,
-          "end": 20756
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a009",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“Ò mon filh digà le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 20756,
-          "end": 23575
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a010",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma vodràs",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 23575,
-          "end": 24928
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a011",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es un maishant e seràs punit.?",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 24928,
-          "end": 27605
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a012",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèp druvisquèt una tiretta.",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 27605,
-          "end": 30567
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a013",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatgèt son ben e ne fasquèt dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 30567,
-          "end": 35522
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a014",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualque jorn pus tard, le maishant se’n anèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 35522,
-          "end": 40833
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a015",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fasquent le conflat",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 40833,
-          "end": 43012
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a016",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sans dire adieu a diguns.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 43012,
-          "end": 45262
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a017",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Traversèt plan de raishèsas,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 45262,
-          "end": 47725
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a018",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsques e de rivièras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 47725,
-          "end": 50046
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a019",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de quauque mes,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 50046,
-          "end": 52225
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a020",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "devèt vendre sons abits a una vielha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 52225,
-          "end": 55827
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a021",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèt per essèr vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 55827,
-          "end": 58497
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a022",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièron dins las terras per gardar les ases e li buòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 58497,
-          "end": 63955
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a023",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz fosquèt plan malurós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 63955,
-          "end": 66447
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a024",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agès pas pus de lèit per dormir la nèit,",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 66447,
-          "end": 69295
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a025",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fuòc per se calfar quand aviá freg.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 69295,
-          "end": 73566
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a026",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aviá qualque còp talament talent,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 73566,
-          "end": 76177
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a027",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’aurá plan manjat aquelas fèlha de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 76177,
-          "end": 79380
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a028",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquala fruta poirida que manjon les pòrs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 79380,
-          "end": 83177
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a029",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mè diguns li donava pa res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 83177,
-          "end": 86262
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a030",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un soèr, le ventre truda",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 86262,
-          "end": 88991
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a031",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se daishèt tombar sur un sonc",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 88991,
-          "end": 91685
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a032",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e gaitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 91685,
-          "end": 93725
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a033",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausèl que volavon laugèrament",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 93725,
-          "end": 96611
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a034",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "[apεβeʒε] qu’aparèstre din le cèu,",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 96611,
-          "end": 99842
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a035",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 99842,
-          "end": 102487
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a036",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguèc en plorant",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 102487,
-          "end": 105020
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a037",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“Avau l’ostau de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 105020,
-          "end": 108155
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a038",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailet",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 108155,
-          "end": 110447
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a039",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "que an de pan e de vin",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 110447,
-          "end": 112627
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a040",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "d’uòus e de fromatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 112627,
-          "end": 114631
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a041",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tan que ne’n volon.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 114631,
-          "end": 116436
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a042",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aquel tèmps, ieu morissi de talent aishí.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 116436,
-          "end": 121366
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a043",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben me vau levar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 121366,
-          "end": 123771
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a044",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "anirè trobar mon paire e li dirè:",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 123771,
-          "end": 128269
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a045",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“fasquèri un pecat quand volèri vos daishar.",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 128269,
-          "end": 131532
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a046",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèri grand tòrt",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 131532,
-          "end": 133376
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a047",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cau que me’n punisquetz.",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 133376,
-          "end": 135586
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a048",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ba sabi plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 135586,
-          "end": 137590
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a049",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apèletz pas mai vòstre gojat.",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 137590,
-          "end": 140170
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a050",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Tretatz-me coma le darnièr de vòstres vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 140170,
-          "end": 143408
-        },
-        {
-          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a051",
-          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Fosquèri copable, me languissiá len de vos”.",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 143408,
-          "end": 148793
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-MOLLEVILLE_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:57+00:00",
-        "dc:modified": "2016-06-01T23:47:57+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Molleville : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144804_11-MOLLEVILLE_22km.wav",
-          "meta": {
-            "dc:duration": 173000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Molleville : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144804.wav",
-          "meta": {
-            "dc:duration": 173000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Molleville : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144804_11-MOLLEVILLE_44k.mp3",
-          "meta": {
-            "dc:duration": 173000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Molleville : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a001",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme aiá que dos filhs.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3289
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a002",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pu jove diguèt a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3289,
-          "end": 6731
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a003",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“es tèmps que siás que mon mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 6731,
-          "end": 10707
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a004",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’age d’argènt.",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 10707,
-          "end": 13564
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a005",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Cal que pòsque me’n anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 13564,
-          "end": 16180
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a006",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que vege de país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 16180,
-          "end": 18778
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a007",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 18778,
-          "end": 21463
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a008",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e’s donatz-me çò que divi aver.”",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 21463,
-          "end": 24835
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a009",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“Ò mon dròlle diguèt le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 24835,
-          "end": 28566
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a010",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma vodràs",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 28566,
-          "end": 30749
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a011",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es un maishant e seràs punit.”",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 30749,
-          "end": 34053
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a012",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E après durbisquèt una tiretta.",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 34053,
-          "end": 37687
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a013",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatgèt son ben e ne fasquèt dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 37687,
-          "end": 41631
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a014",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualque jorn aprèts, le maishant se’n anguèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 41631,
-          "end": 47208
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a015",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e en fasent le bavard",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 47208,
-          "end": 50509
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a016",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sans dire adieu a diguns.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 50509,
-          "end": 54191
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a017",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Traversèt plan de sèrras,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 54191,
-          "end": 57532
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a018",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsques e de rivièras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 57532,
-          "end": 60812
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a019",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualque mes,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 60812,
-          "end": 63574
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a020",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "divèt vendre sa farda a una vielha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 63574,
-          "end": 67913
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a021",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèt per vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 67913,
-          "end": 70942
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a022",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoian dins les camps per gardar les ases e li buòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 70942,
-          "end": 77619
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a023",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz fosquèt plan malurós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 77619,
-          "end": 81161
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a024",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèt poi mai de lèit per dormir la nèit,",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 81161,
-          "end": 84936
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a025",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fòc per se calfar quand aiá freg.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 84936,
-          "end": 88780
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a026",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aiá qualque còp talament talent,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 88780,
-          "end": 92565
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a027",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’aurá plan manjat aquelas fèlha de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 92565,
-          "end": 96370
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a028",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquela fruta poirida que manjan les pòrs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 96370,
-          "end": 100648
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a029",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mè diguns li donaa pa res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 100648,
-          "end": 104311
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a030",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un soèr, le ventre vude",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 104311,
-          "end": 107547
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a031",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se daissèt tombar sus un tronc",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 107547,
-          "end": 110721
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a032",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e regardaa per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 110721,
-          "end": 113599
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a033",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausèls que voletejan laugèrament",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 113599,
-          "end": 117572
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a034",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e apèi vegèt parèisser din le cèl,",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 117572,
-          "end": 121461
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a035",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 121461,
-          "end": 124439
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a036",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguèt en plorant",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 124439,
-          "end": 127152
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a037",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“Avals l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 127152,
-          "end": 130034
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a038",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "è plen de vailets",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 130034,
-          "end": 132816
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a039",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’an de pan e de vin",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 132816,
-          "end": 135832
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a040",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "d’uòus e de formatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 135832,
-          "end": 138662
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a041",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tan que ne vòlan.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 138662,
-          "end": 140639
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a042",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Dins aquel tèmps, iò morissi de talent aissí.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 140639,
-          "end": 144485
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a043",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben me vau levar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 144485,
-          "end": 146867
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a044",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "anirè trobar mon paire e i dirè:",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 146867,
-          "end": 150742
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a045",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“fasquèi un pecat quand volèi vos quitar.",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 150742,
-          "end": 154611
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a046",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèi grand tòrt",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 154611,
-          "end": 156987
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a047",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n punisquetz.",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 156987,
-          "end": 159796
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a048",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ba sai plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 159796,
-          "end": 161856
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a049",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apèletz poi mai vòstre filh.",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 161856,
-          "end": 165407
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a050",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Tretatz-me coma le darrièr de vòstri vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 165407,
-          "end": 169289
-        },
-        {
-          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a051",
-          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Fosquèi copable, mè m’embestiai len de vos”.",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 169289,
-          "end": 174497.959184
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-PUIVERT_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:57+00:00",
-        "dc:modified": "2016-06-01T23:47:57+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Puivert : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144805_11-PUIVERT_22km.wav",
-          "meta": {
-            "dc:duration": 155000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Puivert : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144805.wav",
-          "meta": {
-            "dc:duration": 155000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Puivert : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144805_11-PUIVERT_44k.mp3",
-          "meta": {
-            "dc:duration": 155000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Puivert : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a001",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme aviá que doj gojat.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3709
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a002",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pu jove dièc a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3709,
-          "end": 7056
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a003",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“es tèmp que siáj mon mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 7056,
-          "end": 9956
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a004",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’age argent.",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 9956,
-          "end": 12140
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a005",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Cal que pòsque me’n anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 12140,
-          "end": 14906
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a006",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que vèige país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 14906,
-          "end": 17124
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a007",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 17124,
-          "end": 19919
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a008",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que divi aver.”",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 19919,
-          "end": 23330
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a009",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“Ò mon gojat diguèt le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 23330,
-          "end": 26418
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a010",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "còma vordàs",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 26418,
-          "end": 28223
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a011",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es un mishant e seràs punit.”",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 28223,
-          "end": 31178
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a012",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E après durbisquèc una tiretta.",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 31178,
-          "end": 34474
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a013",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatgèc son ben e ne fasquèc dòs borsilhas.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 34474,
-          "end": 39423
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a014",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualque jorn aprèts, le mishant se’n anè del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 39423,
-          "end": 44368
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a015",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“en” fasquen le fièr",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 44368,
-          "end": 47251
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a016",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e “sans” dire adieus “en” diguns.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 47251,
-          "end": 50020
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a017",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Traversèc un pauc de rashissi,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 50020,
-          "end": 53265
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a018",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsques e de rivièras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 53265,
-          "end": 55608
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a019",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualque mes,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 55608,
-          "end": 58076
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a020",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "deviè vendre sa farda “en” una vielha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 58076,
-          "end": 61796
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a021",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèc per èsser vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 61796,
-          "end": 64312
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a022",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièran dins les camts per gardar les ases ei buòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 64312,
-          "end": 69997
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a023",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavè fosquèc plan malurós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 69997,
-          "end": 72888
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a024",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèc pas pus de lèit per dormir la nèit,",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 72888,
-          "end": 76043
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a025",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fòc per se calfar quand aviá fred.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 76043,
-          "end": 79997
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a026",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aviá qualque còp talament talent,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 79997,
-          "end": 82784
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a027",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’auriá plan manjat aquelha fèlha de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 82784,
-          "end": 86042
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a028",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquelha fruta poirida que manjan les pòrs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 86042,
-          "end": 90142
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a029",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mè diguns i donava pa res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 90142,
-          "end": 93022
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a030",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Una nèi, le ventre vide",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 93022,
-          "end": 95778
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a031",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishè tombar sus una soca",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 95778,
-          "end": 98515
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a032",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e gaitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 98515,
-          "end": 100918
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a033",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausèls que volavan laugièrament",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 100918,
-          "end": 104477
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a034",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "apèi vegè parèstre din le cèl,",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 104477,
-          "end": 107598
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a035",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 107598,
-          "end": 110158
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a036",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se dièc “en” plorant",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 110158,
-          "end": 112604
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a037",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“Alà l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 112604,
-          "end": 115101
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a038",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "è plen de vailets",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 115101,
-          "end": 117030
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a039",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "que an pan e vin",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 117030,
-          "end": 118749
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a040",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "d’uòus e fromatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 118749,
-          "end": 120747
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a041",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tan que’n vòlan.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 120747,
-          "end": 122539
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a042",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aquel temps, iò mòri de talent assí.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 122539,
-          "end": 127286
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a043",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben me vau lhevar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 127286,
-          "end": 129262
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a044",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "airè trobar mon paire e i dirè:",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 129262,
-          "end": 133433
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a045",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“fasquèi un pecat quand vol... volguèri vos dishar.",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 133433,
-          "end": 137450
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a046",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèri grand tòrt",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 137450,
-          "end": 139539
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a047",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n punisquetz.",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 139539,
-          "end": 141738
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a048",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ba sabi plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 141738,
-          "end": 143494
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a049",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apèletz pas pu vòstre gojat.",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 143494,
-          "end": 146376
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a050",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Tratatz-me coma lei... le darnièr di vòstri vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 146376,
-          "end": 150675
-        },
-        {
-          "id": "11280.100/crdo-11-PUIVERT_SOUND_a051",
-          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Fosquèi copable, mè me languissiá len de vos”.",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 150675,
-          "end": 156264.489796
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-RIBOUISSE_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:57+00:00",
-        "dc:modified": "2016-06-01T23:47:57+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Ribouisse : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144806_11-RIBOUISSE_22km.wav",
-          "meta": {
-            "dc:duration": 191000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Ribouisse : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144806.wav",
-          "meta": {
-            "dc:duration": 191000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Ribouisse : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144806_11-RIBOUISSE_44k.mp3",
-          "meta": {
-            "dc:duration": 191000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Ribouisse : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a001",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme aiá que dos gojats.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 4111
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a002",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pu jove dièc a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 4111,
-          "end": 8293
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a003",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“es tèmps que siás que mon mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 8293,
-          "end": 11981
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a004",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’age d’argènt.",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 11981,
-          "end": 14786
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a005",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Cal que me’n pòsque anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 14786,
-          "end": 17711
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a006",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que veja de país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 17711,
-          "end": 20768
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a007",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 20768,
-          "end": 23512
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a008",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que divi aver.”",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 23512,
-          "end": 26531
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a009",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“Ò le mieu dròlle dià le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 26531,
-          "end": 29482
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a010",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma vordràs",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 29482,
-          "end": 31473
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a011",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es un mashant e seiràs punit.”",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 31473,
-          "end": 35209
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a012",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi durbisquèc una tiretta.",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 35209,
-          "end": 38784
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a013",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatgèc son ben e ne fasquèc dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 38784,
-          "end": 44215
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a014",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualque jorn aprèts, le mashant se’n anèc del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 44215,
-          "end": 50793
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a015",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fasent le fièr",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 50793,
-          "end": 53293
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a016",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sans dire adieu a digun.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 53293,
-          "end": 56614
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a017",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Traversèc plan de sèrras,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 56614,
-          "end": 59720
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a018",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsques e de rivièras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 59720,
-          "end": 62719
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a019",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualque mes,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 62719,
-          "end": 65351
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a020",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "divèc vendre sa farda a una vielha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 65351,
-          "end": 70504
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a021",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèc per essèr vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 70504,
-          "end": 74017
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a022",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièron din les camps per gardar les ases e lei buòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 74017,
-          "end": 81037
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a023",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz fosquèc plan malerós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 81037,
-          "end": 85045
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a024",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèc pas mai de lèit per dormir la nèit,",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 85045,
-          "end": 89525
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a025",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fòc per se calfar quand fasia fred.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 89525,
-          "end": 93810
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a026",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aiá qualque còp talament talent,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 93810,
-          "end": 98021
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a027",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’aurá plan manjat aquelas fèlha de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 98021,
-          "end": 102276
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a028",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aqui fruits poirits que manjon les pòrs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 102276,
-          "end": 106824
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a029",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mè digun i balhava pa re.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 106824,
-          "end": 110442
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a030",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un soèr, le ventre vude",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 110442,
-          "end": 113654
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a031",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishèc tombar sus un tronc",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 113654,
-          "end": 117978
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a032",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e gaitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 117978,
-          "end": 121002
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a033",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausèls que volaon laugèrament",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 121002,
-          "end": 124823
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a034",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e apèi vegèc parèstre din le cèl,",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 124823,
-          "end": 129199
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a035",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 129199,
-          "end": 132474
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a036",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se dièc en plorant",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 132474,
-          "end": 135802
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a037",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“Alà l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 135802,
-          "end": 139758
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a038",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e plen de vailets",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 139758,
-          "end": 142416
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a039",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’an de pan e de vin",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 142416,
-          "end": 145335
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a040",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "d’uòus e de formatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 145335,
-          "end": 148389
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a041",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tan que ne’n vòlon.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 148389,
-          "end": 150844
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a042",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aquel tèmps, ieu mòri de talent aishí.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 150844,
-          "end": 155967
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a043",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben me vau levar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 155967,
-          "end": 158688
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a044",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "airè trobar mon paire e i dirè:",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 158688,
-          "end": 164163
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a045",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“fasquèi un pecat quand vorguèi vos dishar.",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 164163,
-          "end": 168986
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a046",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèi grand tòrt",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 168986,
-          "end": 171962
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a047",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n punisquetz.",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 171962,
-          "end": 175896
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a048",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ba sai plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 175896,
-          "end": 178016
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a049",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apèletz pas mai vòstre gojat.",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 178016,
-          "end": 181490
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a050",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Tretatz-me coma le darnièr de vòstri vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 181490,
-          "end": 186209
-        },
-        {
-          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a051",
-          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Sosquèi copable, mè m’anujaa len de vos”.",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 186209,
-          "end": 192470.204082
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:58+00:00",
-        "dc:modified": "2016-06-01T23:47:58+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Sonnac-sur-l'Hers : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144807_11-SONNAC-SUR-L-HERS_22km.wav",
-          "meta": {
-            "dc:duration": 147000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Sonnac-sur-l'Hers : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144807.wav",
-          "meta": {
-            "dc:duration": 147000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Sonnac-sur-l'Hers : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144807_11-SONNAC-SUR-L-HERS_44k.mp3",
-          "meta": {
-            "dc:duration": 147000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Sonnac-sur-l'Hers : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a001",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme n’aiá que dos gojats.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 2877
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a002",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pu jove dièc a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 2877,
-          "end": 5843
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a003",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“es ora que siá que le mieu mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 5843,
-          "end": 9070
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a004",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’age argènt.",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 9070,
-          "end": 11279
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a005",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Cal que pòsque me’n anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 11279,
-          "end": 13752
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a006",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que vege país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 13752,
-          "end": 16009
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a007",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 16009,
-          "end": 18426
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a008",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que divi aver.”",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 18426,
-          "end": 21209
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a009",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“Ò mon filh dià le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 21209,
-          "end": 24218
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a010",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma vordràs",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 24218,
-          "end": 26599
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a011",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es un maishant e siràs punit.”",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 26599,
-          "end": 29314
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a012",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi durbisquèc una tiretta.",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 29314,
-          "end": 32098
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a013",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatgèc son ben e ne fasquèc dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 32098,
-          "end": 37314
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a014",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualqui jorns aprèts, le maishant se’n anguèc del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 37314,
-          "end": 42893
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a015",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fasquent le fièr",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 42893,
-          "end": 45159
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a016",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sans dire adieu a diguns.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 45159,
-          "end": 47780
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a017",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Traversèc plan de raisèsas,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 47780,
-          "end": 50452
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a018",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "plan de bòsques e plan de rivièras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 50452,
-          "end": 53426
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a019",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualqui meses,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 53426,
-          "end": 55909
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a020",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "divèc vendre sa farda a una vielha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 55909,
-          "end": 59521
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a021",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèc per estar vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 59521,
-          "end": 62049
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a022",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoien dins les camps per gardar les ases e li buòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 62049,
-          "end": 67076
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a023",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz fosquèc plan malerós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 67076,
-          "end": 70014
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a024",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "N’aigèc pos pu de lièit per dormir la nèit,",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 70014,
-          "end": 73280
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a025",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni fòc per se caufar quand aia fred.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 73280,
-          "end": 76517
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a026",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aiá qualque còp talament talent,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 76517,
-          "end": 79119
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a027",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’aurá plan manjat aquelha fèlha de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 79119,
-          "end": 82619
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a028",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquelha fruita poirida que manjon les pòrs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 82619,
-          "end": 86085
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a029",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mè diguns i donava pa re.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 86085,
-          "end": 89323
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a030",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un soèr, le ventre voit",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 89323,
-          "end": 92221
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a031",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se dishèc tombar sus un tanc",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 92221,
-          "end": 94667
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a032",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en gaitant/gaitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 94667,
-          "end": 97251
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a033",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausèl que volaon laugèrament",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 97251,
-          "end": 99974
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a034",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e apèi vegi aparèsher din le cèl,",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 99974,
-          "end": 102636
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a035",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 102636,
-          "end": 105451
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a036",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se dièc en plorant",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 105451,
-          "end": 108005
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a037",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“Aval l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 108005,
-          "end": 110537
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a038",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 110537,
-          "end": 112587
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a039",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’an pan e vin",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 112587,
-          "end": 114527
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a040",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "uòus e formatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 114527,
-          "end": 116922
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a041",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tan que ne’n vòlon.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 116922,
-          "end": 119066
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a042",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aquel tèmp, ieu crèbi de talent aisí.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 119066,
-          "end": 123132
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a043",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben me vau lhevar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 123132,
-          "end": 125268
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a044",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "airè trapar mon paire e i dirè:",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 125268,
-          "end": 128089
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a045",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“fasquèi un pecat quand volèi vos dishar.",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 128089,
-          "end": 131358
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a046",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèi grand tòrt",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 131358,
-          "end": 133296
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a047",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n punisquetz.",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 133296,
-          "end": 135550
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a048",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ba sai plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 135550,
-          "end": 137371
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a049",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apèletz pas mai vòstre gojat.",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 137371,
-          "end": 139809
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a050",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Tretatz-me coma le darnièr de vòstri vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 139809,
-          "end": 143202
-        },
-        {
-          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a051",
-          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Fosquèi copable, mè me languissia lhen de vos”.",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 143202,
-          "end": 148793.469388
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:58+00:00",
-        "dc:modified": "2016-06-01T23:47:58+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Saint-Martin-Lalande : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144808_11-ST-MARTIN-LALANDE_22km.wav",
-          "meta": {
-            "dc:duration": 119000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Saint-Martin-Lalande : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144808.wav",
-          "meta": {
-            "dc:duration": 119000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Saint-Martin-Lalande : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144808_11-ST-MARTIN-LALANDE_44k.mp3",
-          "meta": {
-            "dc:duration": 119000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Saint-Martin-Lalande : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a001",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme n’aià que dos gojats.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 2154
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a002",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Le pu jove dièc a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 2154,
-          "end": 4634
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a003",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“es tèmp que siás que mon mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 4634,
-          "end": 7047
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a004",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’age d’argènt.",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 7047,
-          "end": 8936
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a005",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Cal que pòsque me’n anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 8936,
-          "end": 10880
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a006",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que vese de país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 10880,
-          "end": 12639
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a007",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 12639,
-          "end": 14609
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a008",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que divi aver.”",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 14609,
-          "end": 16895
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a009",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“Ò le mieu gojat dià le paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 16895,
-          "end": 19200
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a010",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma vordràs",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 19200,
-          "end": 20622
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a011",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es un maisant e seràs punit.”",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 20622,
-          "end": 22915
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a012",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E apèi durbisquèt una tiretta.",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 22915,
-          "end": 25307
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a013",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatgèt son ben e ne fasquèt dòs parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 25307,
-          "end": 28594
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a014",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualque jorns aprèts, le maisant se’n anguèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 28594,
-          "end": 32955
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a015",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fasent le fièr",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 32955,
-          "end": 34425
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a016",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sans dire adieu a digun.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 34425,
-          "end": 36560
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a017",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Traversèt plan de sèrras,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 36560,
-          "end": 38546
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a018",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsques e de rivièras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 38546,
-          "end": 40516
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a019",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualque mes,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 40516,
-          "end": 42371
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a020",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "divèt vendre las fardas a una vielha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 42371,
-          "end": 45262
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a021",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèt pr’èsser vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 45262,
-          "end": 47074
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a022",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoien dins les camps per gardar ases ei buòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 47074,
-          "end": 51118
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a023",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alavetz fosquèc plan malerós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 51118,
-          "end": 52979
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a024",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aigèt po mèi de lièit per dromir la nèit,",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 52979,
-          "end": 55762
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a025",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni mai de fòc per se calfar quand aia freds.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 55762,
-          "end": 59166
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a026",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aiá qualque còp talament talent,",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 59166,
-          "end": 61486
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a027",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’aurá plan manjat aquela fèlha de caulet",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 61486,
-          "end": 64200
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a028",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquela fruita poirida que manjon les pòrs.",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 64200,
-          "end": 67015
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a029",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Mè digun i balhava pa res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 67015,
-          "end": 69423
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a030",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un soèr, le ventre vude",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 69423,
-          "end": 71775
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a031",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se lèisèc tombar sus un soc",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 71775,
-          "end": 73883
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a032",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e gaitava per la finèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 73883,
-          "end": 76078
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a033",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "les ausèl que volavon laugèrament",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 76078,
-          "end": 78918
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a034",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e apèi vièt aparèstre din le cèl,",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 78918,
-          "end": 81553
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a035",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna, las estelas",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 81553,
-          "end": 83564
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a036",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguèt en plorant",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 83564,
-          "end": 85780
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a037",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“Avàs l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 85780,
-          "end": 88120
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a038",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 88120,
-          "end": 90276
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a039",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’an de pan e de vin",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 90276,
-          "end": 92122
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a040",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "d’uòus e de fromatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 92122,
-          "end": 94073
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a041",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tan qu’en vòlon.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 94073,
-          "end": 95744
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a042",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "D’aquel tèmp, ieu morissi de talent aisí.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 95744,
-          "end": 98424
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a043",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben me vau levar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 98424,
-          "end": 100131
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a044",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "anirè trobar mon paire e i dirè:",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 100131,
-          "end": 102826
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a045",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "“fasquèi un pecat quand volèi vos daisar.",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 102826,
-          "end": 105492
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a046",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèi grand tòrt",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 105492,
-          "end": 107039
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a047",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n punisquetz.",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 107039,
-          "end": 109302
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a048",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Ba sai plan.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 109302,
-          "end": 110849
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a049",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apèletz pas mai le vòstre gojat.",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 110849,
-          "end": 113297
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a050",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Tretatz-me coma le darnièr de vòstri vailets.",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 113297,
-          "end": 116465
-        },
-        {
-          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a051",
-          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Fosquèi copable, me languissia len de vos”.",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 116465,
-          "end": 120476.734694
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-AUZITS_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:58+00:00",
-        "dc:modified": "2016-06-01T23:47:58+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Auzits : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144810_12-AUZITS_22km.wav",
-          "meta": {
-            "dc:duration": 199000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Auzits : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144810.wav",
-          "meta": {
-            "dc:duration": 199000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Auzits : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144810_12-AUZITS_44k.mp3",
-          "meta": {
-            "dc:duration": 199000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Auzits : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a001",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme aviá pas que dos enfants.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 4461
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a002",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Lo pus jove diguèt a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 4461,
-          "end": 8455
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a003",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Es temps que siasque mon mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 8455,
-          "end": 13015
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a004",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’age d’argent ;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 13015,
-          "end": 16035
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a005",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cal que pògue me n’anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 16035,
-          "end": 20382
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a006",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que vege de país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 20382,
-          "end": 23754
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a007",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 23754,
-          "end": 27544
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a008",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e bailatz-me çò que duve avure. »",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 27544,
-          "end": 31386
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a009",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Ò mon enfant, diguèt lo paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 31386,
-          "end": 35234
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a010",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma volràs ;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 35234,
-          "end": 38095
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a011",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ès un false e seràs punit. »",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 38095,
-          "end": 42355
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a012",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E puèi durbiguèt un tirador",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 42355,
-          "end": 46811
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a013",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "partatgèt son ben e ne fèt doas parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 46811,
-          "end": 53942
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a014",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Quauques jorns apuèi, lo false se n’anèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 53942,
-          "end": 61463
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a015",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fasquent lo fièr",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 61463,
-          "end": 64128
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a016",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "a sans dire adieu a degús.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 64128,
-          "end": 67691
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a017",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Traversèt bel còp de landas,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 67691,
-          "end": 71016
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a018",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsses e de ribièiras.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 71016,
-          "end": 74466
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a019",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de quauques meses",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 74466,
-          "end": 77492
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a020",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "digèt vendre sos abilhaments a una vièlha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 77492,
-          "end": 82186
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a021",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loguèt per èstre vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 82186,
-          "end": 85667
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a022",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièron pels camps per gardar los ases e los buòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 85667,
-          "end": 92824
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a023",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alèra sièt plan malurós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 92824,
-          "end": 96567
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a024",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèt pas plus de lièch per dormir la nuech",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 96567,
-          "end": 100982
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a025",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fuòc per se caufar quand aviá freg.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 100982,
-          "end": 106522
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a026",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aviá quauqu’un còp talament apetit",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 106522,
-          "end": 110346
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a027",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’auriá plan manjat aquela fuèlha de caule",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 110346,
-          "end": 114370
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a028",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquela frucha poirida que manjan los pòrcs ;",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 114370,
-          "end": 118783
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a029",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "mès degús li bailava pas res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 118783,
-          "end": 122870
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a030",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un ser lo ventre vide",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 122870,
-          "end": 126446
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a031",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se daissèt tombar sur una soca",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 126446,
-          "end": 130008
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a032",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e agachava per la fenèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 130008,
-          "end": 133265
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a033",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "los aucèls que volavan laugièirament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 133265,
-          "end": 137225
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a034",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E puèi vegèt parèstre dins lo cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 137225,
-          "end": 141052
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a035",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 141052,
-          "end": 144571
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a036",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguèt en plorent :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 144571,
-          "end": 147550
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a037",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Alai l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 147550,
-          "end": 150945
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a038",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 150945,
-          "end": 153602
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a039",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’an de pan e de vin",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 153602,
-          "end": 156780
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a040",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "d’uòus e de fromatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 156780,
-          "end": 160175
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a041",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que ne vòlon.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 160175,
-          "end": 162913
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a042",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "D’aquel temps ieu crebe de fam aicí.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 162913,
-          "end": 167365
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a043",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben me vau levar",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 167365,
-          "end": 170639
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a044",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "anarai trobar mon paire e li dirai :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 170639,
-          "end": 174239
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a045",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Fèri un pecat quand volguère vos daissar",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 174239,
-          "end": 178979
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a046",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agère grand tòrt",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 178979,
-          "end": 182060
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a047",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n puniguèssetz ;",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 182060,
-          "end": 185380
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a048",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "zo sabe ben.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 185380,
-          "end": 187974
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a049",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apelèssetz pas plus vòstre enfant,",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 187974,
-          "end": 191428
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a050",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tretatz-me coma lo darrèr de vòstres vailets ;",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 191428,
-          "end": 195679
-        },
-        {
-          "id": "11280.100/crdo-12-AUZITS_SOUND_a051",
-          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "sière copable mès languissiái luènh de vos.",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 195679,
-          "end": 200986.122449
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-JOUELS_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:59+00:00",
-        "dc:modified": "2016-06-01T23:47:59+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Jouels : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144809_12-JOUELS_22km.wav",
-          "meta": {
-            "dc:duration": 153000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Jouels : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144809.wav",
-          "meta": {
-            "dc:duration": 153000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Jouels : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144809_12-JOUELS_44k.mp3",
-          "meta": {
-            "dc:duration": 153000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Jouels : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a001",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme aviá pas que dos enfants;",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3479
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a002",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Lo pus jove diguèt a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3479,
-          "end": 6610
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a003",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Es ora que sià mon mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 6610,
-          "end": 9591
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a004",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’aja d’argent ;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 9591,
-          "end": 11604
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a005",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cal que pògue me n’anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 11604,
-          "end": 13806
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a006",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que veja de país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 13806,
-          "end": 15880
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a007",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 15880,
-          "end": 18089
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a008",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que devi avure. »",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 18089,
-          "end": 20553
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a009",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Ò mon enfant, diguèt lo paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 20553,
-          "end": 23827
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a010",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma voràs ;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 23827,
-          "end": 26031
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a011",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "siás un missant e seràs punit. »",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 26031,
-          "end": 29143
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a012",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E après dubriguèt un tirador,",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 29143,
-          "end": 32193
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a013",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "partatgèt son ben e ne fèt doas parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 32193,
-          "end": 35632
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a014",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Qualques jorns après lo missant se n’anèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 35632,
-          "end": 40785
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a015",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fent lo fièr",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 40785,
-          "end": 42458
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a016",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sans dire adieu a degús.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 42458,
-          "end": 44817
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a017",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Traversèt bravament de landas,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 44817,
-          "end": 47702
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a018",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsses e de ribièidas.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 47702,
-          "end": 50281
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a019",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de qualques meses",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 50281,
-          "end": 52655
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a020",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "calguèt que vendèssa sos abilhaments a una vièlha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 52655,
-          "end": 56826
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a021",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loguèt per èstre vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 56826,
-          "end": 59271
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a022",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièron pels camps per gardar los ases e los buòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 59271,
-          "end": 64377
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a023",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alara sièt plan malurós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 64377,
-          "end": 67081
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a024",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèt pas pus de lièch per dormir la nuèch",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 67081,
-          "end": 70697
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a025",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fuòc per se caufar quand aviá freg.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 70697,
-          "end": 74239
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a026",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aviá qualque còp talament taren",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 74239,
-          "end": 77196
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a027",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’auriá plan manjadas aquelas fuelhas de cauret",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 77196,
-          "end": 80432
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a028",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquelas fruchas poiridas que manjan los pòrcs ;",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 80432,
-          "end": 84553
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a029",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "mès degús li bailava pas res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 84553,
-          "end": 87536
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a030",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un ser lo ventre curat",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 87536,
-          "end": 90185
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a031",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se daissèt tombar sur una soca",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 90185,
-          "end": 92695
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a032",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e fintava per la fenèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 92695,
-          "end": 94833
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a033",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "los aucèls que volavan laugièirament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 94833,
-          "end": 98008
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a034",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E puèi vegèt paretre dins lo cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 98008,
-          "end": 101471
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a035",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estelas",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 101471,
-          "end": 104407
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a036",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguèt en plorent :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 104407,
-          "end": 107234
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a037",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Aval l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 107234,
-          "end": 110567
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a038",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 110567,
-          "end": 113142
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a039",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’an de pan e de vin",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 113142,
-          "end": 117128
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a040",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "d’uòus e de fromatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 117128,
-          "end": 119388
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a041",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que ne vòron.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 119388,
-          "end": 121594
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a042",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Dins aquel temps ièu crèbi de fam aicí.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 121594,
-          "end": 125346
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a043",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben me vau levar",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 125346,
-          "end": 127625
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a044",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "anarai trobar mon paire e li dirai :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 127625,
-          "end": 130805
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a045",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Fèri un pecat quand volguèri vos daissar",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 130805,
-          "end": 134158
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a046",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agèri plan tòrt",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 134158,
-          "end": 136395
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a047",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me puniguètz ;",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 136395,
-          "end": 139479
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a048",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "o sabi ben.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 139479,
-          "end": 141389
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a049",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apelètz pas pus vòstre enfant",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 141389,
-          "end": 144149
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a050",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tretatz-me coma lo darrièr de vòstres vailets ;",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 144149,
-          "end": 147941
-        },
-        {
-          "id": "11280.100/crdo-12-JOUELS_SOUND_a051",
-          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "sièri copable mès languissiái luènh de vos.",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 147941,
-          "end": 154017.959184
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-LACASSAGNE_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:59+00:00",
-        "dc:modified": "2016-06-01T23:47:59+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Lacassagne : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144811_12-LACASSAGNE_22km.wav",
-          "meta": {
-            "dc:duration": 172000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Lacassagne : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144811.wav",
-          "meta": {
-            "dc:duration": 172000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Lacassagne : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144811_12-LACASSAGNE_44k.mp3",
-          "meta": {
-            "dc:duration": 172000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Lacassagne : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a001",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme avi’a pas que dos enfants.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 2824
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a002",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Lo pus jove diguèt a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 2824,
-          "end": 5795
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a003",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Es ora que siague mon mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 5795,
-          "end": 9075
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a004",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que agi d’argent ;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 9075,
-          "end": 11856
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a005",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cal que me’n pògui anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 11856,
-          "end": 14579
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a006",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que vegi de país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 14579,
-          "end": 17120
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a007",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 17120,
-          "end": 19791
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a008",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me aquò que devi avure. »",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 19791,
-          "end": 22872
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a009",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Ò mon enfant, diguèt lo paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 22872,
-          "end": 25968
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a010",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma vodràs ;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 25968,
-          "end": 28263
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a011",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "siès un missant e seràs punit.”",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 28263,
-          "end": 31583
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a012",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E après durbiguèt un tirador",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 31583,
-          "end": 34486
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a013",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "partatgèt son ben e ne fèt doas parts.",
-              "transl": {
-                "@value": "il partagea son bien et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 34486,
-          "end": 38616
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a014",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Quauques jorns après, lo missant se n’anèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 38616,
-          "end": 44342
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a015",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fent lo fièr",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 44342,
-          "end": 46549
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a016",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sans dire adieu a degús.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 46549,
-          "end": 49413
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a017",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Traversèt bravament de landas,",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 49413,
-          "end": 52341
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a018",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "de bòsses e de ribièidas.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 52341,
-          "end": 55440
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a019",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de quauques meses,",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 55440,
-          "end": 58439
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a020",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "digèt vendre sos abilhaments a una vièlha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 58439,
-          "end": 63018
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a021",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèt per èstre vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 63018,
-          "end": 67477
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a022",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièron dins los camps per gardar los ases e los buòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 67477,
-          "end": 73720
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a023",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alara sièt plan malurós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 73720,
-          "end": 76769
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a024",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèt pas pus de lièch per dormir la nuèch",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 76769,
-          "end": 80542
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a025",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fuòc per se caufar quand aviá freg.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 80542,
-          "end": 84386
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a026",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aviá quauque còp talament taren",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 84386,
-          "end": 87067
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a027",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’auriá plan manjat aquelas fuelhas de caule",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 87067,
-          "end": 90586
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a028",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquela frucha poirida que manjan los pòrcs ;",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 90586,
-          "end": 94821
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a029",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "mès degús i donava pas res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 94821,
-          "end": 98036
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a030",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un ser lo ventre vide",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 98036,
-          "end": 101078
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a031",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se daissèt tombar sur una soca",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 101078,
-          "end": 104604
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a032",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e agachava per la fenèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 104604,
-          "end": 107876
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a033",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "los aucèls que volavan laugièirament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 107876,
-          "end": 111916
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a034",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E puèi vegèt paretre dins lo cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 111916,
-          "end": 115483
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a035",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estèlas",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 115483,
-          "end": 118261
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a036",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguèt en plorent :",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 118261,
-          "end": 121165
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a037",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Aval l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 121165,
-          "end": 124460
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a038",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 124460,
-          "end": 127289
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a039",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "que an de pan e de vin",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 127289,
-          "end": 130143
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a040",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "d’uòus e de fromatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 130143,
-          "end": 133160
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a041",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que ne vòlon.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 133160,
-          "end": 135426
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a042",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aquel temps ieu morissi de fam aicí.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 135426,
-          "end": 141130
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a043",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben me vau levar,",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 141130,
-          "end": 143461
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a044",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "anarai trobar mon paire",
-              "transl": {
-                "@value": "j'irai trouver mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 143461,
-          "end": 146153
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a045",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e i dirai :",
-              "transl": {
-                "@value": "et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 146153,
-          "end": 148887
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a046",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Fèri un pecat quand volguèri vos daissar",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 148887,
-          "end": 152762
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a047",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agèri grand tòrt",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 152762,
-          "end": 155122
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a048",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n puniguètz ;",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 155122,
-          "end": 158429
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a049",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "o sabi ben.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 158429,
-          "end": 160377
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a050",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apeletz pas pus vòstre enfant",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 160377,
-          "end": 163842
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a051",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tratatz-me coma lo darrièr de vòstres vailets ;",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 163842,
-          "end": 167248
-        },
-        {
-          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a052",
-          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "sièri copable mès me languissiái luènh de vos. »",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 167248,
-          "end": 173400.816327
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-LANUEJOULS_SOUND",
-    "transcript": {
-      "format": "http://advene.org/ns/cinelab/",
-      "@context": {
-        "dc": "http://purl.org/dc/elements/1.1/",
-        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
-      },
-      "meta": {
-        "dc:creator": "Corpus de la Parole",
-        "dc:contributor": "Corpus de la Parole",
-        "dc:created": "2016-06-01T23:47:59+00:00",
-        "dc:modified": "2016-06-01T23:47:59+00:00",
-        "dc:title": {
-          "@language": "fr",
-          "@value": "ALLOc : Lanuéjouls : Parabole"
-        }
-      },
-      "medias": [
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_m1",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/144812_12-LANUEJOULS_22km.wav",
-          "meta": {
-            "dc:duration": 154000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Lanuéjouls : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": false
-          }
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/masters/144812.wav",
-          "meta": {
-            "dc:duration": 154000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Lanuéjouls : Parabole"
-            },
-            "dc:format": "audio/x-wav",
-            "corpus:master": true
-          }
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_m3",
-          "origin": 0,
-          "unit": "ms",
-          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144812_12-LANUEJOULS_44k.mp3",
-          "meta": {
-            "dc:duration": 154000,
-            "dc:title": {
-              "@language": "fr",
-              "@value": "ALLOc : Lanuéjouls : Parabole"
-            },
-            "dc:format": "audio/mpeg",
-            "corpus:master": false
-          }
-        }
-      ],
-      "resources": [],
-      "lists": [],
-      "annotation-types": [],
-      "annotations": [
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a001",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un òme aviá pas que dos enfants.",
-              "transl": {
-                "@value": "Un homme n'avait que deux fils.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 0,
-          "end": 3309
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a002",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Lo pus jove diguèt a son paire :",
-              "transl": {
-                "@value": "Le plus jeune dit à son père :",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 3309,
-          "end": 6394
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a003",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Aquò ei temps que siague mon mèstre",
-              "transl": {
-                "@value": "\" Il est temps que je sois mon maître",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 6394,
-          "end": 9356
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a004",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e qu’agi d’argent ;",
-              "transl": {
-                "@value": "et que j'aie de l'argent;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 9356,
-          "end": 11696
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a005",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "cal que pògui me n’anar",
-              "transl": {
-                "@value": "il faut que je puisse m'en aller",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 11696,
-          "end": 14759
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a006",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e que vegi de país.",
-              "transl": {
-                "@value": "et que je voie du pays.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 14759,
-          "end": 17572
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a007",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Partatjatz vòstre ben",
-              "transl": {
-                "@value": "Partagez votre bien",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 17572,
-          "end": 19785
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a008",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e donatz-me çò que divi avure. »",
-              "transl": {
-                "@value": "et donnez-moi ce que je dois avoir\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 19785,
-          "end": 23254
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a009",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Ò mon enfant, diguèt lo paire,",
-              "transl": {
-                "@value": "\"O mon fils, dit le père,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 23254,
-          "end": 26114
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a010",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "coma voràs ;",
-              "transl": {
-                "@value": "comme tu voudras;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 26114,
-          "end": 27959
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a011",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "siás un missant e seràs punit. »",
-              "transl": {
-                "@value": "tu es méchant et tu seras puni\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 27959,
-          "end": 31089
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a012",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E après durbiguèt un tirador",
-              "transl": {
-                "@value": "Et ensuite il ouvrit un tiroir,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 31089,
-          "end": 34152
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a013",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "partatgèt son ben",
-              "transl": {
-                "@value": "il partagea son bien ",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 34152,
-          "end": 36796
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a014",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e ne fèt doas parts ;",
-              "transl": {
-                "@value": "et il en fit deux parts.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 36796,
-          "end": 39398
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a015",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Quauques jorns après, lo missant se n’anèt del vilatge",
-              "transl": {
-                "@value": "Quelques jours après, le méchant s'en alla du village",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 39398,
-          "end": 44397
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a016",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "en fent lo fièr",
-              "transl": {
-                "@value": "en faisant le fier",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 44397,
-          "end": 46391
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a017",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e sans dire al reveire a degús.",
-              "transl": {
-                "@value": "et sans dire adieu à personne.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 46391,
-          "end": 49434
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a018",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Traversèt plasses landas",
-              "transl": {
-                "@value": "Il traversa beaucoup de landes,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 49434,
-          "end": 51560
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a019",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "plasses bòsses e plasses ribièidas.",
-              "transl": {
-                "@value": "de bois, de rivières.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 51560,
-          "end": 54643
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a020",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Al cap de quauques meses",
-              "transl": {
-                "@value": "Au bout de quelques mois,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 54643,
-          "end": 56981
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a021",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "digèt vendre sos abilhaments a una vièlha femna",
-              "transl": {
-                "@value": "il dut vendre ses habits à une vieille femme",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 56981,
-          "end": 61024
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a022",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se loèt per èstre vailet.",
-              "transl": {
-                "@value": "et il se loua pour être valet.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 61024,
-          "end": 63900
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a023",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "L’envoièron dins los camps per gardar los ases e los buòus.",
-              "transl": {
-                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 63900,
-          "end": 69741
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a024",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Alèra sièt plan malurós.",
-              "transl": {
-                "@value": "Alors il fut bien malheureux.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 69741,
-          "end": 72376
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a025",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Agèt pas mai de lièch per dormir la nuèch",
-              "transl": {
-                "@value": "Il n'eut plus de lit pour dormir la nuit",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 72376,
-          "end": 75667
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a026",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "ni de fuòc per se caufar quand aviá freg.",
-              "transl": {
-                "@value": "ni de feu pour se chauffer quand il avait froid.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 75667,
-          "end": 79003
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a027",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Aviá quauques còps talament talent",
-              "transl": {
-                "@value": "Il avait quelquefois tellement faim",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 79003,
-          "end": 82497
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a028",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "qu’auriá plan manjat aquelas fuèlhas de caule",
-              "transl": {
-                "@value": "qu'il aurait bien mangé ces feuilles de chou",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 82497,
-          "end": 85697
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a029",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e aquelas fruchas poiridas que manjan los pòrcs ;",
-              "transl": {
-                "@value": "et ces fruits pourris que mangent les porcs;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 85697,
-          "end": 89004
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a030",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "mès degús li donava pas res.",
-              "transl": {
-                "@value": "mais personne ne lui donnait rien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 89004,
-          "end": 91691
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a031",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Un ser lo ventre cròie",
-              "transl": {
-                "@value": "Un soir, ventre vide,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 91691,
-          "end": 94581
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a032",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "se daissèt tombar sur una soca",
-              "transl": {
-                "@value": "il se laissa tomber sur un tronc,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 94581,
-          "end": 97605
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a033",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e agachava per la fenèstra",
-              "transl": {
-                "@value": "et il regardait par la fenêtre",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 97605,
-          "end": 100226
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a034",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "los aucèls que volavan laugièirament.",
-              "transl": {
-                "@value": "les oiseaux qui volaient légèrement.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 100226,
-          "end": 103180
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a035",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E puèi vegèt paretre dins lo cèl",
-              "transl": {
-                "@value": "Et puis il vit paraître dans le ciel",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 103180,
-          "end": 105993
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a036",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "la luna e las estèlas",
-              "transl": {
-                "@value": "la lune et les étoiles,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 105993,
-          "end": 108679
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a037",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e se diguèt en plorent",
-              "transl": {
-                "@value": "et il se dit en pleurant:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 108679,
-          "end": 111429
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a038",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Aval, l’ostal de mon paire",
-              "transl": {
-                "@value": "\"Là-bas, la maison de mon père",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 111429,
-          "end": 114090
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a039",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "es plen de vailets",
-              "transl": {
-                "@value": "est pleine de valets",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 114090,
-          "end": 116193
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a040",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "que an de pan e de vin",
-              "transl": {
-                "@value": "qui ont du pain et du vin,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 116193,
-          "end": 118834
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a041",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "dels uòus e de fromatge",
-              "transl": {
-                "@value": "des oeufs et du fromage",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 118834,
-          "end": 121307
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a042",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tant que ne vòlon.",
-              "transl": {
-                "@value": "tant qu'ils en veulent.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 121307,
-          "end": 123479
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a043",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Pendent aquel temps ieu morissi de fam aicí.",
-              "transl": {
-                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 123479,
-          "end": 128592
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a044",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "E ben me vau levar",
-              "transl": {
-                "@value": "Eh bien, je vais me lever,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 128592,
-          "end": 130596
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a045",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "Anarai trobar mon paire e li dirai :",
-              "transl": {
-                "@value": "j'irai trouver mon père et je lui dirai:",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 130596,
-          "end": 133948
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a046",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "« Fèri un pecat quand volguèri vos daissar",
-              "transl": {
-                "@value": "\" je fis un péché quand je voulus vous quitter;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 133948,
-          "end": 137024
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a047",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "agèri plan tòrt",
-              "transl": {
-                "@value": "j'eus grand tort,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 137024,
-          "end": 139121
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a048",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "e cal que me’n puniguètz ;",
-              "transl": {
-                "@value": "et il faut que vous m'en punissiez,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 139121,
-          "end": 141746
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a049",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "zo sabi ben.",
-              "transl": {
-                "@value": "je le sais bien.",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 141746,
-          "end": 143836
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a050",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "M’apelètz pas plus vòstre enfant,",
-              "transl": {
-                "@value": "Ne m'appelez plus votre fils,",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 143836,
-          "end": 146609
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a051",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "tretatz-me coma lo darrèr de vòstres vailets ;",
-              "transl": {
-                "@value": "traitez-moi comme le dernier de vos valets;",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 146609,
-          "end": 150015
-        },
-        {
-          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a052",
-          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
-          "content": {
-            "mimetype": "application/json",
-            "data": {
-              "content": "sièri copable mès languissiái luènh de vos.",
-              "transl": {
-                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
-                "@language": "fr"
-              }
-            }
-          },
-          "begin": 150015,
-          "end": 155742.040816
-        }
-      ]
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC1LEX_SOUND"
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC2LEX_SOUND"
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC3LEX_SOUND"
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC4MORPHO_SOUND"
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC5MORPHO_SOUND"
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN1LEX_SOUND"
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN2LEX_SOUND"
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN3LEX_SOUND"
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN4LEX_SOUND"
-  }
-];
\ No newline at end of file
--- a/cms/app-client/bower.json	Tue Jun 07 01:11:44 2016 +0200
+++ b/cms/app-client/bower.json	Tue Jun 07 01:16:31 2016 +0200
@@ -12,7 +12,7 @@
     "font-awesome": "~4.6.1",
     "pretender": "~1.1.0",
     "lodash": "~4.11.1",
-    "Faker": "~3.0.0",
+    "Faker": "~3.1.0",
     "store": "https://github.com/marcuswestin/store.js.git#v1.3.20"
   }
 }
--- a/cms/app-client/ember-cli-build.js	Tue Jun 07 01:11:44 2016 +0200
+++ b/cms/app-client/ember-cli-build.js	Tue Jun 07 01:16:31 2016 +0200
@@ -3,39 +3,39 @@
 var EmberApp = require('ember-cli/lib/broccoli/ember-app');
 
 module.exports = function(defaults) {
-  var app = new EmberApp(defaults, {
-    // Add options here
-    sassOptions: {
-      includePaths: [
-        'bower_components/bootstrap-sass/assets/stylesheets/'
-      ]
-    },
-    fingerprint: {
-      enabled: false
-    }
-  });
+    var app = new EmberApp(defaults, {
+        // Add options here
+        sassOptions: {
+            includePaths: [
+                'bower_components/bootstrap-sass/assets/stylesheets/'
+            ]
+        },
+        fingerprint: {
+            enabled: false
+        }
+    });
 
-  // Use `app.import` to add additional libraries to the generated
-  // output files.
-  //
-  // If you need to use different assets in different
-  // environments, specify an object as the first parameter. That
-  // object's keys should be the environment name and the values
-  // should be the asset to use in that environment.
-  //
-  // If the library that you are including contains AMD or ES6
-  // modules that you would like to import into your application
-  // please specify an object with the list of modules as keys
-  // along with the exports of each module as its value.
-  app.import('bower_components/ammap3/ammap/ammap.js');
-  app.import('bower_components/ammap3/ammap/maps/js/worldLow.js');
-  app.import('bower_components/ammap3/ammap/maps/js/continentsLow.js');
-  app.import('bower_components/ammap3/ammap/maps/js/france2016Low.js');
-  app.import('vendor/shims/ammaps.js', {
-    exports: {
-      'ammaps': ['defaults']
-    }
-  });
+    // Use `app.import` to add additional libraries to the generated
+    // output files.
+    //
+    // If you need to use different assets in different
+    // environments, specify an object as the first parameter. That
+    // object's keys should be the environment name and the values
+    // should be the asset to use in that environment.
+    //
+    // If the library that you are including contains AMD or ES6
+    // modules that you would like to import into your application
+    // please specify an object with the list of modules as keys
+    // along with the exports of each module as its value.
+    app.import('bower_components/ammap3/ammap/ammap.js');
+    app.import('bower_components/ammap3/ammap/maps/js/worldLow.js');
+    app.import('bower_components/ammap3/ammap/maps/js/continentsLow.js');
+    app.import('bower_components/ammap3/ammap/maps/js/france2016Low.js');
+    app.import('vendor/shims/ammaps.js', {
+        exports: {
+            'ammaps': ['defaults']
+        }
+    });
 
-  return app.toTree();
+    return app.toTree();
 };
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/config.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,81 @@
+import ENV from 'app-client/config/environment';
+import _ from 'lodash/lodash';
+import * as constants from 'corpus-common-addon/utils/constants';
+
+export default function() {
+
+    // These comments are here to help you get started. Feel free to delete them.
+
+    /*
+      Config (with defaults).
+
+      Note: these only affect routes defined *after* them!
+    */
+    // this.urlPrefix = '';    // make this `http://localhost:8080`, for example, if your API is on a different server
+    // this.namespace = '';    // make this `api`, for example, if your API is namespaced
+    this.namespace = ENV.baseURL.replace(/\/$/,'')+'/api/v1';
+    // this.timing = 400;      // delay for each request, automatically set to 0 during testing
+
+    this.get('/documents', function({ documents }) {
+        return this.serialize(documents.all(), 'sparse-document');
+    });
+    this.get('/documents/:id', ({documents}, request) => {
+        let id = decodeURIComponent(request.params.id);
+        return documents.find(id);
+    });
+
+    this.get('/documents/:id/transcript',  ({transcripts}, request) => {
+        let id = decodeURIComponent(request.params.id);
+
+        return transcripts.find(id).transcript;
+    });
+
+    this.get('/languages');
+
+    this.get('/themes');
+
+    this.get('/discourses');
+
+    this.get('/lexvo/:ids', ({lexvos}, request) => {
+        var langIds = decodeURIComponent(request.params.ids);
+        var resMap = _.reduce(langIds.split(','), function(res, id) {
+            var fullId = id;
+            if(!_.startsWith(fullId, constants.LEXVO_BASE_URL)) {
+                fullId = constants.LEXVO_BASE_URL + id;
+            }
+            var lexvoRes = lexvos.find(fullId);
+            res[id] = lexvoRes?lexvoRes.name:null;
+            return res;
+        }, {});
+
+        return {
+            'lexvoids': resMap
+        };
+
+    });
+
+    this.get('/bnf/:ids', ({ bnfs }, request) => {
+
+        var bnfIds = decodeURIComponent(request.params.ids);
+        var resMap = _.reduce(bnfIds.split(','), function(res, id) {
+            var fullId = id;
+            if(_.startsWith(fullId, constants.BNF_BASE_URL)) {
+                fullId = fullId.slice(constants.BNF_BASE_URL.length);
+            } else if (_.startsWith(fullId, constants.BNF_ARK_BASE_URL)) {
+                fullId = fullId.slice(constants.BNF_ARK_BASE_URL.length);
+            } else if (!_.startsWith(fullId, constants.BNF_ARK_BASE_ID)) {
+                fullId = constants.BNF_ARK_BASE_ID + fullId;
+            }
+            var bnfRes = bnfs.find(fullId);
+            res[id] = bnfRes?bnfRes.label:null;
+            return res;
+        }, {});
+
+        return {
+            'bnfids': resMap
+        };
+
+    });
+
+
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/fixtures/bnfs.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,6 @@
+export default [
+    {'id': 'ark:/12148/cb11965628b', 'label': 'frères et soeurs'},
+    {'id': 'ark:/12148/cb11946662b', 'label': 'parents et enfants'},
+    {'id': 'ark:/12148/cb119766112', 'label': 'miséricorde'},
+    {'id': 'ark:/12148/cb11970755h', 'label': 'repentir'}
+];
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/fixtures/discourses.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,102 @@
+export default [
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12481481z",
+    "count": 2524,
+    "label": "dialogue"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932135w",
+    "count": 1882,
+    "label": "entretiens"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11955657q",
+    "count": 857,
+    "label": "lecture à haute voix"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119317924",
+    "count": 653,
+    "label": "conversation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119829234",
+    "count": 629,
+    "label": "questionnaires"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11937212q",
+    "count": 343,
+    "label": "narration"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11946100d",
+    "count": 228,
+    "label": "paradigme (épistémologie)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119341539",
+    "count": 222,
+    "label": "discussion"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11976851v",
+    "count": 219,
+    "label": "récits personnels"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936159v",
+    "count": 110,
+    "label": "contes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13319048g",
+    "count": 68,
+    "label": "chansons"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11949715t",
+    "count": 43,
+    "label": "réunions"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119783362",
+    "count": 36,
+    "label": "bavardage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931724n",
+    "count": 23,
+    "label": "congrès et conférences"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11957378b",
+    "count": 12,
+    "label": "musique instrumentale"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119834877",
+    "count": 11,
+    "label": "récitation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12083158d",
+    "count": 11,
+    "label": "argumentation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11948542x",
+    "count": 7,
+    "label": "discours"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120502737",
+    "count": 2,
+    "label": "enquêtes linguistiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11953414d",
+    "count": 1,
+    "label": "fables"
+  }
+];
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/fixtures/documents.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,4635 @@
+export default [
+  {
+    "id": "11280.100/crdo-UVE_MOCIKA_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-UVE_MOCIKA_SOUND",
+    "title": "The two hermit crabs and the coconut crab",
+    "language": "http://lexvo.org/id/iso639-3/uve",
+    "modified": "2002-02-20",
+    "issued": "2010-10-23T00:08:27+02:00",
+    "publishers": [
+      "Laboratoire de langues et civilisations à tradition orale"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56614135",
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56614135",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Idakote, Félicien",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11958119h",
+      "http://ark.bnf.fr/ark:/12148/cb11953067w",
+      "http://lexvo.org/id/iso639-3/uve",
+      {
+        "value": "Fagauvea",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/moyse-faurie/uve/crdo-UVE_MOCIKA.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144187_MOCIKA_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144187_MOCIKA_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT2M35S",
+        "extent_ms": 155000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144187.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144187.wav",
+        "format": "audio/x-wav",
+        "extent": "PT2M35S",
+        "extent_ms": 155000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144187_MOCIKA_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144187_MOCIKA_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT2M35S",
+        "extent_ms": 155000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://sws.geonames.org/2139490/"
+      ],
+      "notes": [
+        {
+          "value": "NC",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        "New Caledonia, Ohnyat (Ouvéa)"
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-CFPP2000_11_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-CFPP2000_11_SOUND",
+    "title": "Entretien de Louise Liotard et de Jeane Mallet 1",
+    "language": "http://lexvo.org/id/iso639-3/fra",
+    "modified": "2013-04-23T21:40:30+02:00",
+    "issued": "2013-04-23T21:40:30+02:00",
+    "publishers": [
+      "Langage et langues : description, théorisation, transmission"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/93752300",
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Pires, Mat",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": "Liotard, Louise",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/responder"
+      },
+      {
+        "name": "Mallet, Jeane",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/responder"
+      },
+      {
+        "name": "Verlinde, Agnès",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb12042429k",
+      "http://ark.bnf.fr/ark:/12148/cb12099148r",
+      "http://ark.bnf.fr/ark:/12148/cb13318415c",
+      {
+        "value": "anthropological_linguistics",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      {
+        "value": "phonetics",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/fra",
+      "http://ark.bnf.fr/ark:/12148/cb11948031w",
+      "http://ark.bnf.fr/ark:/12148/cb119344654",
+      "http://ark.bnf.fr/ark:/12148/cb122187674",
+      "http://ark.bnf.fr/ark:/12148/cb119336256",
+      "http://ark.bnf.fr/ark:/12148/cb13319003h",
+      {
+        "value": "general_linguistics",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://ark.bnf.fr/ark:/12148/cb13318355b",
+      "http://ark.bnf.fr/ark:/12148/cb12477289d",
+      {
+        "value": "text_and_corpus_linguistics",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      {
+        "value": "Français",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11940030m",
+      "http://ark.bnf.fr/ark:/12148/cb11974557m",
+      "http://ark.bnf.fr/ark:/12148/cb122368540",
+      {
+        "value": "phonology",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      {
+        "value": "semantics",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      {
+        "value": "sociolinguistics",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      {
+        "value": "syntax",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      {
+        "value": "typology",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://ark.bnf.fr/ark:/12148/cb119418302",
+      "http://ark.bnf.fr/ark:/12148/cb124795302",
+      {
+        "value": "applied_linguistics",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      {
+        "value": "discourse_analysis",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      {
+        "value": "historical_linguistics",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      {
+        "value": "language_documentation",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      {
+        "value": "morphology",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://ark.bnf.fr/ark:/12148/cb16971902d",
+      "http://ark.bnf.fr/ark:/12148/cb118967018",
+      "http://ark.bnf.fr/ark:/12148/cb11933911b",
+      "http://ark.bnf.fr/ark:/12148/cb11935295r",
+      "http://ark.bnf.fr/ark:/12148/cb119586741",
+      "http://ark.bnf.fr/ark:/12148/cb11962186d",
+      "http://ark.bnf.fr/ark:/12148/cb11978864p",
+      "http://ark.bnf.fr/ark:/12148/cb120114798",
+      "http://ark.bnf.fr/ark:/12148/cb12128999b",
+      "http://ark.bnf.fr/ark:/12148/cb13515252n"
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/cfpp2000/fra/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_transcriber"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/masters/344490.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/344490.wav",
+        "format": "audio/x-wav",
+        "extent": "PT45M52S",
+        "extent_ms": 2752000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/cfpp2000/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/cfpp2000/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT45M52S",
+        "extent_ms": 2752000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/cfpp2000/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.wav": {
+        "url": "http://cocoon.huma-num.fr/data/cfpp2000/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.wav",
+        "format": "audio/x-wav",
+        "extent": "PT45M52S",
+        "extent_ms": 2752000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://vocab.getty.edu/tgn/7008038",
+        "http://sws.geonames.org/6455259/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Île-de-France, Paris, Université Sorbonne Nouvelle Paris 3, site Censier",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-FRA_PK_IV_10_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-FRA_PK_IV_10_SOUND",
+    "title": "Le jour des petits (B)",
+    "language": "http://lexvo.org/id/iso639-3/fra",
+    "modified": "2007-11-06",
+    "issued": "2010-10-27T10:41:51+02:00",
+    "publishers": [
+      "Université Bordeaux III"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/14996188",
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "00",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": "01",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": "04",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": "111",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "29",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "33",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "41",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "60",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "le directeur",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "100",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "104",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "28",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "34",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "35",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "43",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "50",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "53",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": "31",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/participant"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/14996188",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "06",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "07",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "09",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "10",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "111",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "33",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "37",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "39",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "40",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "41",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "48",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "32",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "4M",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "11",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "14",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "35",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "44",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "46",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      "http://lexvo.org/id/iso639-3/fra",
+      "http://ark.bnf.fr/ark:/12148/cb119328694",
+      "http://ark.bnf.fr/ark:/12148/cb11936442z",
+      "http://ark.bnf.fr/ark:/12148/cb119767449",
+      {
+        "value": "Français",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb16140050j"
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/ploog/fra/crdo-FRA_PK_IV_09.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/145183_IV_10_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/145183_IV_10_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT13M41S",
+        "extent_ms": 821000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/145183.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/145183.wav",
+        "format": "audio/x-wav",
+        "extent": "PT13M41S",
+        "extent_ms": 821000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/145183_IV_10_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/145183_IV_10_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT13M41S",
+        "extent_ms": 821000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://sws.geonames.org/2282436/"
+      ],
+      "notes": [
+        {
+          "value": "CI",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "Côte d'Ivoire, Abidjan, centre \"Sauvetage\", Plateau",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-FSL-CUC023_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-FSL-CUC023_SOUND",
+    "title": "Corpus LS-Colin sur plusieurs genres discursifs (Josette Bouchauveau et Henri Attia)",
+    "language": "http://lexvo.org/id/iso639-3/fra",
+    "modified": "2008-06-14",
+    "issued": "2015-02-03T21:13:34+01:00",
+    "publishers": [
+      "Structures formelles du langage",
+      "Centre d'analyses et de mathématiques sociales",
+      "Institut de recherche en informatique de Toulouse",
+      "Laboratoire d'Informatique pour la Mécanique et les Sciences de l'Ingénieur"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/197871692",
+        "role": "http://www.language-archives.org/OLAC/1.1/annotator"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/202009521",
+        "role": "http://www.language-archives.org/OLAC/1.1/compiler"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/74053259",
+        "role": "http://www.language-archives.org/OLAC/1.1/compiler"
+      },
+      {
+        "name": "Fiore, Sonia",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/compiler"
+      },
+      {
+        "name": "Fiore, Sonia",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/74053259",
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/74053259",
+        "role": "http://www.language-archives.org/OLAC/1.1/developer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/207122465",
+        "role": "http://www.language-archives.org/OLAC/1.1/developer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/197871692",
+        "role": "http://www.language-archives.org/OLAC/1.1/developer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/15630709",
+        "role": "http://www.language-archives.org/OLAC/1.1/developer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/202186280",
+        "role": "http://www.language-archives.org/OLAC/1.1/developer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/208930530",
+        "role": "http://www.language-archives.org/OLAC/1.1/developer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/310748152",
+        "role": "http://www.language-archives.org/OLAC/1.1/developer"
+      },
+      {
+        "name": "Choisier, Annick",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/developer"
+      },
+      {
+        "name": "Collet, Christophe",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/developer"
+      },
+      {
+        "name": "Dalle, Patrice",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/developer"
+      },
+      {
+        "name": "Jausions, Guillemette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/developer"
+      },
+      {
+        "name": "Lenseigne, Boris",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/developer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/74053259",
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/207122465",
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/197871692",
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/15630709",
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/202186280",
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/208930530",
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Choisier, Annick",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Collet, Christophe",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Dalle, Patrice",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Jausions, Guillemette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "LS-Colin",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Lenseigne, Boris",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Institut national des jeunes sourds",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/recorder"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/310748152",
+        "role": "http://www.language-archives.org/OLAC/1.1/recorder"
+      },
+      {
+        "name": "Attia, Henri",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Bouchauveau, Josette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/197871692",
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/197871692",
+        "role": "http://www.language-archives.org/OLAC/1.1/translator"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11932194d",
+      "http://ark.bnf.fr/ark:/12148/cb11931819b",
+      "http://ark.bnf.fr/ark:/12148/cb11932889r",
+      "http://lexvo.org/id/iso639-3/fsl",
+      {
+        "value": "Langue des signes française",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb119328694",
+      "http://ark.bnf.fr/ark:/12148/cb119677899",
+      "http://ark.bnf.fr/ark:/12148/cb12477289d",
+      "http://ark.bnf.fr/ark:/12148/cb133190265",
+      "http://ark.bnf.fr/ark:/12148/cb137450433"
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/cuxac/fsl/crdo-FSL-CUC023.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/cuxac/CUC023_low.mp4": {
+        "url": "http://cocoon.huma-num.fr/data/cuxac/CUC023_low.mp4",
+        "format": "video/mp4",
+        "extent": "PT27M08S",
+        "extent_ms": 1628000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/cuxac/masters/CUC023.mp4": {
+        "url": "http://cocoon.huma-num.fr/data/cuxac/masters/CUC023.mp4",
+        "format": "video/mp4",
+        "extent": "PT27M08S",
+        "extent_ms": 1628000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/cuxac/CUC023_low.ogg": {
+        "url": "http://cocoon.huma-num.fr/data/cuxac/CUC023_low.ogg",
+        "format": "video/ogg",
+        "extent": "PT27M08S",
+        "extent_ms": 1628000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://sws.geonames.org/6455259/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Paris",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND",
+    "title": "Tale of the hen and the rooster",
+    "language": "http://lexvo.org/id/iso639-3/fra",
+    "modified": "2004-12-09",
+    "issued": "2010-10-26T19:21:17+02:00",
+    "publishers": [
+      "Laboratoire de langues et civilisations à tradition orale"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/10920079",
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Phadom, Willion",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Typologie et universaux linguistiques",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/sponsor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/10920079",
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      },
+      {
+        "name": "Phadom, Willion",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/10920079",
+        "role": "http://www.language-archives.org/OLAC/1.1/translator"
+      },
+      {
+        "name": "Phadom, Willion",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/translator"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11936442z",
+      "http://lexvo.org/id/iso639-3/nee",
+      {
+        "value": "Nêlêmwa",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb119591110",
+      "http://ark.bnf.fr/ark:/12148/cb119759480"
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/bril/nee/crdo-NEE_KHIAAK_KO_AK.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/145138_KHIAAK_KO_AK_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/145138_KHIAAK_KO_AK_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT1M30S",
+        "extent_ms": 90000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/145138.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/145138.wav",
+        "format": "audio/x-wav",
+        "extent": "PT1M30S",
+        "extent_ms": 90000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/145138_KHIAAK_KO_AK_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/145138_KHIAAK_KO_AK_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT1M30S",
+        "extent_ms": 90000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://sws.geonames.org/2138089/",
+        "http://vocab.getty.edu/tgn/1098807"
+      ],
+      "notes": [
+        {
+          "value": "NC",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        "New Caledonia, Tiabet"
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-ESLO1_ENT_047",
+    "uri": "https://hdl.handle.net/11280.100/crdo-ESLO1_ENT_047",
+    "title": "ESLO1: entretien 047",
+    "language": "http://lexvo.org/id/iso639-3/fra",
+    "modified": "2014-11-04",
+    "issued": "2014-12-05T15:05:08+01:00",
+    "publishers": [
+      "Laboratoire Ligérien de Linguistique"
+    ],
+    "contributors": [
+      {
+        "name": "Laboratoire Ligérien de Linguistique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/200058210",
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/39685504",
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Sée-Gross, Catherine",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/200058210",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/39685504",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Sée-Gross, Catherine",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "BX11",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "047INC1",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "047INC2",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Baude, Marion",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://lexvo.org/id/iso639-3/fra",
+      "http://ark.bnf.fr/ark:/12148/cb135052099",
+      {
+        "value": "text_and_corpus_linguistics",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      {
+        "value": "Français",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11931498c",
+      "http://ark.bnf.fr/ark:/12148/cb11935508t",
+      "http://ark.bnf.fr/ark:/12148/cb13318380j",
+      "http://ark.bnf.fr/ark:/12148/cb11972068d",
+      "http://ark.bnf.fr/ark:/12148/cb119321514",
+      "http://ark.bnf.fr/ark:/12148/cb11967308c"
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/eslo/ESLO1_ENT_047_C.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_transcriber"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/eslo/ESLO1_ENT_047.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/eslo/ESLO1_ENT_047.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT1H2M59S",
+        "extent_ms": 3779000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/eslo/masters/ESLO1_ENT_047.wav": {
+        "url": "http://cocoon.huma-num.fr/data/eslo/masters/ESLO1_ENT_047.wav",
+        "format": "audio/x-wav",
+        "extent": "PT1H2M59S",
+        "extent_ms": 3779000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/eslo/ESLO1_ENT_047_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/eslo/ESLO1_ENT_047_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT1H2M59S",
+        "extent_ms": 3779000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://sws.geonames.org/6454159/",
+        "http://vocab.getty.edu/tgn/7008337"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Centre, Loiret, Orléans",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-CAYCHAX_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-09-CAYCHAX_SOUND",
+    "title": "ALLOc : Caychax : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:16:38+02:00",
+    "issued": "2010-10-25T18:16:38+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Alazet, Pierre",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-CAYCHAX.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144792_09-CAYCHAX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144792_09-CAYCHAX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M18S",
+        "extent_ms": 198000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144792.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144792.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M18S",
+        "extent_ms": 198000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144792_09-CAYCHAX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144792_09-CAYCHAX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT03M18S",
+        "extent_ms": 198000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Caychax",
+        "http://sws.geonames.org/6446897/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Caychax",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-DUN_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-09-DUN_SOUND",
+    "title": "ALLOc : Dun : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:18:23+02:00",
+    "issued": "2010-10-25T18:18:23+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Tricoire, Raymonde",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-DUN.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144793_09-DUN_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144793_09-DUN_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M07S",
+        "extent_ms": 187000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144793.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144793.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M07S",
+        "extent_ms": 187000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144793_09-DUN_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144793_09-DUN_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT03M07S",
+        "extent_ms": 187000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Dun_(Ariège)",
+        "http://sws.geonames.org/6426188/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Dun",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND",
+    "title": "ALLOc : La Bastide-de-Lordat : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:20:08+02:00",
+    "issued": "2010-10-25T18:20:08+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Roumieu, Berthe",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-LABASTIDE-DE-LORDAT.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144794_09-LABASTIDE-DE-LORDAT_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144794_09-LABASTIDE-DE-LORDAT_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M46S",
+        "extent_ms": 166000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144794.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144794.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M46S",
+        "extent_ms": 166000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144794_09-LABASTIDE-DE-LORDAT_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144794_09-LABASTIDE-DE-LORDAT_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M46S",
+        "extent_ms": 166000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/La_Bastide-de-Lordat",
+        "http://sws.geonames.org/6618238/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, La Bastide-de-Lordat",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-LOUBENS_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-09-LOUBENS_SOUND",
+    "title": "ALLOc : Loubens : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:21:23+02:00",
+    "issued": "2010-10-25T18:21:23+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Faure, Antoinette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-LOUBENS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144795_09-LOUBENS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144795_09-LOUBENS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M28S",
+        "extent_ms": 148000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144795.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144795.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M28S",
+        "extent_ms": 148000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144795_09-LOUBENS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144795_09-LOUBENS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M28S",
+        "extent_ms": 148000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Loubens_(Ariège)",
+        "http://sws.geonames.org/6453612/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Loubens",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-09-MERENS-LES-VALS_SOUND",
+    "title": "ALLOc : Mérens-les-Vals : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:22:24+02:00",
+    "issued": "2010-10-25T18:22:24+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Laurens, François",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-MERENS-LES-VALS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144796_09-MERENS-LES-VALS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144796_09-MERENS-LES-VALS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M45S",
+        "extent_ms": 165000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144796.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144796.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M45S",
+        "extent_ms": 165000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144796_09-MERENS-LES-VALS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144796_09-MERENS-LES-VALS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M45S",
+        "extent_ms": 165000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Mérens-les-Vals",
+        "http://sws.geonames.org/6615269/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Mérens-les-Vals",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-MONTSEGUR_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-09-MONTSEGUR_SOUND",
+    "title": "ALLOc : Montségur : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:23:14+02:00",
+    "issued": "2010-10-25T18:23:14+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Couquet, Marius",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-MONTSEGUR.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144797_09-MONTSEGUR_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144797_09-MONTSEGUR_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M50S",
+        "extent_ms": 170000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144797.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144797.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M50S",
+        "extent_ms": 170000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144797_09-MONTSEGUR_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144797_09-MONTSEGUR_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M50S",
+        "extent_ms": 170000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Montségur",
+        "http://sws.geonames.org/6426260/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Montségur",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-PRAYOLS_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-09-PRAYOLS_SOUND",
+    "title": "ALLOc : Prayols : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:24:06+02:00",
+    "issued": "2010-10-25T18:24:06+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Laguerre, Aimé",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-PRAYOLS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144798_09-PRAYOLS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144798_09-PRAYOLS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M02S",
+        "extent_ms": 182000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144798.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144798.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M02S",
+        "extent_ms": 182000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144798_09-PRAYOLS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144798_09-PRAYOLS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT03M02S",
+        "extent_ms": 182000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Prayols",
+        "http://sws.geonames.org/6426277/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Prayols",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-QUERIGUT_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-09-QUERIGUT_SOUND",
+    "title": "ALLOc : Quérigut : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:24:56+02:00",
+    "issued": "2010-10-25T18:24:56+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Tichadou, Joseph",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-QUERIGUT.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144799_09-QUERIGUT_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144799_09-QUERIGUT_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M51S",
+        "extent_ms": 171000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144799.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144799.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M51S",
+        "extent_ms": 171000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144799_09-QUERIGUT_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144799_09-QUERIGUT_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M51S",
+        "extent_ms": 171000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Quérigut",
+        "http://sws.geonames.org/6618205/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Quérigut",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-SIGUER_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-09-SIGUER_SOUND",
+    "title": "ALLOc : Siguer : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:25:51+02:00",
+    "issued": "2010-10-25T18:25:51+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Caujolle, Joseph",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-SIGUER.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144800_09-SIGUER_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144800_09-SIGUER_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M57S",
+        "extent_ms": 177000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144800.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144800.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M57S",
+        "extent_ms": 177000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144800_09-SIGUER_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144800_09-SIGUER_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M57S",
+        "extent_ms": 177000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Siguer",
+        "http://sws.geonames.org/6426323/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Siguer",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND",
+    "title": "ALLOc : Saint-Martin-d'Oydes : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:26:22+02:00",
+    "issued": "2010-10-25T18:26:22+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Ferriès, Marcel",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-ST-MARTIN-D-OYDES.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144801_09-ST-MARTIN-D-OYDES_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144801_09-ST-MARTIN-D-OYDES_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M05S",
+        "extent_ms": 185000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144801.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144801.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M05S",
+        "extent_ms": 185000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144801_09-ST-MARTIN-D-OYDES_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144801_09-ST-MARTIN-D-OYDES_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT03M05S",
+        "extent_ms": 185000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Saint-Martin-d'Oydes",
+        "http://sws.geonames.org/6426302/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Saint-Martin-d'Oydes",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-SURBA_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-09-SURBA_SOUND",
+    "title": "ALLOc : Surba : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:26:42+02:00",
+    "issued": "2010-10-25T18:26:42+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Roques, Camille",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-SURBA.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144802_09-SURBA_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144802_09-SURBA_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M39S",
+        "extent_ms": 159000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144802.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144802.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M39S",
+        "extent_ms": 159000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144802_09-SURBA_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144802_09-SURBA_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M39S",
+        "extent_ms": 159000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Surba",
+        "http://sws.geonames.org/6426328/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Surba",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-11-GRAMAZIE_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-11-GRAMAZIE_SOUND",
+    "title": "ALLOc : Gramazie : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:27:39+02:00",
+    "issued": "2010-10-25T18:27:39+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Léger, Clémence",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "De Lorenzo, Linda",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-GRAMAZIE.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144803_11-GRAMAZIE_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144803_11-GRAMAZIE_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M27S",
+        "extent_ms": 147000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144803.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144803.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M27S",
+        "extent_ms": 147000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144803_11-GRAMAZIE_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144803_11-GRAMAZIE_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M27S",
+        "extent_ms": 147000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Gramazie",
+        "http://sws.geonames.org/6426695/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aude, Gramazie",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-11-MOLLEVILLE_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-11-MOLLEVILLE_SOUND",
+    "title": "ALLOc : Molleville : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:28:06+02:00",
+    "issued": "2010-10-25T18:28:06+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Cathala, Auguste",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "De Lorenzo, Linda",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-MOLLEVILLE.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144804_11-MOLLEVILLE_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144804_11-MOLLEVILLE_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M53S",
+        "extent_ms": 173000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144804.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144804.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M53S",
+        "extent_ms": 173000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144804_11-MOLLEVILLE_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144804_11-MOLLEVILLE_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M53S",
+        "extent_ms": 173000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Molleville",
+        "http://sws.geonames.org/6426753/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aude, Molleville",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-11-PUIVERT_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-11-PUIVERT_SOUND",
+    "title": "ALLOc : Puivert : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:28:40+02:00",
+    "issued": "2010-10-25T18:28:40+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Maugard, Marie",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "De Lorenzo, Linda",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-PUIVERT.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144805_11-PUIVERT_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144805_11-PUIVERT_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M35S",
+        "extent_ms": 155000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144805.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144805.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M35S",
+        "extent_ms": 155000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144805_11-PUIVERT_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144805_11-PUIVERT_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M35S",
+        "extent_ms": 155000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Puivert",
+        "http://sws.geonames.org/6426809/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aude, Puivert",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-11-RIBOUISSE_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-11-RIBOUISSE_SOUND",
+    "title": "ALLOc : Ribouisse : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:29:32+02:00",
+    "issued": "2010-10-25T18:29:32+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Dournès, Lucien",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "De Lorenzo, Linda",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-RIBOUISSE.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144806_11-RIBOUISSE_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144806_11-RIBOUISSE_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M11S",
+        "extent_ms": 191000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144806.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144806.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M11S",
+        "extent_ms": 191000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144806_11-RIBOUISSE_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144806_11-RIBOUISSE_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT03M11S",
+        "extent_ms": 191000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Ribouisse",
+        "http://sws.geonames.org/6426816/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aude, Ribouisse",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND",
+    "title": "ALLOc : Sonnac-sur-l'Hers : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:29:56+02:00",
+    "issued": "2010-10-25T18:29:56+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Dumons, Marcellin",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "De Lorenzo, Linda",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112"
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-SONNAC-SUR-L-HERS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144807_11-SONNAC-SUR-L-HERS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144807_11-SONNAC-SUR-L-HERS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M27S",
+        "extent_ms": 147000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144807.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144807.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M27S",
+        "extent_ms": 147000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144807_11-SONNAC-SUR-L-HERS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144807_11-SONNAC-SUR-L-HERS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M27S",
+        "extent_ms": 147000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Sonnac-sur-l'Hers",
+        "http://sws.geonames.org/6426874/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aude, Sonnac-sur-l'Hers",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND",
+    "title": "ALLOc : Saint-Martin-Lalande : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:30:27+02:00",
+    "issued": "2010-10-25T18:30:27+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Hugonnet, Pierre",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "De Lorenzo, Linda",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-ST-MARTIN-LALANDE.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144808_11-ST-MARTIN-LALANDE_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144808_11-ST-MARTIN-LALANDE_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01M59S",
+        "extent_ms": 119000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144808.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144808.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01M59S",
+        "extent_ms": 119000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144808_11-ST-MARTIN-LALANDE_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144808_11-ST-MARTIN-LALANDE_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT01M59S",
+        "extent_ms": 119000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Saint-Martin-Lalande",
+        "http://sws.geonames.org/6426853/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aude, Saint-Martin-Lalande",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-AUZITS_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-AUZITS_SOUND",
+    "title": "ALLOc : Auzits : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:31:22+02:00",
+    "issued": "2010-10-25T18:31:22+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Constans, André",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Bosc, Marie-Sophie",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-AUZITS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144810_12-AUZITS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144810_12-AUZITS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M19S",
+        "extent_ms": 199000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144810.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144810.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M19S",
+        "extent_ms": 199000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144810_12-AUZITS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144810_12-AUZITS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT03M19S",
+        "extent_ms": 199000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Auzits",
+        "http://sws.geonames.org/6447048/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Auzits",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-JOUELS_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-JOUELS_SOUND",
+    "title": "ALLOc : Jouels : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:31:21+02:00",
+    "issued": "2010-10-25T18:31:21+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Bayol, Maria",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Bosc, Marie-Sophie",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-JOUELS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144809_12-JOUELS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144809_12-JOUELS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M33S",
+        "extent_ms": 153000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144809.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144809.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M33S",
+        "extent_ms": 153000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144809_12-JOUELS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144809_12-JOUELS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M33S",
+        "extent_ms": 153000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Sauveterre-de-Rouergue",
+        "http://sws.geonames.org/6427053/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Sauveterre-de-Rouergue (Jouels)",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-LACASSAGNE_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-LACASSAGNE_SOUND",
+    "title": "ALLOc : Lacassagne : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:31:43+02:00",
+    "issued": "2010-10-25T18:31:43+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Andrieu, Honoré",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Bosc, Marie-Sophie",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-LACASSAGNE.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144811_12-LACASSAGNE_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144811_12-LACASSAGNE_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M52S",
+        "extent_ms": 172000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144811.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144811.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M52S",
+        "extent_ms": 172000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144811_12-LACASSAGNE_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144811_12-LACASSAGNE_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M52S",
+        "extent_ms": 172000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "southlimit=41.371582; northlimit=51.092804; eastlimit=9.561556; westlimit=-5.142222",
+          "datatype": "http://purl.org/dc/terms/Box",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Lacassagne",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-LANUEJOULS_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-LANUEJOULS_SOUND",
+    "title": "ALLOc : Lanuéjouls : Parabole",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:32:16+02:00",
+    "issued": "2010-10-25T18:32:16+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Garric, Raymond",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Bosc, Marie-Sophie",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-LANUEJOULS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144812_12-LANUEJOULS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144812_12-LANUEJOULS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M34S",
+        "extent_ms": 154000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144812.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144812.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M34S",
+        "extent_ms": 154000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144812_12-LANUEJOULS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144812_12-LANUEJOULS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M34S",
+        "extent_ms": 154000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Lanuéjouls",
+        "http://sws.geonames.org/6615868/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Lanuéjouls",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-MARNAC1LEX_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC1LEX_SOUND",
+    "title": "ALLOc : Marnac",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:33:17+02:00",
+    "issued": "2010-10-25T18:33:17+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/17256845",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Gibily, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Rouchy, Armand",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144813_12-MARNAC1LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144813_12-MARNAC1LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H05M27S",
+        "extent_ms": 3927000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144813.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144813.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H05M27S",
+        "extent_ms": 3927000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144813_12-MARNAC1LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144813_12-MARNAC1LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT01H05M27S",
+        "extent_ms": 3927000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Marnac",
+        "http://sws.geonames.org/6429427/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Dordogne, Marnac",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-MARNAC2LEX_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC2LEX_SOUND",
+    "title": "ALLOc : Marnac-2",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:33:43+02:00",
+    "issued": "2010-10-25T18:33:43+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/17256845",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Gibily, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Rouchy, Armand",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144814_12-MARNAC2LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144814_12-MARNAC2LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H08M08S",
+        "extent_ms": 7688000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144814.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144814.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H08M08S",
+        "extent_ms": 7688000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144814_12-MARNAC2LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144814_12-MARNAC2LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02H08M08S",
+        "extent_ms": 7688000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Marnac",
+        "http://sws.geonames.org/6429427/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Dordogne, Marnac",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-MARNAC3LEX_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC3LEX_SOUND",
+    "title": "ALLOc : Marnac-3",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:33:51+02:00",
+    "issued": "2010-10-25T18:33:51+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/17256845",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Gibily, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Rouchy, Armand",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144815_12-MARNAC3LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144815_12-MARNAC3LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H56M35S",
+        "extent_ms": 6995000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144815.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144815.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H56M35S",
+        "extent_ms": 6995000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144815_12-MARNAC3LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144815_12-MARNAC3LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT01H56M35S",
+        "extent_ms": 6995000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Marnac",
+        "http://sws.geonames.org/6429427/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Dordogne, Marnac",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-MARNAC4MORPHO_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC4MORPHO_SOUND",
+    "title": "ALLOc : Marnac-4",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:34:19+02:00",
+    "issued": "2010-10-25T18:34:19+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/17256845",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Gibily, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Rouchy, Armand",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144816_12-MARNAC4MORPHO_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144816_12-MARNAC4MORPHO_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT11M23S",
+        "extent_ms": 683000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144816.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144816.wav",
+        "format": "audio/x-wav",
+        "extent": "PT11M23S",
+        "extent_ms": 683000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144816_12-MARNAC4MORPHO_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144816_12-MARNAC4MORPHO_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT11M23S",
+        "extent_ms": 683000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Marnac",
+        "http://sws.geonames.org/6429427/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Dordogne, Marnac",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-MARNAC5MORPHO_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC5MORPHO_SOUND",
+    "title": "ALLOc : Marnac-5",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:35:45+02:00",
+    "issued": "2010-10-25T18:35:45+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/17256845",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Gibily, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Rouchy, Armand",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "morphology",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144817_12-MARNAC5MORPHO_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144817_12-MARNAC5MORPHO_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H02M25S",
+        "extent_ms": 3745000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144817.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144817.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H02M25S",
+        "extent_ms": 3745000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144817_12-MARNAC5MORPHO_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144817_12-MARNAC5MORPHO_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT01H02M25S",
+        "extent_ms": 3745000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Marnac",
+        "http://sws.geonames.org/6429427/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Dordogne, Marnac",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-MAYRAN1LEX_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN1LEX_SOUND",
+    "title": "ALLOc : Mayran",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:36:22+02:00",
+    "issued": "2010-10-25T18:36:22+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Boutary Jeannette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Boutary Simon",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Lacombe Ruben",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Clément",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Léa",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Pierre",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144818_12-MAYRAN1LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144818_12-MAYRAN1LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H26M21S",
+        "extent_ms": 5181000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144818.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144818.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H26M21S",
+        "extent_ms": 5181000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144818_12-MAYRAN1LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144818_12-MAYRAN1LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT01H26M21S",
+        "extent_ms": 5181000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Mayran",
+        "http://sws.geonames.org/6426959/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Mayran",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-MAYRAN2LEX_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN2LEX_SOUND",
+    "title": "ALLOc : Mayran",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:36:52+02:00",
+    "issued": "2010-10-25T18:36:52+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Boutary Jeannette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Boutary Simon",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Lacombe Ruben",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Clément",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Léa",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Pierre",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144819_12-MAYRAN2LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144819_12-MAYRAN2LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H06M51S",
+        "extent_ms": 7611000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144819.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144819.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H06M51S",
+        "extent_ms": 7611000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144819_12-MAYRAN2LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144819_12-MAYRAN2LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02H06M51S",
+        "extent_ms": 7611000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Mayran",
+        "http://sws.geonames.org/6426959/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Mayran",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-MAYRAN3LEX_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN3LEX_SOUND",
+    "title": "ALLOc : Mayran-3",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:36:54+02:00",
+    "issued": "2010-10-25T18:36:54+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Boutary Jeannette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Boutary Simon",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Lacombe Ruben",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Clément",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Léa",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Pierre",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144820_12-MAYRAN3LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144820_12-MAYRAN3LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H06M57S",
+        "extent_ms": 7617000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144820.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144820.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H06M57S",
+        "extent_ms": 7617000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144820_12-MAYRAN3LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144820_12-MAYRAN3LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02H06M57S",
+        "extent_ms": 7617000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Mayran",
+        "http://sws.geonames.org/6426959/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Mayran",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-MAYRAN4LEX_SOUND",
+    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN4LEX_SOUND",
+    "title": "ALLOc : Mayran-4",
+    "language": "http://lexvo.org/id/iso639-3/oci",
+    "modified": "2010-10-25T18:37:07+02:00",
+    "issued": "2010-10-25T18:37:07+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Boutary Jeannette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Boutary Simon",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Lacombe Ruben",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Clément",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Léa",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Pierre",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144821_12-MAYRAN4LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144821_12-MAYRAN4LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H06M55S",
+        "extent_ms": 7615000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144821.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144821.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H06M55S",
+        "extent_ms": 7615000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144821_12-MAYRAN4LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144821_12-MAYRAN4LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02H06M55S",
+        "extent_ms": 7615000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Mayran",
+        "http://sws.geonames.org/6426959/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Mayran",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
+  }
+];
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/fixtures/languages.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,43 @@
+export default [
+  { 'id': "http://lexvo.org/id/iso639-3/fra", 'count': 1559 },
+  { 'id': "http://lexvo.org/id/iso639-3/gsw", 'count': 851 },
+  { 'id': "http://lexvo.org/id/iso639-3/bre", 'count': 403 },
+  { 'id': "http://lexvo.org/id/iso639-3/oci", 'count': 344 },
+  { 'id': "http://lexvo.org/id/iso639-3/djk", 'count': 93 },
+  { 'id': "http://lexvo.org/id/iso639-3/lad", 'count': 77 },
+  { 'id': "http://lexvo.org/id/iso639-3/pcd", 'count': 75 },
+  { 'id': "http://lexvo.org/id/iso639-3/frp", 'count': 60 },
+  { 'id': "http://lexvo.org/id/iso639-3/und", 'count': 45 },
+  { 'id': "http://lexvo.org/id/iso639-3/cos", 'count': 40 },
+  { 'id': "http://lexvo.org/id/iso639-3/fsl", 'count': 40 },
+  { 'id': "http://lexvo.org/id/iso639-3/rcf", 'count': 32 },
+  { 'id': "http://lexvo.org/id/iso639-3/fud", 'count': 23 },
+  { 'id': "http://lexvo.org/id/iso639-3/wls", 'count': 20 },
+  { 'id': "http://lexvo.org/id/iso639-3/lsy", 'count': 18 },
+  { 'id': "http://lexvo.org/id/iso639-3/gcf", 'count': 15 },
+  { 'id': "http://lexvo.org/id/iso639-3/nem", 'count': 15 },
+  { 'id': "http://lexvo.org/id/iso639-3/uve", 'count': 13 },
+  { 'id': "http://lexvo.org/id/iso639-3/ane", 'count': 12 },
+  { 'id': "http://lexvo.org/id/iso639-3/axx", 'count': 9 },
+  { 'id': "http://lexvo.org/id/iso639-3/cam", 'count': 9 },
+  { 'id': "http://lexvo.org/id/iso639-3/eng", 'count': 8 },
+  { 'id': "http://lexvo.org/id/iso639-3/iai", 'count': 8 },
+  { 'id': "http://lexvo.org/id/iso639-3/kab", 'count': 8 },
+  { 'id': "http://lexvo.org/id/iso639-3/plu", 'count': 6 },
+  { 'id': "http://lexvo.org/id/iso639-3/bwa", 'count': 4 },
+  { 'id': "http://lexvo.org/id/iso639-3/car", 'count': 4 },
+  { 'id': "http://lexvo.org/id/iso639-3/gcr", 'count': 4 },
+  { 'id': "http://lexvo.org/id/iso639-3/nee", 'count': 4 },
+  { 'id': "http://lexvo.org/id/iso639-3/ell", 'count': 3 },
+  { 'id': "http://lexvo.org/id/iso639-3/deu", 'count': 2 },
+  { 'id': "http://lexvo.org/id/iso639-3/dhv", 'count': 2 },
+  { 'id': "http://lexvo.org/id/iso639-3/nen", 'count': 2 },
+  { 'id': "http://lexvo.org/id/iso639-3/spa", 'count': 2 },
+  { 'id': "http://lexvo.org/id/iso639-3/srn", 'count': 2 },
+  { 'id': "http://lexvo.org/id/iso639-3/swb", 'count': 2 },
+  { 'id': "http://lexvo.org/id/iso639-3/tur", 'count': 2 },
+  { 'id': "http://lexvo.org/id/iso639-3/aji", 'count': 1 },
+  { 'id': "http://lexvo.org/id/iso639-3/ita", 'count': 1 },
+  { 'id': "http://lexvo.org/id/iso639-3/kdk", 'count': 1 },
+  { 'id': "http://lexvo.org/id/iso639-3/nua", 'count': 1 }
+];
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/fixtures/lexvos.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,43 @@
+export default [
+    { 'id': "http://lexvo.org/id/iso639-3/fra", 'name': "français" },
+    { 'id': "http://lexvo.org/id/iso639-3/gsw", 'name': "alémanique" },
+    { 'id': "http://lexvo.org/id/iso639-3/oci", 'name': "occitan" },
+    { 'id': "http://lexvo.org/id/iso639-3/bre", 'name': "breton" },
+    { 'id': "http://lexvo.org/id/iso639-3/djk", 'name': "ndjuka" },
+    { 'id': "http://lexvo.org/id/iso639-3/lad", 'name': "ladino" },
+    { 'id': "http://lexvo.org/id/iso639-3/pcd", 'name': "picard" },
+    { 'id': "http://lexvo.org/id/iso639-3/frp", 'name': "arpitan" },
+    { 'id': "http://lexvo.org/id/iso639-3/und", 'name': "indéterminé" },
+    { 'id': "http://lexvo.org/id/iso639-3/cos", 'name': "corse" },
+    { 'id': "http://lexvo.org/id/iso639-3/fsl", 'name': "langue des signes française" },
+    { 'id': "http://lexvo.org/id/iso639-3/rcf", 'name': "créole réunionnais" },
+    { 'id': "http://lexvo.org/id/iso639-3/fud", 'name': "futunien" },
+    { 'id': "http://lexvo.org/id/iso639-3/wls", 'name': "wallisien" },
+    { 'id': "http://lexvo.org/id/iso639-3/lsy", 'name': "mauritian sign language" },
+    { 'id': "http://lexvo.org/id/iso639-3/gcf", 'name': "guadeloupean creole french" },
+    { 'id': "http://lexvo.org/id/iso639-3/nem", 'name': "nemi" },
+    { 'id': "http://lexvo.org/id/iso639-3/uve", 'name': "fagauvea" },
+    { 'id': "http://lexvo.org/id/iso639-3/ane", 'name': "xârâcùù" },
+    { 'id': "http://lexvo.org/id/iso639-3/axx", 'name': "xaragure" },
+    { 'id': "http://lexvo.org/id/iso639-3/cam", 'name': "cèmuhî" },
+    { 'id': "http://lexvo.org/id/iso639-3/eng", 'name': "anglais" },
+    { 'id': "http://lexvo.org/id/iso639-3/iai", 'name': "iaai" },
+    { 'id': "http://lexvo.org/id/iso639-3/kab", 'name': "kabyle" },
+    { 'id': "http://lexvo.org/id/iso639-3/plu", 'name': "palikur" },
+    { 'id': "http://lexvo.org/id/iso639-3/bwa", 'name': "bwatoo" },
+    { 'id': "http://lexvo.org/id/iso639-3/car", 'name': "karib" },
+    { 'id': "http://lexvo.org/id/iso639-3/gcr", 'name': "créole guyanais" },
+    { 'id': "http://lexvo.org/id/iso639-3/nee", 'name': "nêlêmwa-nixumwak" },
+    { 'id': "http://lexvo.org/id/iso639-3/ell", 'name': "grec" },
+    { 'id': "http://lexvo.org/id/iso639-3/deu", 'name': "allemand" },
+    { 'id': "http://lexvo.org/id/iso639-3/dhv", 'name': "drehu" },
+    { 'id': "http://lexvo.org/id/iso639-3/nen", 'name': "nengone" },
+    { 'id': "http://lexvo.org/id/iso639-3/spa", 'name': "espagnol" },
+    { 'id': "http://lexvo.org/id/iso639-3/srn", 'name': "sranan" },
+    { 'id': "http://lexvo.org/id/iso639-3/swb", 'name': "mahorais" },
+    { 'id': "http://lexvo.org/id/iso639-3/tur", 'name': "turc" },
+    { 'id': "http://lexvo.org/id/iso639-3/aji", 'name': "ajië" },
+    { 'id': "http://lexvo.org/id/iso639-3/ita", 'name': "italien" },
+    { 'id': "http://lexvo.org/id/iso639-3/kdk", 'name': "numee" },
+    { 'id': "http://lexvo.org/id/iso639-3/nua", 'name': "yuaga" }
+];
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/fixtures/themes.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,4597 @@
+export default [
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318415c",
+    "count": 1468,
+    "label": "professions"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119339867",
+    "count": 1113,
+    "label": "famille"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb16604691s",
+    "count": 1102,
+    "label": "travail non rémunéré"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932889r",
+    "count": 1019,
+    "label": "oiseaux"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932496x",
+    "count": 1013,
+    "label": "météorologie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933145f",
+    "count": 1004,
+    "label": "plantes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11930908q",
+    "count": 996,
+    "label": "animaux sauvages"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934786x",
+    "count": 996,
+    "label": "arbres"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931793g",
+    "count": 993,
+    "label": "corps humain"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934882t",
+    "count": 992,
+    "label": "homme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11946662b",
+    "count": 952,
+    "label": "parents et enfants"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931819b",
+    "count": 824,
+    "label": "cuisine"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11965628b",
+    "count": 709,
+    "label": "frères et soeurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11963568t",
+    "count": 663,
+    "label": "religion"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11948031w",
+    "count": 657,
+    "label": "écoles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133188907",
+    "count": 640,
+    "label": "sports"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318351z",
+    "count": 633,
+    "label": "jeux"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11963612g",
+    "count": 618,
+    "label": "vêtements"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11945860z",
+    "count": 610,
+    "label": "santé"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11958830z",
+    "count": 606,
+    "label": "maladies"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119763597",
+    "count": 605,
+    "label": "boissons"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13162676c",
+    "count": 596,
+    "label": "habitations"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119345700",
+    "count": 593,
+    "label": "église catholique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11944168j",
+    "count": 592,
+    "label": "hygiène"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11964747n",
+    "count": 591,
+    "label": "aliments"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119813953",
+    "count": 591,
+    "label": "relief (géographie)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb14447846f",
+    "count": 591,
+    "label": "pièces (architecture)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119310581",
+    "count": 589,
+    "label": "bijoux"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933785b",
+    "count": 589,
+    "label": "vie intellectuelle"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11956938h",
+    "count": 589,
+    "label": "ustensiles de cuisine"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12011791z",
+    "count": 589,
+    "label": "espace"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13162680m",
+    "count": 589,
+    "label": "meubles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11937931x",
+    "count": 574,
+    "label": "perception spatiale"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934798x",
+    "count": 536,
+    "label": "agriculture"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119328694",
+    "count": 513,
+    "label": "animaux"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119375503",
+    "count": 456,
+    "label": "enseignants"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11957099g",
+    "count": 436,
+    "label": "grands-parents et enfants"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11971232q",
+    "count": 415,
+    "label": "fruits"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936442z",
+    "count": 413,
+    "label": "poules"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11940832h",
+    "count": 413,
+    "label": "pigeons"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119759480",
+    "count": 407,
+    "label": "coq"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11961551m",
+    "count": 406,
+    "label": "calendriers"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11930905p",
+    "count": 404,
+    "label": "animaux domestiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119384533",
+    "count": 403,
+    "label": "mesure"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119384564",
+    "count": 403,
+    "label": "outils"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11950185c",
+    "count": 403,
+    "label": "exploitations agricoles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11993757b",
+    "count": 403,
+    "label": "quatre éléments (philosophie)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133189074",
+    "count": 403,
+    "label": "temps"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119591726",
+    "count": 309,
+    "label": "langues"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11970755h",
+    "count": 228,
+    "label": "repentir"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119766112",
+    "count": 228,
+    "label": "miséricorde"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936549n",
+    "count": 221,
+    "label": "multilinguisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11935375d",
+    "count": 218,
+    "label": "français (langue)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318335q",
+    "count": 218,
+    "label": "couple"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133183540",
+    "count": 208,
+    "label": "livres et lecture"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119458243",
+    "count": 202,
+    "label": "relations humaines"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932194d",
+    "count": 201,
+    "label": "linguistique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933029x",
+    "count": 197,
+    "label": "parole"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11978921p",
+    "count": 196,
+    "label": "enfance et jeunesse"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119759527",
+    "count": 194,
+    "label": "accents et accentuation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119481497",
+    "count": 191,
+    "label": "variation linguistique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12099148r",
+    "count": 187,
+    "label": "attitudes linguistiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931564b",
+    "count": 179,
+    "label": "géographie linguistique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119392962",
+    "count": 179,
+    "label": "analyse linguistique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119757609",
+    "count": 179,
+    "label": "régionalismes (linguistique)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11975806s",
+    "count": 176,
+    "label": "pensée politique et sociale"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11947332t",
+    "count": 174,
+    "label": "langage et statut social"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318491g",
+    "count": 173,
+    "label": "acculturation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931472p",
+    "count": 172,
+    "label": "français (langue) -- usage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933281k",
+    "count": 172,
+    "label": "sociolinguistique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119756721",
+    "count": 172,
+    "label": "allemand (langue)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12148936v",
+    "count": 172,
+    "label": "langues menacées"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12042429k",
+    "count": 171,
+    "label": "dialectes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12289036m",
+    "count": 171,
+    "label": "linguistique descriptive"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934740m",
+    "count": 170,
+    "label": "alsacien (dialecte)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11935986q",
+    "count": 170,
+    "label": "dialectologie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12032030g",
+    "count": 170,
+    "label": "idéologie et langage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932512b",
+    "count": 166,
+    "label": "moeurs et coutumes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119344654",
+    "count": 156,
+    "label": "fêtes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931498c",
+    "count": 125,
+    "label": "femmes -- travail"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934124q",
+    "count": 124,
+    "label": "classes sociales"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11943508j",
+    "count": 118,
+    "label": "france -- 1968 (journées de mai)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932417s",
+    "count": 117,
+    "label": "mariage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb135052099",
+    "count": 114,
+    "label": "loisirs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933804s",
+    "count": 111,
+    "label": "viticulture"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931821w",
+    "count": 99,
+    "label": "cuisine (oeufs)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb122187674",
+    "count": 99,
+    "label": "guerre mondiale (1939-1945) -- récits personnels"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11939659z",
+    "count": 97,
+    "label": "sorcellerie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318591r",
+    "count": 97,
+    "label": "artisanat"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11935399d",
+    "count": 92,
+    "label": "tabac"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119348746",
+    "count": 87,
+    "label": "fromage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb166872169",
+    "count": 86,
+    "label": "fromagers (personnes)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119440626",
+    "count": 85,
+    "label": "bouchers"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11948339g",
+    "count": 85,
+    "label": "travailleurs forestiers"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11967261j",
+    "count": 85,
+    "label": "houblon"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119768259",
+    "count": 85,
+    "label": "chanvre"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb123257909",
+    "count": 85,
+    "label": "façons culturales"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13162695n",
+    "count": 83,
+    "label": "vocabulaire"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318355b",
+    "count": 78,
+    "label": "logement"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11935508t",
+    "count": 70,
+    "label": "latin (langue)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119361486",
+    "count": 62,
+    "label": "comportement humain"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934463f",
+    "count": 53,
+    "label": "enseignement"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb126532730",
+    "count": 53,
+    "label": "voyages"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11940294d",
+    "count": 51,
+    "label": "bourgeoisie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932931q",
+    "count": 46,
+    "label": "paris (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119404970",
+    "count": 46,
+    "label": "rites et cérémonies"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13319003h",
+    "count": 42,
+    "label": "quartiers (urbanisme)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119605176",
+    "count": 38,
+    "label": "sourds"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12648912q",
+    "count": 38,
+    "label": "surdité"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11963511v",
+    "count": 37,
+    "label": "langues -- étude et enseignement"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119677899",
+    "count": 35,
+    "label": "argent (monnaie)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12074030s",
+    "count": 35,
+    "label": "centres médico-psycho-pédagogiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133183660",
+    "count": 35,
+    "label": "musique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12226093g",
+    "count": 34,
+    "label": "langue des signes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318380j",
+    "count": 33,
+    "label": "syndicats"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318549z",
+    "count": 33,
+    "label": "vacances"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936326f",
+    "count": 32,
+    "label": "écriture"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11944279g",
+    "count": 31,
+    "label": "pêche"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119325308",
+    "count": 30,
+    "label": "mort"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119336256",
+    "count": 30,
+    "label": "transports urbains"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11949006x",
+    "count": 30,
+    "label": "écoles privées"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11939974p",
+    "count": 29,
+    "label": "enseignement supérieur"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119410943",
+    "count": 27,
+    "label": "évasions"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb14408233v",
+    "count": 27,
+    "label": "perspective temporelle"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11930996t",
+    "count": 26,
+    "label": "automobiles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931355t",
+    "count": 26,
+    "label": "enfants en difficulté d'apprentissage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12098726v",
+    "count": 25,
+    "label": "produits du terroir"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931683w",
+    "count": 24,
+    "label": "cafés"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931755x",
+    "count": 24,
+    "label": "communication visuelle"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931841h",
+    "count": 23,
+    "label": "danse"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932997n",
+    "count": 23,
+    "label": "produits agricoles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119336465",
+    "count": 23,
+    "label": "télévision"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119418302",
+    "count": 23,
+    "label": "crises économiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133183409",
+    "count": 23,
+    "label": "émigration et immigration"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11971502m",
+    "count": 22,
+    "label": "commerce"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119767371",
+    "count": 22,
+    "label": "information"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133188384",
+    "count": 22,
+    "label": "clans"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933488j",
+    "count": 21,
+    "label": "sologne (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11950170b",
+    "count": 21,
+    "label": "employés de bureau"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931247x",
+    "count": 20,
+    "label": "enfants inadaptés -- éducation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11974557m",
+    "count": 20,
+    "label": "voisinage (relations humaines)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb122368540",
+    "count": 20,
+    "label": "immigrés"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb135540729",
+    "count": 20,
+    "label": "activités culturelles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119324184",
+    "count": 19,
+    "label": "rites et cérémonies du mariage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11939893p",
+    "count": 19,
+    "label": "centres culturels"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119481048",
+    "count": 19,
+    "label": "habitations à loyer modéré"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119511608",
+    "count": 19,
+    "label": "solidarité"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11951701d",
+    "count": 19,
+    "label": "comportement verbal"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11978392j",
+    "count": 19,
+    "label": "petits commerces"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb123041695",
+    "count": 19,
+    "label": "guerre mondiale (1939-1945) -- récits personnels juifs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318396x",
+    "count": 19,
+    "label": "vol (droit)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318436b",
+    "count": 19,
+    "label": "guerre"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13545003h",
+    "count": 19,
+    "label": "système électoral"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb118771917",
+    "count": 18,
+    "label": "maison de la culture. orléans"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11958962v",
+    "count": 18,
+    "label": "naissance"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb122954766",
+    "count": 18,
+    "label": "grèves et lock-out -- france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb124795302",
+    "count": 17,
+    "label": "magasins d'alimentation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133190265",
+    "count": 17,
+    "label": "sécurité"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13319048g",
+    "count": 17,
+    "label": "chansons"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11940030m",
+    "count": 16,
+    "label": "multiculturalisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13171475f",
+    "count": 16,
+    "label": "débuts professionnels"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133192210",
+    "count": 16,
+    "label": "sans-abri"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb16971902d",
+    "count": 16,
+    "label": "squares"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932762f",
+    "count": 15,
+    "label": "restaurants"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119361188",
+    "count": 15,
+    "label": "cinéma"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11938756z",
+    "count": 15,
+    "label": "noël"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11938827n",
+    "count": 15,
+    "label": "français (langue) -- étude et enseignement"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119619197",
+    "count": 15,
+    "label": "istanbul (turquie)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13162854m",
+    "count": 15,
+    "label": "bicyclettes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11939093g",
+    "count": 14,
+    "label": "guerre mondiale (1914-1918)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11939426f",
+    "count": 14,
+    "label": "cinémas"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12295700s",
+    "count": 14,
+    "label": "grève générale (france. - 1968)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12524773t",
+    "count": 14,
+    "label": "fêtes religieuses -- christianisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931803z",
+    "count": 13,
+    "label": "couture"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931827z",
+    "count": 13,
+    "label": "culture"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11945486j",
+    "count": 13,
+    "label": "jeanne d'arc (sainte, 1412-1431)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119500644",
+    "count": 13,
+    "label": "chômage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11972068d",
+    "count": 13,
+    "label": "ouvriers qualifiés"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120105768",
+    "count": 13,
+    "label": "juifs espagnols"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933895x",
+    "count": 12,
+    "label": "pain"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11944214w",
+    "count": 12,
+    "label": "olivier -- cultures"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11966857q",
+    "count": 12,
+    "label": "enfants -- mort"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12337059x",
+    "count": 12,
+    "label": "internet"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12477289d",
+    "count": 12,
+    "label": "violence urbaine"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12647843g",
+    "count": 12,
+    "label": "service militaire obligatoire"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133408542",
+    "count": 12,
+    "label": "communisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15846779q",
+    "count": 12,
+    "label": "conflit (sociologie)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933779d",
+    "count": 11,
+    "label": "vidéo"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11941579k",
+    "count": 11,
+    "label": "shoah"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119582998",
+    "count": 11,
+    "label": "usines"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11996115g",
+    "count": 11,
+    "label": "guerre mondiale (1939-1945)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb121235840",
+    "count": 11,
+    "label": "âges de la vie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb125326978",
+    "count": 11,
+    "label": "salonique (vilayet)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318322c",
+    "count": 11,
+    "label": "associations"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133183273",
+    "count": 11,
+    "label": "cannibalisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133190710",
+    "count": 11,
+    "label": "patrimoine culturel"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119325757",
+    "count": 10,
+    "label": "mythe"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119344952",
+    "count": 10,
+    "label": "marchés"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11935376r",
+    "count": 10,
+    "label": "formation professionnelle"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119418186",
+    "count": 10,
+    "label": "angleterre (gb)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11953067w",
+    "count": 10,
+    "label": "animaux aquatiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11954249r",
+    "count": 10,
+    "label": "ouvriers non qualifiés"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11955218q",
+    "count": 10,
+    "label": "éducation familiale"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11970707n",
+    "count": 10,
+    "label": "prophéties"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318614k",
+    "count": 10,
+    "label": "spectacles et divertissements"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119311589",
+    "count": 9,
+    "label": "chasse"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119337991",
+    "count": 9,
+    "label": "violence"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119342360",
+    "count": 9,
+    "label": "impôt"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119365307",
+    "count": 9,
+    "label": "enseignement -- réforme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936663g",
+    "count": 9,
+    "label": "taxe sur la valeur ajoutée"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11952208p",
+    "count": 9,
+    "label": "cours d'eau"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12185052q",
+    "count": 9,
+    "label": "vin de corse"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318422n",
+    "count": 9,
+    "label": "tourisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb161974375",
+    "count": 9,
+    "label": "prières"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119310779",
+    "count": 8,
+    "label": "bretagne (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932434c",
+    "count": 8,
+    "label": "mathématiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119387230",
+    "count": 8,
+    "label": "commerçants"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119569104",
+    "count": 8,
+    "label": "éducation à la citoyenneté"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119572542",
+    "count": 8,
+    "label": "paris (france) -- arrondissement (11e)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11961945s",
+    "count": 8,
+    "label": "loiret (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11975896k",
+    "count": 8,
+    "label": "poisson"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb125694464",
+    "count": 8,
+    "label": "mondialisation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb131627112",
+    "count": 8,
+    "label": "éducation physique et sportive"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133199526",
+    "count": 8,
+    "label": "sécurité urbaine"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb118621011",
+    "count": 7,
+    "label": "confédération générale du travail. france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11930867z",
+    "count": 7,
+    "label": "allemagne"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933161p",
+    "count": 7,
+    "label": "poésie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934371s",
+    "count": 7,
+    "label": "pieds-noirs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936161d",
+    "count": 7,
+    "label": "coquillages"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11937010g",
+    "count": 7,
+    "label": "somme (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119382735",
+    "count": 7,
+    "label": "banlieues"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11958119h",
+    "count": 7,
+    "label": "crabes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11965068x",
+    "count": 7,
+    "label": "tonalité"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11974022k",
+    "count": 7,
+    "label": "france (sud)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119766650",
+    "count": 7,
+    "label": "magasins"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119771604",
+    "count": 7,
+    "label": "couture (profession)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11977219z",
+    "count": 7,
+    "label": "blanchissage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12000217q",
+    "count": 7,
+    "label": "corbie (somme)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12321349s",
+    "count": 7,
+    "label": "algériens d'origine française"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb126494713",
+    "count": 7,
+    "label": "scouts"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13319064q",
+    "count": 7,
+    "label": "science politique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13320451h",
+    "count": 7,
+    "label": "communautarisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb162311145",
+    "count": 7,
+    "label": "coexistence religieuse"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11865551d",
+    "count": 6,
+    "label": "société nationale des chemins de fer français"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931346v",
+    "count": 6,
+    "label": "élevage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119319544",
+    "count": 6,
+    "label": "éducation sexuelle de la jeunesse"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932942c",
+    "count": 6,
+    "label": "peinture"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933049j",
+    "count": 6,
+    "label": "pédagogie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934299w",
+    "count": 6,
+    "label": "lyon (rhône)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934328n",
+    "count": 6,
+    "label": "sécurité sociale"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936934q",
+    "count": 6,
+    "label": "stations de radio"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119391943",
+    "count": 6,
+    "label": "infirmières"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119449720",
+    "count": 6,
+    "label": "français (langue) -- emprunts anglais"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11948327g",
+    "count": 6,
+    "label": "tours (indre-et-loire)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119485240",
+    "count": 6,
+    "label": "diable"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11953342c",
+    "count": 6,
+    "label": "veuves"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11975580c",
+    "count": 6,
+    "label": "paris (france) -- arrondissement (07e)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11975823c",
+    "count": 6,
+    "label": "incendies"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb123083581",
+    "count": 6,
+    "label": "décentralisation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15011194r",
+    "count": 6,
+    "label": "référendum -- france -- 1969"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119242719",
+    "count": 5,
+    "label": "roger secrétain (1902-1982)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11930860j",
+    "count": 5,
+    "label": "algérie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931491z",
+    "count": 5,
+    "label": "rites et cérémonies funéraires"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931904k",
+    "count": 5,
+    "label": "drogues et jeunesse"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932966c",
+    "count": 5,
+    "label": "zones piétonnières"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119341779",
+    "count": 5,
+    "label": "eure-et-loir (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119377452",
+    "count": 5,
+    "label": "équipements collectifs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11937783m",
+    "count": 5,
+    "label": "camping"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119541302",
+    "count": 5,
+    "label": "guerre mondiale (1939-1945) -- juifs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119549815",
+    "count": 5,
+    "label": "pauvreté"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119596539",
+    "count": 5,
+    "label": "colonisation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119757144",
+    "count": 5,
+    "label": "coiffeurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119767449",
+    "count": 5,
+    "label": "punition"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119793082",
+    "count": 5,
+    "label": "trahison"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12123592m",
+    "count": 5,
+    "label": "diffusion des langues"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12243616c",
+    "count": 5,
+    "label": "librairies"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12565961f",
+    "count": 5,
+    "label": "oiseaux des villes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12647612n",
+    "count": 5,
+    "label": "socialisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb126996694",
+    "count": 5,
+    "label": "embourgeoisement (urbanisme)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133190025",
+    "count": 5,
+    "label": "organisation communautaire"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb137450433",
+    "count": 5,
+    "label": "11 septembre 2001, attentats du (états-unis)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15058414m",
+    "count": 5,
+    "label": "promenade"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15071919f",
+    "count": 5,
+    "label": "voiles islamiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb118667814",
+    "count": 4,
+    "label": "parti communiste français"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11872237h",
+    "count": 4,
+    "label": "confédération française démocratique du travail"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11877881v",
+    "count": 4,
+    "label": "parti communiste français. fédération. loiret"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11930969x",
+    "count": 4,
+    "label": "art et technologie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931584z",
+    "count": 4,
+    "label": "grande-bretagne"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119317924",
+    "count": 4,
+    "label": "conversation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119318734",
+    "count": 4,
+    "label": "devinettes et énigmes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119323045",
+    "count": 4,
+    "label": "londres (gb)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932357r",
+    "count": 4,
+    "label": "miel"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119327315",
+    "count": 4,
+    "label": "récits de voyages"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932823t",
+    "count": 4,
+    "label": "pollution"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933633t",
+    "count": 4,
+    "label": "tsiganes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119338054",
+    "count": 4,
+    "label": "vitraux"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11935295r",
+    "count": 4,
+    "label": "français (langue) -- argot"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11935691g",
+    "count": 4,
+    "label": "architecture -- 1945-...."
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936608b",
+    "count": 4,
+    "label": "beauce (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119387339",
+    "count": 4,
+    "label": "voix"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11940388r",
+    "count": 4,
+    "label": "guerre mondiale (1939-1945) -- mouvements de résistance"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11941357q",
+    "count": 4,
+    "label": "boulangerie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11946657r",
+    "count": 4,
+    "label": "suicide"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119466610",
+    "count": 4,
+    "label": "enfants maltraités"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119480207",
+    "count": 4,
+    "label": "communauté européenne"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11948337s",
+    "count": 4,
+    "label": "travail à la chaîne"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119498409",
+    "count": 4,
+    "label": "assurance"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11950204t",
+    "count": 4,
+    "label": "fromage de chèvre"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11952801x",
+    "count": 4,
+    "label": "or -- mines et extraction"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11954068g",
+    "count": 4,
+    "label": "colonies de vacances"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119544108",
+    "count": 4,
+    "label": "paris (france) -- arrondissement (12e)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119577235",
+    "count": 4,
+    "label": "guerre mondiale (1939-1945) -- prisonniers et prisons"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119586741",
+    "count": 4,
+    "label": "bombardement aérien"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11961917j",
+    "count": 4,
+    "label": "izmir (turquie)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11963747d",
+    "count": 4,
+    "label": "france. armée -- officiers"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11972018v",
+    "count": 4,
+    "label": "industriels"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11977269h",
+    "count": 4,
+    "label": "bénédiction et malédiction"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11978815g",
+    "count": 4,
+    "label": "brebis"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12124561k",
+    "count": 4,
+    "label": "chouettes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12226069m",
+    "count": 4,
+    "label": "sorcières"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb122375025",
+    "count": 4,
+    "label": "fromage fermier"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12288500r",
+    "count": 4,
+    "label": "chèvres"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12385680z",
+    "count": 4,
+    "label": "vendanges"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12530315s",
+    "count": 4,
+    "label": "halloween"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318425p",
+    "count": 4,
+    "label": "prisons"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318536m",
+    "count": 4,
+    "label": "aide sociale"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133186168",
+    "count": 4,
+    "label": "vie chrétienne"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318683d",
+    "count": 4,
+    "label": "coût et niveau de la vie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13319685b",
+    "count": 4,
+    "label": "bandes de jeunes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb150979822",
+    "count": 4,
+    "label": "campagne"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb157175606",
+    "count": 4,
+    "label": "facebook (site web)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb16278021p",
+    "count": 4,
+    "label": "économie rurale"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11865411w",
+    "count": 3,
+    "label": "régie nationale des usines renault"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931511r",
+    "count": 3,
+    "label": "français (langue) -- langue parlée"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119321514",
+    "count": 3,
+    "label": "jardinage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932327t",
+    "count": 3,
+    "label": "marins"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119323463",
+    "count": 3,
+    "label": "menuiserie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119324273",
+    "count": 3,
+    "label": "marseille (bouches-du-rhône)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119324858",
+    "count": 3,
+    "label": "mères et enfants"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119328810",
+    "count": 3,
+    "label": "mer"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119339460",
+    "count": 3,
+    "label": "orthophonie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119340264",
+    "count": 3,
+    "label": "agriculteurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119340353",
+    "count": 3,
+    "label": "allocations familiales"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119340771",
+    "count": 3,
+    "label": "banques -- personnel"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934289k",
+    "count": 3,
+    "label": "haute-loire (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119342914",
+    "count": 3,
+    "label": "lorraine (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934482q",
+    "count": 3,
+    "label": "transports ferroviaires"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934650n",
+    "count": 3,
+    "label": "généalogie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11935237k",
+    "count": 3,
+    "label": "professeurs des écoles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936410b",
+    "count": 3,
+    "label": "abattoirs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11938499d",
+    "count": 3,
+    "label": "antisémitisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11940160t",
+    "count": 3,
+    "label": "nancy (meurthe-et-moselle)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119401913",
+    "count": 3,
+    "label": "ordinateurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11940288g",
+    "count": 3,
+    "label": "blois (loir-et-cher)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11941361z",
+    "count": 3,
+    "label": "boucherie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11944034z",
+    "count": 3,
+    "label": "examens"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11946074p",
+    "count": 3,
+    "label": "mères et filles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119511352",
+    "count": 3,
+    "label": "secrétaires"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11952108d",
+    "count": 3,
+    "label": "pithiviers (loiret)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11954983v",
+    "count": 3,
+    "label": "personnel -- formation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11956986c",
+    "count": 3,
+    "label": null
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11958196z",
+    "count": 3,
+    "label": "gien (loiret)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119589307",
+    "count": 3,
+    "label": "montreuil (seine-saint-denis)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119623519",
+    "count": 3,
+    "label": "techniciens"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119638648",
+    "count": 3,
+    "label": "meung-sur-loire (loiret)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119654937",
+    "count": 3,
+    "label": "adoption"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11967821z",
+    "count": 3,
+    "label": "baux"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11970701k",
+    "count": 3,
+    "label": "professions libérales"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11974329t",
+    "count": 3,
+    "label": "employées de maison"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11974536n",
+    "count": 3,
+    "label": "bénévolat"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11974602m",
+    "count": 3,
+    "label": "plovdiv (bulgarie)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11976292s",
+    "count": 3,
+    "label": "récolte"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11976379v",
+    "count": 3,
+    "label": "travaux publics"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11976726c",
+    "count": 3,
+    "label": "taxis"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119771170",
+    "count": 3,
+    "label": "eau salée"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11978307g",
+    "count": 3,
+    "label": "mendicité"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119800177",
+    "count": 3,
+    "label": "eau en agriculture"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119814403",
+    "count": 3,
+    "label": "yom kippour"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119914064",
+    "count": 3,
+    "label": "normandie (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120009467",
+    "count": 3,
+    "label": "ogres"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120119936",
+    "count": 3,
+    "label": "écoles françaises"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12013374r",
+    "count": 3,
+    "label": "voyants"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12015793m",
+    "count": 3,
+    "label": "écrivains de langue française"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12061855d",
+    "count": 3,
+    "label": "camescopes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12488505t",
+    "count": 3,
+    "label": "fours à pain"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12527794h",
+    "count": 3,
+    "label": "nourrissons -- mort"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb129081931",
+    "count": 3,
+    "label": null
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318313d",
+    "count": 3,
+    "label": "diffusion de la culture"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318710g",
+    "count": 3,
+    "label": "personnel -- mutations"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133198220",
+    "count": 3,
+    "label": "français d'origine italienne"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133308289",
+    "count": 3,
+    "label": "buses (oiseaux)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb146080778",
+    "count": 3,
+    "label": "réseau des bibliothèques d'orléans"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15120286j",
+    "count": 3,
+    "label": "figement (linguistique)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb16231330z",
+    "count": 3,
+    "label": "viande -- industrie et commerce"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb16578930n",
+    "count": 3,
+    "label": "buralistes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb118630835",
+    "count": 2,
+    "label": "chambre de commerce et d'industrie. loiret"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11863754h",
+    "count": 2,
+    "label": "france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11868475v",
+    "count": 2,
+    "label": "électricité de france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb118736982",
+    "count": 2,
+    "label": "bibliothèque municipale. orléans"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb118967018",
+    "count": 2,
+    "label": "jacques chirac"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119085187",
+    "count": 2,
+    "label": "roman jakobson (1896-1982)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11918933f",
+    "count": 2,
+    "label": "charles péguy (1873-1914)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931270f",
+    "count": 2,
+    "label": "esclavage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119312786",
+    "count": 2,
+    "label": "espagne"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119313712",
+    "count": 2,
+    "label": "états-unis"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119314971",
+    "count": 2,
+    "label": "femmes -- conditions sociales"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931600c",
+    "count": 2,
+    "label": "grèce"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931650x",
+    "count": 2,
+    "label": "aube (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931724n",
+    "count": 2,
+    "label": "congrès et conférences"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931736n",
+    "count": 2,
+    "label": "côtes-d'armor (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119319993",
+    "count": 2,
+    "label": "handicapés"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932059m",
+    "count": 2,
+    "label": "hôpitaux -- administration"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119321456",
+    "count": 2,
+    "label": "italie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932605b",
+    "count": 2,
+    "label": "navigation à voile"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933068t",
+    "count": 2,
+    "label": "perception"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933091b",
+    "count": 2,
+    "label": "pharmacie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933113t",
+    "count": 2,
+    "label": "photographie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119335713",
+    "count": 2,
+    "label": "les sables-d'olonne (vendée)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119336345",
+    "count": 2,
+    "label": "tunisie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933740c",
+    "count": 2,
+    "label": "urbanisation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933749g",
+    "count": 2,
+    "label": "vendée (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933752c",
+    "count": 2,
+    "label": "vie urbaine"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934132b",
+    "count": 2,
+    "label": "comptables"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119341539",
+    "count": 2,
+    "label": "discussion"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119342000",
+    "count": 2,
+    "label": "gauche (science politique)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934249b",
+    "count": 2,
+    "label": "israël"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119353831",
+    "count": 2,
+    "label": "laine"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119362234",
+    "count": 2,
+    "label": "dessin"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936822f",
+    "count": 2,
+    "label": "américains"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936922q",
+    "count": 2,
+    "label": "génie civil"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11937007k",
+    "count": 2,
+    "label": "service national"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11937473g",
+    "count": 2,
+    "label": "mobilité sociale"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119384444",
+    "count": 2,
+    "label": "horloges et montres"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119402874",
+    "count": 2,
+    "label": "bourges (cher)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11940600b",
+    "count": 2,
+    "label": "sentiments"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11941483j",
+    "count": 2,
+    "label": "éducation des enfants"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11941781p",
+    "count": 2,
+    "label": "paris (france) -- arrondissement (14e)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11941849g",
+    "count": 2,
+    "label": "france -- 1789-1799 (révolution)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11941871n",
+    "count": 2,
+    "label": "charbon"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11942845b",
+    "count": 2,
+    "label": "amiens (somme)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119440192",
+    "count": 2,
+    "label": "différences entre sexes en éducation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11945306s",
+    "count": 2,
+    "label": "baccalauréat"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11946068r",
+    "count": 2,
+    "label": "mariage interethnique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119468261",
+    "count": 2,
+    "label": "maïs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11949556v",
+    "count": 2,
+    "label": "goût de la lecture"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11949715t",
+    "count": 2,
+    "label": "réunions"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11950793n",
+    "count": 2,
+    "label": "limoges (haute-vienne)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119508185",
+    "count": 2,
+    "label": "mécaniciens"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11951017v",
+    "count": 2,
+    "label": "immobilier"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11951076c",
+    "count": 2,
+    "label": "propriétaires et locataires"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11953073t",
+    "count": 2,
+    "label": "abeilles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119540674",
+    "count": 2,
+    "label": "climat"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11954213r",
+    "count": 2,
+    "label": "kibboutz"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11954492f",
+    "count": 2,
+    "label": "montargis (loiret)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11955551c",
+    "count": 2,
+    "label": "orléans (loiret)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11957060f",
+    "count": 2,
+    "label": "écoles publiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119591110",
+    "count": 2,
+    "label": "couleurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11959251h",
+    "count": 2,
+    "label": "éducation politique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11959660k",
+    "count": 2,
+    "label": "conducteurs de camion"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119618298",
+    "count": 2,
+    "label": "huile d'olive"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11961986c",
+    "count": 2,
+    "label": "lyon (rhône) -- quartier de la guillotière"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11962186d",
+    "count": 2,
+    "label": "saint-ouen (seine-saint-denis)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11963165p",
+    "count": 2,
+    "label": "auvergne (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119632727",
+    "count": 2,
+    "label": "châteauroux (indre)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11963528k",
+    "count": 2,
+    "label": "lycées"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119654681",
+    "count": 2,
+    "label": "porc (viande)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11967308c",
+    "count": 2,
+    "label": "peintres en batiment"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119694084",
+    "count": 2,
+    "label": "chauffage urbain"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11970756v",
+    "count": 2,
+    "label": "représentants de commerce"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119719032",
+    "count": 2,
+    "label": "dactylos"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11973173h",
+    "count": 2,
+    "label": "alliances"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11973335h",
+    "count": 2,
+    "label": "caravaning"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11973645n",
+    "count": 2,
+    "label": "entreprises familiales"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119755079",
+    "count": 2,
+    "label": "olivet (loiret)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11975581q",
+    "count": 2,
+    "label": "paris (france) -- arrondissement (09e)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11975907d",
+    "count": 2,
+    "label": "fonctionnaires"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11976138q",
+    "count": 2,
+    "label": "mouches"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11976333j",
+    "count": 2,
+    "label": "soleil"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11977699j",
+    "count": 2,
+    "label": "chimie agricole"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11978298b",
+    "count": 2,
+    "label": "classes mixtes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119783529",
+    "count": 2,
+    "label": "cours du soir"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119783707",
+    "count": 2,
+    "label": "contremaîtres"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119789372",
+    "count": 2,
+    "label": "accidents de la route"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11979408b",
+    "count": 2,
+    "label": "aristocratie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11980836q",
+    "count": 2,
+    "label": "pistes cyclables"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11981770v",
+    "count": 2,
+    "label": "odeurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11982150t",
+    "count": 2,
+    "label": "troubles d'articulation de la parole -- chez l'enfant"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12017858v",
+    "count": 2,
+    "label": "lavoirs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12037761w",
+    "count": 2,
+    "label": "transports routiers -- personnel"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12046403v",
+    "count": 2,
+    "label": "examens médicaux"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120573736",
+    "count": 2,
+    "label": "yves montand (1921-1991)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12098253c",
+    "count": 2,
+    "label": "corbeaux (oiseaux)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12112242s",
+    "count": 2,
+    "label": "chimie -- étude et enseignement"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb121155321",
+    "count": 2,
+    "label": "science"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12124288s",
+    "count": 2,
+    "label": "langues de spécialité"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12128999b",
+    "count": 2,
+    "label": "guerre mondiale (1939-1945) -- destruction et pillage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12155471g",
+    "count": 2,
+    "label": "union des démocrates pour la république. france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12185533t",
+    "count": 2,
+    "label": "guerre mondiale (1939-1945) -- yougoslavie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12293358h",
+    "count": 2,
+    "label": "fonctionnaires -- mutations"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12301991t",
+    "count": 2,
+    "label": "médailles religieuses"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12335243m",
+    "count": 2,
+    "label": "pêche à pied"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb123389182",
+    "count": 2,
+    "label": "relations orthophoniste-patient"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12377846m",
+    "count": 2,
+    "label": "verre -- fabrication"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12403330m",
+    "count": 2,
+    "label": "roman francophone"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12416255m",
+    "count": 2,
+    "label": "niveaux de langue"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12481481z",
+    "count": 2,
+    "label": "dialogue"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12521983z",
+    "count": 2,
+    "label": "victimes d'accidents de la route"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12571870c",
+    "count": 2,
+    "label": "émancipation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb125736186",
+    "count": 2,
+    "label": "bibliothèque nationale de france -- site françois mitterrand"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb131591696",
+    "count": 2,
+    "label": null
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13162689q",
+    "count": 2,
+    "label": "théâtre"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13162693z",
+    "count": 2,
+    "label": "urbanisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb131742539",
+    "count": 2,
+    "label": "transgression"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318444z",
+    "count": 2,
+    "label": "archéologie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318488k",
+    "count": 2,
+    "label": "participation politique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb145972507",
+    "count": 2,
+    "label": "français d'origine portugaise"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15224737v",
+    "count": 2,
+    "label": null
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb152383059",
+    "count": 2,
+    "label": "république démocratique allemande (1949-1990)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15576505q",
+    "count": 2,
+    "label": "meubles -- reproduction"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15617066q",
+    "count": 2,
+    "label": "métiers de l'alimentation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15762937m",
+    "count": 2,
+    "label": "louannec (côtes-d'armor)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb16648129s",
+    "count": 2,
+    "label": "entraide familiale"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb166943491",
+    "count": 2,
+    "label": "annette poulard (1851-1931)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb16776116r",
+    "count": 2,
+    "label": "tics de langage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11385890p",
+    "count": 1,
+    "label": "bourse du travail. orléans"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb118631169",
+    "count": 1,
+    "label": "charbonnages de france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11863482x",
+    "count": 1,
+    "label": "arts et métiers paristech"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb118640733",
+    "count": 1,
+    "label": "france. ministère des affaires étrangères (1588-2007)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11865077q",
+    "count": 1,
+    "label": "nations unies. commission économique pour l'europe"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb118663753",
+    "count": 1,
+    "label": "ibm france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb118668415",
+    "count": 1,
+    "label": "parti  radical. france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11869542d",
+    "count": 1,
+    "label": "force ouvrière. france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11871323v",
+    "count": 1,
+    "label": "assurances générales de france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11872745h",
+    "count": 1,
+    "label": "gaz de france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb118746342",
+    "count": 1,
+    "label": "centre régional de documentation pédagogique. orléans"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11874885h",
+    "count": 1,
+    "label": "etablissement chenesseau"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11878733z",
+    "count": 1,
+    "label": "sanctuaires notre-dame de lourdes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11879709b",
+    "count": 1,
+    "label": "confédération générale du travail. union départementale. france. loiret"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb118908880",
+    "count": 1,
+    "label": "jean-jacques becker"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11893806j",
+    "count": 1,
+    "label": "georges brassens (1921-1981)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11894455w",
+    "count": 1,
+    "label": "annabel buffet (1928-2005)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11897013k",
+    "count": 1,
+    "label": "georges clemenceau (1841-1929)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11897143s",
+    "count": 1,
+    "label": "jean cocteau (1889-1963)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11904345m",
+    "count": 1,
+    "label": "charles de gaulle (1890-1970)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11904577s",
+    "count": 1,
+    "label": "maurice genevoix (1890-1980)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119049291",
+    "count": 1,
+    "label": "guillaume gillet (1912-1987)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119115569",
+    "count": 1,
+    "label": "le corbusier (1887-1965)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11916320z",
+    "count": 1,
+    "label": "françois mitterrand (1916-1996)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11916599s",
+    "count": 1,
+    "label": "michel de montaigne (1533-1592)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119207126",
+    "count": 1,
+    "label": "marcel proust (1871-1922)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11921205s",
+    "count": 1,
+    "label": "benoît xvi (pape)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11923735k",
+    "count": 1,
+    "label": "jean-paul sartre (1905-1980)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11925722q",
+    "count": 1,
+    "label": "pierre sudreau (1919-2012)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11930875k",
+    "count": 1,
+    "label": "amérique du nord"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119308987",
+    "count": 1,
+    "label": "anglais (langue)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119310790",
+    "count": 1,
+    "label": "bridge (jeu)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931081j",
+    "count": 1,
+    "label": "brocante"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119311318",
+    "count": 1,
+    "label": "massif central (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931145z",
+    "count": 1,
+    "label": "champignons"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931150j",
+    "count": 1,
+    "label": "chansons paillardes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119311767",
+    "count": 1,
+    "label": "cheveux"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119312368",
+    "count": 1,
+    "label": "alpes (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931286t",
+    "count": 1,
+    "label": "esthéticiennes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931301w",
+    "count": 1,
+    "label": "europe"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931381c",
+    "count": 1,
+    "label": "faim"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119314286",
+    "count": 1,
+    "label": "football"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119314344",
+    "count": 1,
+    "label": "énergie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931547r",
+    "count": 1,
+    "label": "gastronomie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931670j",
+    "count": 1,
+    "label": "travail du bois"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931776w",
+    "count": 1,
+    "label": "conseils de classe"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931807b",
+    "count": 1,
+    "label": "création"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119318180",
+    "count": 1,
+    "label": "cuir -- industrie et commerce"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931919m",
+    "count": 1,
+    "label": "échec scolaire"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931928k",
+    "count": 1,
+    "label": "écoles maternelles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11931991b",
+    "count": 1,
+    "label": "fourmis"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119320348",
+    "count": 1,
+    "label": "homosexualité"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932114x",
+    "count": 1,
+    "label": "ingénieurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119321932",
+    "count": 1,
+    "label": "limousin (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119322088",
+    "count": 1,
+    "label": "lot (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932248h",
+    "count": 1,
+    "label": "librairie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119323850",
+    "count": 1,
+    "label": "maçonnerie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932462m",
+    "count": 1,
+    "label": "médecins"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932465n",
+    "count": 1,
+    "label": "médicaments"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932541x",
+    "count": 1,
+    "label": "mots-croisés"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119326923",
+    "count": 1,
+    "label": "quincaillerie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119327168",
+    "count": 1,
+    "label": "radio"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119327404",
+    "count": 1,
+    "label": "réincarnation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119328454",
+    "count": 1,
+    "label": "portugal"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119329202",
+    "count": 1,
+    "label": "orientation professionnelle"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932963b",
+    "count": 1,
+    "label": "picardie (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11932978c",
+    "count": 1,
+    "label": "poitiers (vienne)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933038w",
+    "count": 1,
+    "label": "pâtisserie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119330397",
+    "count": 1,
+    "label": "pâtissiers"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933188q",
+    "count": 1,
+    "label": "savoie (france. - région)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933202f",
+    "count": 1,
+    "label": "son -- enregistrement et reproduction"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933241b",
+    "count": 1,
+    "label": "sculpture"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119332671",
+    "count": 1,
+    "label": "sexualité (psychologie)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933332n",
+    "count": 1,
+    "label": "suisse"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119334020",
+    "count": 1,
+    "label": "bruxelles (belgique)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933435z",
+    "count": 1,
+    "label": "corse (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933455k",
+    "count": 1,
+    "label": "dauphiné (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119334667",
+    "count": 1,
+    "label": "tourcoing (nord)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933623h",
+    "count": 1,
+    "label": "transports publics"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119337004",
+    "count": 1,
+    "label": "transports aériens"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933725g",
+    "count": 1,
+    "label": "tsigane (langue)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933777q",
+    "count": 1,
+    "label": "vêtements -- industrie et commerce"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933827f",
+    "count": 1,
+    "label": "yougoslavie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11933911b",
+    "count": 1,
+    "label": "aménagement du territoire"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934015g",
+    "count": 1,
+    "label": "absentéisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934027g",
+    "count": 1,
+    "label": "agriculture -- outillage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934099b",
+    "count": 1,
+    "label": "cadres (personnel)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934114d",
+    "count": 1,
+    "label": "charente (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119342062",
+    "count": 1,
+    "label": "grenoble (isère)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934262j",
+    "count": 1,
+    "label": "journalistes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119343666",
+    "count": 1,
+    "label": "maroc"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119344445",
+    "count": 1,
+    "label": "histoire"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119346394",
+    "count": 1,
+    "label": "royalistes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11934758p",
+    "count": 1,
+    "label": "art"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119352367",
+    "count": 1,
+    "label": "hyères (var)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11935270d",
+    "count": 1,
+    "label": "saint-tropez (var)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119352932",
+    "count": 1,
+    "label": "éducation interculturelle"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11935294d",
+    "count": 1,
+    "label": "enseignement professionnel"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119353502",
+    "count": 1,
+    "label": "ethnolinguistique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11935543b",
+    "count": 1,
+    "label": "éducation sexuelle"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11935656z",
+    "count": 1,
+    "label": "pyrénées (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119360614",
+    "count": 1,
+    "label": "capitalisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119361544",
+    "count": 1,
+    "label": "construction"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936159v",
+    "count": 1,
+    "label": "contes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936459p",
+    "count": 1,
+    "label": "tabagisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936609p",
+    "count": 1,
+    "label": "chartres (eure-et-loir)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119368422",
+    "count": 1,
+    "label": "philosophie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11936865q",
+    "count": 1,
+    "label": "jardins"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119369999",
+    "count": 1,
+    "label": "cannes (alpes-maritimes)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119370365",
+    "count": 1,
+    "label": "constantine (algérie)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119370396",
+    "count": 1,
+    "label": "côte d'azur (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119374248",
+    "count": 1,
+    "label": "vignerons"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119374902",
+    "count": 1,
+    "label": "le havre (seine-maritime)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11937609x",
+    "count": 1,
+    "label": "ronchamp (haute-saône) -- chapelle notre-dame-du-haut"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11937714s",
+    "count": 1,
+    "label": "sarthe (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119377859",
+    "count": 1,
+    "label": "chirurgiens"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11937957m",
+    "count": 1,
+    "label": "chambord (loir-et-cher)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119379804",
+    "count": 1,
+    "label": "paris (france) -- arrondissement (13e)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11938130m",
+    "count": 1,
+    "label": "new york (n.y.)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11938398s",
+    "count": 1,
+    "label": "régulation des naissances"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11939096h",
+    "count": 1,
+    "label": "guerre mondiale (1939-1945) -- campagnes et batailles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11939598k",
+    "count": 1,
+    "label": "loire (france. - cours d'eau)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11939872q",
+    "count": 1,
+    "label": "haute-vienne (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11940130w",
+    "count": 1,
+    "label": "moulins (allier)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119401390",
+    "count": 1,
+    "label": "maires"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11940201k",
+    "count": 1,
+    "label": "poitou (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11940247w",
+    "count": 1,
+    "label": "pèlerins et pèlerinages"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119406021",
+    "count": 1,
+    "label": "langues vivantes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11941069w",
+    "count": 1,
+    "label": "hautes-alpes (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11941332c",
+    "count": 1,
+    "label": "cuisine -- étude et enseignement"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11941760q",
+    "count": 1,
+    "label": "gers (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119417674",
+    "count": 1,
+    "label": "isère (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11941814t",
+    "count": 1,
+    "label": "achats"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119423825",
+    "count": 1,
+    "label": "renouveau liturgique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11942581c",
+    "count": 1,
+    "label": "bruit"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11943509w",
+    "count": 1,
+    "label": "france -- 1969-1974 (g. pompidou)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11944014b",
+    "count": 1,
+    "label": "décorateurs d'intérieurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119440506",
+    "count": 1,
+    "label": "araignées"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11944213j",
+    "count": 1,
+    "label": "olivier"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11944282c",
+    "count": 1,
+    "label": "scoliose"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119451214",
+    "count": 1,
+    "label": "montrichard (loir-et-cher)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11945352z",
+    "count": 1,
+    "label": "bibliothèques privées"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11945612j",
+    "count": 1,
+    "label": "paris (france) -- arrondissement (05e)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11945613w",
+    "count": 1,
+    "label": "paris (france) -- arrondissement (19e)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119460213",
+    "count": 1,
+    "label": "fauconnerie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11946290g",
+    "count": 1,
+    "label": "anciens combattants"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11946819r",
+    "count": 1,
+    "label": "motocyclisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11947019s",
+    "count": 1,
+    "label": "vision"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119472107",
+    "count": 1,
+    "label": "cloches d'église et de beffroi"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11947338w",
+    "count": 1,
+    "label": "langues germaniques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11947686k",
+    "count": 1,
+    "label": "loir-et-cher (france)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11948482w",
+    "count": 1,
+    "label": "clergé -- formation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11948542x",
+    "count": 1,
+    "label": "discours"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11948606b",
+    "count": 1,
+    "label": "manuels d'enseignement"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11948944q",
+    "count": 1,
+    "label": "individualisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11949454w",
+    "count": 1,
+    "label": "homme -- attitude et mouvement"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11950024w",
+    "count": 1,
+    "label": "sports d'hiver"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11950042t",
+    "count": 1,
+    "label": "assurance-automobiles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11950174q",
+    "count": 1,
+    "label": "entreprises"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11950215g",
+    "count": 1,
+    "label": "horaires de travail"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11950687f",
+    "count": 1,
+    "label": "dieppe (seine-maritime)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11950813f",
+    "count": 1,
+    "label": "matières premières"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11951191j",
+    "count": 1,
+    "label": "tonneliers"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11951206r",
+    "count": 1,
+    "label": "travail précaire"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11951221n",
+    "count": 1,
+    "label": "vendeurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11951293h",
+    "count": 1,
+    "label": "clichy (hauts-de-seine)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11951389j",
+    "count": 1,
+    "label": "fréjus (var)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11951696n",
+    "count": 1,
+    "label": "âge"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119522676",
+    "count": 1,
+    "label": "étudiants -- activité politique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119540852",
+    "count": 1,
+    "label": "électriciens"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11954092b",
+    "count": 1,
+    "label": "femmes pilotes (aéronautique)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119542201",
+    "count": 1,
+    "label": "loyers"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11954918d",
+    "count": 1,
+    "label": "jargeau (loiret)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119551607",
+    "count": 1,
+    "label": "programmes d'études"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11955293g",
+    "count": 1,
+    "label": "eucharistie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11955527h",
+    "count": 1,
+    "label": "montluçon (allier)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11955560b",
+    "count": 1,
+    "label": "paris (france) -- arrondissement (20e)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11955657q",
+    "count": 1,
+    "label": "lecture à haute voix"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11956470m",
+    "count": 1,
+    "label": "tel-aviv (israël)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119564980",
+    "count": 1,
+    "label": "toulouse (haute-garonne)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119569673",
+    "count": 1,
+    "label": "communautés religieuses"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11957025x",
+    "count": 1,
+    "label": "chorales"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11957674s",
+    "count": 1,
+    "label": "saumur (maine-et-loire)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119581185",
+    "count": 1,
+    "label": "paris hippiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11958298x",
+    "count": 1,
+    "label": "touvre (charente)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11958847p",
+    "count": 1,
+    "label": "le mans (sarthe)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11959092j",
+    "count": 1,
+    "label": "chansons enfantines"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11959095k",
+    "count": 1,
+    "label": "chant -- étude et enseignement"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11959539g",
+    "count": 1,
+    "label": "âge au mariage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11959627r",
+    "count": 1,
+    "label": "catholicisme social"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119600630",
+    "count": 1,
+    "label": "autobiographie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11960281g",
+    "count": 1,
+    "label": "les herbiers (vendée)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119605025",
+    "count": 1,
+    "label": "restaurateurs (alimentation)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11960806c",
+    "count": 1,
+    "label": "anglais"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119609148",
+    "count": 1,
+    "label": "côte basque (pyrénées-atlantiques)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11961098w",
+    "count": 1,
+    "label": "groupes de travail"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119617128",
+    "count": 1,
+    "label": "masseurs-kinésithérapeutes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11961915v",
+    "count": 1,
+    "label": "ivry-sur-seine (val-de-marne)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119619402",
+    "count": 1,
+    "label": "logement -- allocations"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119621314",
+    "count": 1,
+    "label": "saint-brieuc (côtes-d'armor)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119623383",
+    "count": 1,
+    "label": "suresnes (hauts-de-seine)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11962572t",
+    "count": 1,
+    "label": "vêtements de femme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11963468j",
+    "count": 1,
+    "label": "ennui"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119635486",
+    "count": 1,
+    "label": "pataouète (argot)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11963687c",
+    "count": 1,
+    "label": "états-unis -- 1969-1981"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119637164",
+    "count": 1,
+    "label": "exposition internationale (1958 ; bruxelles)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119637880",
+    "count": 1,
+    "label": "henri désiré landru (1869-1922)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119643090",
+    "count": 1,
+    "label": "paris (france) -- arrondissement (03e)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11964738p",
+    "count": 1,
+    "label": "aides-soignants"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11965064j",
+    "count": 1,
+    "label": "histoire économique -- 1945-1973"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11965283c",
+    "count": 1,
+    "label": "hirondelles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11965418g",
+    "count": 1,
+    "label": "châtaignes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11965576x",
+    "count": 1,
+    "label": "dieux"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11965888r",
+    "count": 1,
+    "label": "biologie -- étude et enseignement"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119667830",
+    "count": 1,
+    "label": "vie militaire"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11966814f",
+    "count": 1,
+    "label": "bougies"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11967072n",
+    "count": 1,
+    "label": "maroquinerie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11967406z",
+    "count": 1,
+    "label": "musées de sciences naturelles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11969128x",
+    "count": 1,
+    "label": "tailleurs de pierre"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119696180",
+    "count": 1,
+    "label": "saint-jean-de-braye (loiret)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119713173",
+    "count": 1,
+    "label": "inondations"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11971535k",
+    "count": 1,
+    "label": "travail manuel"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119715378",
+    "count": 1,
+    "label": "travailleurs agricoles"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11971580d",
+    "count": 1,
+    "label": "veuves de guerre"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11972069r",
+    "count": 1,
+    "label": "mouton -- élevage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119732713",
+    "count": 1,
+    "label": "moustiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11973413g",
+    "count": 1,
+    "label": "civisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11973438t",
+    "count": 1,
+    "label": "congés payés"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11973473b",
+    "count": 1,
+    "label": "coutras (gironde)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119747722",
+    "count": 1,
+    "label": "vandalisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11975045g",
+    "count": 1,
+    "label": "prêtres mariés"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119755822",
+    "count": 1,
+    "label": "paris (france) -- arrondissement (10e)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11975583d",
+    "count": 1,
+    "label": "paris (france) -- arrondissement (18e)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119759000",
+    "count": 1,
+    "label": "puits"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11975974j",
+    "count": 1,
+    "label": "papes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11975977k",
+    "count": 1,
+    "label": "marie, sainte vierge"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11976024r",
+    "count": 1,
+    "label": "argot"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119763833",
+    "count": 1,
+    "label": "génie hydraulique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11976851v",
+    "count": 1,
+    "label": "récits personnels"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11977062j",
+    "count": 1,
+    "label": "virginité"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119774332",
+    "count": 1,
+    "label": "bordeaux (gironde)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11977450n",
+    "count": 1,
+    "label": "heures supplémentaires"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119775309",
+    "count": 1,
+    "label": "manèges (attractions)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11978061f",
+    "count": 1,
+    "label": "professeurs de musique"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119781533",
+    "count": 1,
+    "label": "poulpes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11978522x",
+    "count": 1,
+    "label": "écho"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11978864p",
+    "count": 1,
+    "label": "enfants trouvés"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11978915r",
+    "count": 1,
+    "label": "recrutement et engagement"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119790354",
+    "count": 1,
+    "label": "vêtements de travail"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11979806r",
+    "count": 1,
+    "label": "semaine sainte"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119801285",
+    "count": 1,
+    "label": "art -- reproduction"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11980216f",
+    "count": 1,
+    "label": "travail à temps partiel"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11980238r",
+    "count": 1,
+    "label": "arrestation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11980944m",
+    "count": 1,
+    "label": "cinéma russe"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11982278g",
+    "count": 1,
+    "label": "veufs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119824452",
+    "count": 1,
+    "label": "repos hebdomadaire"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11982633m",
+    "count": 1,
+    "label": "second marché (bourse)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11982688w",
+    "count": 1,
+    "label": "extorsion"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119829234",
+    "count": 1,
+    "label": "questionnaires"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119829939",
+    "count": 1,
+    "label": "nice (alpes-maritimes)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119834308",
+    "count": 1,
+    "label": "snobisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11985689z",
+    "count": 1,
+    "label": "programmeurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11991374b",
+    "count": 1,
+    "label": "vierzon (cher)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11991946r",
+    "count": 1,
+    "label": "orphelins"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119922102",
+    "count": 1,
+    "label": "ophtalmologistes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11993583b",
+    "count": 1,
+    "label": "melun (seine-et-marne)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb119962717",
+    "count": 1,
+    "label": "individu et société"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb11998943d",
+    "count": 1,
+    "label": "société des établissements rivierre-casalis. orléans"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12004178m",
+    "count": 1,
+    "label": "dimanche des rameaux"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120053354",
+    "count": 1,
+    "label": "élisabeth (reine des belges, 1876-1965)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120064887",
+    "count": 1,
+    "label": "tortues"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12008245w",
+    "count": 1,
+    "label": "napoléon ier (empereur des français, 1769-1821)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12008914j",
+    "count": 1,
+    "label": "cinéma américain"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12009606b",
+    "count": 1,
+    "label": "france. armée -- mobilisation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120114798",
+    "count": 1,
+    "label": "maroilles (nord)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12012569g",
+    "count": 1,
+    "label": "france -- moeurs et coutumes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120242142",
+    "count": 1,
+    "label": "dessinateurs (dessin technique)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12039450w",
+    "count": 1,
+    "label": "charcutiers"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12047712w",
+    "count": 1,
+    "label": "éducation à la citoyenneté (enseignement secondaire)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120479175",
+    "count": 1,
+    "label": "banquiers -- responsabilité professionnelle"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12048389m",
+    "count": 1,
+    "label": "routes à péage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12048551g",
+    "count": 1,
+    "label": "argentins"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120502737",
+    "count": 1,
+    "label": "enquêtes linguistiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120504059",
+    "count": 1,
+    "label": "libraires"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12061273p",
+    "count": 1,
+    "label": "soif"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12067079n",
+    "count": 1,
+    "label": "caisse nationale d'assurances vieillesse des professions artisanales. france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120677787",
+    "count": 1,
+    "label": "pagures"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb120694886",
+    "count": 1,
+    "label": "états-unis -- civilisation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12076269v",
+    "count": 1,
+    "label": "communauté européenne du charbon et de l'acier"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12084772v",
+    "count": 1,
+    "label": "chambre de métiers et de l'artisanat. loiret"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12085942q",
+    "count": 1,
+    "label": "bijouteries"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12098358c",
+    "count": 1,
+    "label": "professeurs d'art"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12115104p",
+    "count": 1,
+    "label": "prix -- fixation"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12116181c",
+    "count": 1,
+    "label": "professeurs d'anglais"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12121110v",
+    "count": 1,
+    "label": "sarajevo (bosnie-herzégovine)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12121896b",
+    "count": 1,
+    "label": "cocotier"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb121251502",
+    "count": 1,
+    "label": "séjours linguistiques"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb121318073",
+    "count": 1,
+    "label": "chèvre domestique -- élevage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb121403159",
+    "count": 1,
+    "label": "phénomènes de mode"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12146670q",
+    "count": 1,
+    "label": "personnel de la petite enfance"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12150589m",
+    "count": 1,
+    "label": "le kremlin-bicêtre (val-de-marne)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12166104z",
+    "count": 1,
+    "label": "employées de bureau"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb121670801",
+    "count": 1,
+    "label": "femmes -- associations"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12178219z",
+    "count": 1,
+    "label": "union nationale des étudiants de france (1907-1971)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12223381k",
+    "count": 1,
+    "label": "groupes d'âge"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12229007s",
+    "count": 1,
+    "label": "baby-sitters"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb122432199",
+    "count": 1,
+    "label": "étude et enseignement -- locuteurs de l'anglais"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb122714504",
+    "count": 1,
+    "label": "danielle mitterrand (1924-2011)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12271499g",
+    "count": 1,
+    "label": "développement durable"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12272270f",
+    "count": 1,
+    "label": "office de tourisme. orléans"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12287252x",
+    "count": 1,
+    "label": "verrues"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12312465b",
+    "count": 1,
+    "label": "épicerie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb123209465",
+    "count": 1,
+    "label": "dessinateurs de mode"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12321700j",
+    "count": 1,
+    "label": "jumeaux siamois"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12356562c",
+    "count": 1,
+    "label": "landes-le-gaulois (loir-et-cher)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb123930445",
+    "count": 1,
+    "label": "paris (france) -- 1918 (bombardement)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12403502x",
+    "count": 1,
+    "label": "bursa (turquie)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12428502j",
+    "count": 1,
+    "label": "football -- équipes sportives"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12432140r",
+    "count": 1,
+    "label": "hydrocorises"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12461250q",
+    "count": 1,
+    "label": "louveteaux"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb124795066",
+    "count": 1,
+    "label": "roussettes (mammifères)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12482939s",
+    "count": 1,
+    "label": "théâtre municipal. orléans"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb124844883",
+    "count": 1,
+    "label": "istanbul (turquie) -- quartier de balat"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12493640m",
+    "count": 1,
+    "label": "centre démocrate. france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb124953570",
+    "count": 1,
+    "label": "pompistes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12502303n",
+    "count": 1,
+    "label": "constructions provisoires"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12523870t",
+    "count": 1,
+    "label": "charrons"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb125270321",
+    "count": 1,
+    "label": "perte de poids"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12531784z",
+    "count": 1,
+    "label": "jupes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb125644118",
+    "count": 1,
+    "label": "chantecoq (loiret)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb126474979",
+    "count": 1,
+    "label": null
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb126480514",
+    "count": 1,
+    "label": "anticléricalisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb12650268p",
+    "count": 1,
+    "label": "ornithologie"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb126515662",
+    "count": 1,
+    "label": "médecine militaire"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13091689x",
+    "count": 1,
+    "label": "boris vian (1920-1959)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb131629824",
+    "count": 1,
+    "label": "militantisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13164910r",
+    "count": 1,
+    "label": "randonnées"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13167793f",
+    "count": 1,
+    "label": "orcines (puy-de-dôme)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb131790320",
+    "count": 1,
+    "label": "barricades"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13187831k",
+    "count": 1,
+    "label": "parti radical de gauche. france"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb131913538",
+    "count": 1,
+    "label": "lettres modernes (enseignement supérieur)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318308t",
+    "count": 1,
+    "label": "action sociale"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318449p",
+    "count": 1,
+    "label": "bricolage"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318455m",
+    "count": 1,
+    "label": "artistes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133185598",
+    "count": 1,
+    "label": "féodalité"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318572g",
+    "count": 1,
+    "label": "archives"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318587h",
+    "count": 1,
+    "label": "gaulois"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13318665g",
+    "count": 1,
+    "label": "produits agricoles -- commerce"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133190819",
+    "count": 1,
+    "label": "vents"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13319099c",
+    "count": 1,
+    "label": "tabous"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13319142p",
+    "count": 1,
+    "label": "meurtre"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb133192032",
+    "count": 1,
+    "label": "génie urbain"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13340879d",
+    "count": 1,
+    "label": "décrets, arrêtés, etc."
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13340904s",
+    "count": 1,
+    "label": "manutentionnaires"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13505219m",
+    "count": 1,
+    "label": "enquêtes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13507537v",
+    "count": 1,
+    "label": "parfumeurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13514405f",
+    "count": 1,
+    "label": "sports -- accidents"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13515252n",
+    "count": 1,
+    "label": "derrick, stephan (personnage fictif)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13528896v",
+    "count": 1,
+    "label": "couvreurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13540001m",
+    "count": 1,
+    "label": "royan (charente-maritime) -- église notre-dame de royan"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb135610498",
+    "count": 1,
+    "label": "modération"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13563102c",
+    "count": 1,
+    "label": "chefs scouts"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13774498v",
+    "count": 1,
+    "label": "aide humanitaire"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb138917527",
+    "count": 1,
+    "label": "bourvil (1917-1970)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13897767q",
+    "count": 1,
+    "label": "georges moustaki (1934-2013)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb13901310h",
+    "count": 1,
+    "label": "iannis xenakis (1922-2001)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb14244317d",
+    "count": 1,
+    "label": null
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb14401280p",
+    "count": 1,
+    "label": "france -- 1945-1975"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb14454978t",
+    "count": 1,
+    "label": "détention des mineurs"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb14487700p",
+    "count": 1,
+    "label": "puéricultrices"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb14490310d",
+    "count": 1,
+    "label": "laferté-sur-aube (haute-marne)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb144958371",
+    "count": 1,
+    "label": "traductrices"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb144983121",
+    "count": 1,
+    "label": "arbres de mai"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb14525534w",
+    "count": 1,
+    "label": "pourim"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb14579131r",
+    "count": 1,
+    "label": "orléans (loiret) -- hôtel de ville"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb146372745",
+    "count": 1,
+    "label": "enseignants spécialisés"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb150152762",
+    "count": 1,
+    "label": "soutien scolaire"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15021514k",
+    "count": 1,
+    "label": "théâtre d'orléans"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb150294058",
+    "count": 1,
+    "label": "antiaméricanisme"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb152246514",
+    "count": 1,
+    "label": null
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15238306n",
+    "count": 1,
+    "label": "république fédérale d' allemagne (1949-1990)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb152891756",
+    "count": 1,
+    "label": "région limousin (france; 1955-)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb152891934",
+    "count": 1,
+    "label": "région lorraine (france; 1955-)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15602033b",
+    "count": 1,
+    "label": "istanbul (turquie) -- quartier de hasköy"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15613183m",
+    "count": 1,
+    "label": "buvettes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb15916158n",
+    "count": 1,
+    "label": "expositions"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb16140050j",
+    "count": 1,
+    "label": "cendrillon (conte)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb16221703z",
+    "count": 1,
+    "label": "mouvements séparatistes"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb162220367",
+    "count": 1,
+    "label": "génération internet"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb16513680x",
+    "count": 1,
+    "label": "surpoids"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb166113516",
+    "count": 1,
+    "label": "henri duvillard (1910-2001)"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb166674529",
+    "count": 1,
+    "label": "familles ouvrières"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb166852682",
+    "count": 1,
+    "label": "forces armées -- troupes étrangères"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb16743077b",
+    "count": 1,
+    "label": "artisanat d'art"
+  },
+  {
+    "id": "http://ark.bnf.fr/ark:/12148/cb16928757s",
+    "count": 1,
+    "label": "communisme municipal"
+  }
+];
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/fixtures/transcripts.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,105836 @@
+export default [
+  {
+    "id": "11280.100/crdo-UVE_MOCIKA_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:50+00:00",
+        "dc:modified": "2016-06-01T23:47:50+00:00",
+        "dc:title": [
+          {
+            "@language": "fr",
+            "@value": "Les deux bernard-l'hermite et le crabe de cocotier"
+          },
+          {
+            "@language": "en",
+            "@value": "The two hermit crabs and the coconut crab"
+          }
+        ]
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144187_MOCIKA_22km.wav",
+          "meta": {
+            "dc:duration": 155000,
+            "dc:title": [
+              {
+                "@language": "fr",
+                "@value": "Les deux bernard-l'hermite et le crabe de cocotier"
+              },
+              {
+                "@language": "en",
+                "@value": "The two hermit crabs and the coconut crab"
+              }
+            ],
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144187.wav",
+          "meta": {
+            "dc:duration": 155000,
+            "dc:title": [
+              {
+                "@language": "fr",
+                "@value": "Les deux bernard-l'hermite et le crabe de cocotier"
+              },
+              {
+                "@language": "en",
+                "@value": "The two hermit crabs and the coconut crab"
+              }
+            ],
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144187_MOCIKA_44k.mp3",
+          "meta": {
+            "dc:duration": 155000,
+            "dc:title": [
+              {
+                "@language": "fr",
+                "@value": "Les deux bernard-l'hermite et le crabe de cocotier"
+              },
+              {
+                "@language": "en",
+                "@value": "The two hermit crabs and the coconut crab"
+              }
+            ],
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a001",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Awe, go de fai mocika tahi a fai mocika numai mai lalo fatu, tahi na numai mai lalo i tafa tai. ",
+              "transl": {
+                "@value": "Voilà, c'est une histoire de bernard-l'hermite ; l'un d'eux sort de dessous une pierre; un autre arrive du bord de mer.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Awe",
+                  "transl": {
+                    "@value": "ainsi",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "go",
+                  "transl": {
+                    "@value": "c'est",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mocika",
+                  "transl": {
+                    "@value": "bernard-l'hermite",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tahi",
+                  "transl": {
+                    "@value": "un",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "a",
+                  "transl": {
+                    "@value": "de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mocika",
+                  "transl": {
+                    "@value": "bernard-l'hermite",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "numai",
+                  "transl": {
+                    "@value": "venir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mai",
+                  "transl": {
+                    "@value": "venant de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lalo",
+                  "transl": {
+                    "@value": "sous",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fatu",
+                  "transl": {
+                    "@value": "pierre",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tahi",
+                  "transl": {
+                    "@value": "un",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "na",
+                  "transl": {
+                    "@value": "passé",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "numai",
+                  "transl": {
+                    "@value": "venir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mai",
+                  "transl": {
+                    "@value": "venant de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lalo",
+                  "transl": {
+                    "@value": "en bas",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tafa",
+                  "transl": {
+                    "@value": "côté",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tai",
+                  "transl": {
+                    "@value": "bord de mer",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 0,
+          "end": 13200.1
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a002",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Na gilaa hano hale ikoo, na gilaa seke i dina i lalo gi tahi a matua naa gono o tunu alili ma tunu wajia. ",
+              "transl": {
+                "@value": "Ils s'en vont par là-bas, ils croisent un vieux en train de griller des trocas et des nérites.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Na",
+                  "transl": {
+                    "@value": "passé",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hale",
+                  "transl": {
+                    "@value": "vers",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ikoo",
+                  "transl": {
+                    "@value": "là-bas",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "na",
+                  "transl": {
+                    "@value": "passé",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "seke",
+                  "transl": {
+                    "@value": "arriver",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "dina",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lalo",
+                  "transl": {
+                    "@value": "en bas",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gi",
+                  "transl": {
+                    "@value": "vers",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tahi",
+                  "transl": {
+                    "@value": "un",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "a",
+                  "transl": {
+                    "@value": "de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "matua",
+                  "transl": {
+                    "@value": "vieux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "naa",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gono",
+                  "transl": {
+                    "@value": "encore en train",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "pour",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tunu",
+                  "transl": {
+                    "@value": "griller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "alili",
+                  "transl": {
+                    "@value": "troca",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ma",
+                  "transl": {
+                    "@value": "et",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tunu",
+                  "transl": {
+                    "@value": "griller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "wajia",
+                  "transl": {
+                    "@value": "nérite",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 13200.1,
+          "end": 20780
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a003",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Lua fai tauavanga matua la de tunu alili ma de wajia o laku. ",
+              "transl": {
+                "@value": "En fait, il s'agit d'un vieux couple de bernard-l'hermite qui grille des trocas et des nérites puis jette les coquilles vides.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Lua",
+                  "transl": {
+                    "@value": "deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tauavanga",
+                  "transl": {
+                    "@value": "couple d'époux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "matua",
+                  "transl": {
+                    "@value": "vieux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "la",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tunu",
+                  "transl": {
+                    "@value": "griller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "alili",
+                  "transl": {
+                    "@value": "troca",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ma",
+                  "transl": {
+                    "@value": "et",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "wajia",
+                  "transl": {
+                    "@value": "nérite",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "et",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "laku",
+                  "transl": {
+                    "@value": "jeter",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 20780,
+          "end": 24120
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a004",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Laku naa malaa kete gi tai. ",
+              "transl": {
+                "@value": "Le couple jette les coquilles vers la mer.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Laku",
+                  "transl": {
+                    "@value": "jeter",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "naa",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "malaa",
+                  "transl": {
+                    "@value": "les",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "kete",
+                  "transl": {
+                    "@value": "coquille",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gi",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tai",
+                  "transl": {
+                    "@value": "mer",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 24120,
+          "end": 26599.9
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a005",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Gilaa de tele mai uta, gilaa de munea penei \"hee, la i tai lava dola fai mai titi e tahi hoku. ",
+              "transl": {
+                "@value": "Les deux compères accourent depuis l'intérieur des terres et s'esclaffent : \"Dis donc! Regarde là-bas au bord de mer, les manous, il y en a un pour moi !",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tele",
+                  "transl": {
+                    "@value": "courir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mai",
+                  "transl": {
+                    "@value": "venant de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "uta",
+                  "transl": {
+                    "@value": "intérieur des terres",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "munea",
+                  "transl": {
+                    "@value": "dire",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "penei",
+                  "transl": {
+                    "@value": "que",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hee",
+                  "transl": {
+                    "@value": "dis-donc!",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "la",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tai",
+                  "transl": {
+                    "@value": "bord de mer",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lava",
+                  "transl": {
+                    "@value": "emph.",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "dola",
+                  "transl": {
+                    "@value": "leur",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mai",
+                  "transl": {
+                    "@value": "morceau",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "titi",
+                  "transl": {
+                    "@value": "manou",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tahi",
+                  "transl": {
+                    "@value": "un",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hoku",
+                  "transl": {
+                    "@value": "mien",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 26599.9,
+          "end": 30640
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a006",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E iviki moonyi de wajia, e maalie de alili e nago efa. ",
+              "transl": {
+                "@value": "La coquille de la nérite est trop petite mais par contre, celle du troca est bien, elle est grande.\"",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "E",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "iviki",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "moonyi",
+                  "transl": {
+                    "@value": "trop",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "wajia",
+                  "transl": {
+                    "@value": "nérite",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "maalie",
+                  "transl": {
+                    "@value": "bon",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "alili",
+                  "transl": {
+                    "@value": "troca",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "nago",
+                  "transl": {
+                    "@value": "par contre",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "efa",
+                  "transl": {
+                    "@value": "grand",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 30640,
+          "end": 34839.9
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a007",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "O gilaa dai hulu i loto o lua fai alili. ",
+              "transl": {
+                "@value": "Chacun essaie une coquille de troca.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "O",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "dai",
+                  "transl": {
+                    "@value": "séparément",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hulu",
+                  "transl": {
+                    "@value": "entrer",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "loto",
+                  "transl": {
+                    "@value": "intérieur",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lua",
+                  "transl": {
+                    "@value": "deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "alili",
+                  "transl": {
+                    "@value": "troca",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 34839.9,
+          "end": 38480
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a008",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "De tahi e hulu i loto o de alili efa lava amoo dona fai trausi. ",
+              "transl": {
+                "@value": "L'un des deux s'enfile dans un grand troca, peut-être que son pantalon est grand !",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "De",
+                  "transl": {
+                    "@value": "l'",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tahi",
+                  "transl": {
+                    "@value": "un",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hulu",
+                  "transl": {
+                    "@value": "entrer",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "loto",
+                  "transl": {
+                    "@value": "intérieur",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "alili",
+                  "transl": {
+                    "@value": "troca",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "efa",
+                  "transl": {
+                    "@value": "grand",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lava",
+                  "transl": {
+                    "@value": "emph.",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "amoo",
+                  "transl": {
+                    "@value": "peut-être",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "dona",
+                  "transl": {
+                    "@value": "son",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "trausi",
+                  "transl": {
+                    "@value": "pantalon",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 38480,
+          "end": 49880.1
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a009",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Goati, o gilaa hano. ",
+              "transl": {
+                "@value": "Ensuite, ils repartent.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Goati",
+                  "transl": {
+                    "@value": "accompli+finir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 50799.9,
+          "end": 52220.1
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a010",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "De tahi e hulu i de fai wajia de tahi e hulu i de fai alili. ",
+              "transl": {
+                "@value": "En fin de compte, l'un est entré dans une nérite, l'autre dans un troca.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "De",
+                  "transl": {
+                    "@value": "l'",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tahi",
+                  "transl": {
+                    "@value": "un",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hulu",
+                  "transl": {
+                    "@value": "entrer",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "dans",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "wajia",
+                  "transl": {
+                    "@value": "nérite",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "l'",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tahi",
+                  "transl": {
+                    "@value": "un",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hulu",
+                  "transl": {
+                    "@value": "entrer",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "dans",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "alili",
+                  "transl": {
+                    "@value": "troca",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 52220.1,
+          "end": 55719.9
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a011",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "O gilaa hano mata penei gi lunga, o gilaa ",
+              "transl": {
+                "@value": "C'est ainsi qu'ils remontent du bord de mer,",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "O",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mata",
+                  "transl": {
+                    "@value": "visage",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "penei",
+                  "transl": {
+                    "@value": "comme ceci",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gi",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lunga",
+                  "transl": {
+                    "@value": "en haut",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 55719.9,
+          "end": 58640
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a012",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "kitea ale ikoo de nea hano ale ikoo i loto o de niu, ",
+              "transl": {
+                "@value": "aperçoivent quelqu'un qui grimpe sur un tronc de cocotier,",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "kitea",
+                  "transl": {
+                    "@value": "voir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ale",
+                  "transl": {
+                    "@value": "en direction",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ikoo",
+                  "transl": {
+                    "@value": "là-bas",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "l'",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "nea",
+                  "transl": {
+                    "@value": "individu",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ale",
+                  "transl": {
+                    "@value": "en direction",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ikoo",
+                  "transl": {
+                    "@value": "là-bas",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "loto",
+                  "transl": {
+                    "@value": "intérieur",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "niu",
+                  "transl": {
+                    "@value": "cocotier",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 58640,
+          "end": 61600
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a013",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "i de pupaa ikoo i loto o de palalaha. ",
+              "transl": {
+                "@value": "en faisant du bruit au coeur des palmes.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "il",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "pupaa",
+                  "transl": {
+                    "@value": "faire du bruit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ikoo",
+                  "transl": {
+                    "@value": "là-bas",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "loto",
+                  "transl": {
+                    "@value": "intérieur",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "la",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "palalaha",
+                  "transl": {
+                    "@value": "base de la palme",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 61600,
+          "end": 64060
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a014",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "I de sakili fai niu. ",
+              "transl": {
+                "@value": "C'est quelqu'un qui cherche des noix de cocos.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "I",
+                  "transl": {
+                    "@value": "il",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "sakili",
+                  "transl": {
+                    "@value": "chercher",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "niu",
+                  "transl": {
+                    "@value": "coco",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 64060,
+          "end": 65200
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a015",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Gilaa kilo gikoo odi \"ohii, ",
+              "transl": {
+                "@value": "Les deux bernard-l'hermite le regardent et disent : \"Eh!",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "kilo",
+                  "transl": {
+                    "@value": "regarder",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gikoo",
+                  "transl": {
+                    "@value": "vers là-bas",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "odi",
+                  "transl": {
+                    "@value": "alors",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ohii",
+                  "transl": {
+                    "@value": "eh!",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 65200,
+          "end": 66980
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a016",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "go de uu dela ale uta\". ",
+              "transl": {
+                "@value": "C'est le crabe de cocotier qui est là-haut !\"",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "go",
+                  "transl": {
+                    "@value": "c'est",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "uu",
+                  "transl": {
+                    "@value": "crabe de cocotier",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "dela",
+                  "transl": {
+                    "@value": "celui-là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ale",
+                  "transl": {
+                    "@value": "vers",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "uta",
+                  "transl": {
+                    "@value": "intérieur des terres",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 66980,
+          "end": 69540
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a017",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Gilaa hano naa guuta, ga munea de uu penei \"pan, e aa naa gilaaua nei tai, gilaa de mumaha ga gilaa de futituina dola tui balo.\" ",
+              "transl": {
+                "@value": "Ils s'approchent et le crabe se dit ainsi :\"Oh ! qu'est-ce qu'ils ont, ces deux-là ! Ils sont bien chargés, ils marchent en tirant des boules qui leur sont attachées.\"",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "naa",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "guuta",
+                  "transl": {
+                    "@value": "vers l'intérieur",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ga",
+                  "transl": {
+                    "@value": "et",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "munea",
+                  "transl": {
+                    "@value": "dire",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "uu",
+                  "transl": {
+                    "@value": "crabe de cocotier",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "penei",
+                  "transl": {
+                    "@value": "que",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "pan",
+                  "transl": {
+                    "@value": "oh!",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "aa",
+                  "transl": {
+                    "@value": "quoi",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "naa",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaaua",
+                  "transl": {
+                    "@value": "les deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "nei",
+                  "transl": {
+                    "@value": "ci",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tai",
+                  "transl": {
+                    "@value": "bord de mer",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mumaha",
+                  "transl": {
+                    "@value": "lourd",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ga",
+                  "transl": {
+                    "@value": "car",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "futituina",
+                  "transl": {
+                    "@value": "traîner",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "dola",
+                  "transl": {
+                    "@value": "leur",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tui",
+                  "transl": {
+                    "@value": "ensemble",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "balo",
+                  "transl": {
+                    "@value": "boule",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 69540,
+          "end": 78440
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a018",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ga fia gilaaua penei \"goa isi oma mai titi, e hano pangani iela ale uta; odi ona mai titi, ",
+              "transl": {
+                "@value": "Et les deux bernard-l'hermite se disent ainsi : \"Nous, nous avons des manous, alors que lui se promène tout nu dans les terres ! De manous,",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Ga",
+                  "transl": {
+                    "@value": "et",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fia",
+                  "transl": {
+                    "@value": "dire",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaaua",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "penei",
+                  "transl": {
+                    "@value": "que",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "goa",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "isi",
+                  "transl": {
+                    "@value": "y avoir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "oma",
+                  "transl": {
+                    "@value": "nos",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mai",
+                  "transl": {
+                    "@value": "morceau",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "titi",
+                  "transl": {
+                    "@value": "manou",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "pangani",
+                  "transl": {
+                    "@value": "nu",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "iela",
+                  "transl": {
+                    "@value": "celui-là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ale",
+                  "transl": {
+                    "@value": "vers",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "uta",
+                  "transl": {
+                    "@value": "intérieur des terres",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "odi",
+                  "transl": {
+                    "@value": "alos",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ona",
+                  "transl": {
+                    "@value": "ses",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mai",
+                  "transl": {
+                    "@value": "morceau",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "titi",
+                  "transl": {
+                    "@value": "manou",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 78440,
+          "end": 84160
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a019",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "siage ona titi, go ia hano pangani\". ",
+              "transl": {
+                "@value": "il n'en a point, il va tout nu\".",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "siage",
+                  "transl": {
+                    "@value": "ne pas y avoir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ona",
+                  "transl": {
+                    "@value": "ses",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "titi",
+                  "transl": {
+                    "@value": "manou",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "go",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ia",
+                  "transl": {
+                    "@value": "il",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "pangani",
+                  "transl": {
+                    "@value": "nu",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 84160,
+          "end": 86800
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a020",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Go ia hano gi fafo alikoa gilaaua de uu. ",
+              "transl": {
+                "@value": "Alors le crabe s'extirpe des palmes de cocotier et se lance à la poursuite des deux bernard-l'hermite.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Go",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ia",
+                  "transl": {
+                    "@value": "il",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gi",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fafo",
+                  "transl": {
+                    "@value": "dehors",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "alikoa",
+                  "transl": {
+                    "@value": "poursuivre",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaaua",
+                  "transl": {
+                    "@value": "eux deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "uu",
+                  "transl": {
+                    "@value": "crabe de cocotier",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 86800,
+          "end": 89300
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a021",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Odi goa kumia fokisia gilaaua, odi gilaa de geny tele tuai o futituina de tui laso e mumaha de kete. ",
+              "transl": {
+                "@value": "Il les rattrape, car tous deux courent péniblement en traînant leur sexe, et leurs lourdes coquilles.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Odi",
+                  "transl": {
+                    "@value": "ensuite",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "goa",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "kumia",
+                  "transl": {
+                    "@value": "attraper",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fokisia",
+                  "transl": {
+                    "@value": "de nouveau",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaaua",
+                  "transl": {
+                    "@value": "eux deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "odi",
+                  "transl": {
+                    "@value": "et",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "geny",
+                  "transl": {
+                    "@value": "avec fatigue",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tele",
+                  "transl": {
+                    "@value": "courir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tuai",
+                  "transl": {
+                    "@value": "en retard",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "pour",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "futituina",
+                  "transl": {
+                    "@value": "traîner",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tui",
+                  "transl": {
+                    "@value": "ensemble",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "laso",
+                  "transl": {
+                    "@value": "sexe",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mumaha",
+                  "transl": {
+                    "@value": "lourd",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "la",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "kete",
+                  "transl": {
+                    "@value": "coquille",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 89300,
+          "end": 96560
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a022",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Maalie de uu e tele naa fagasaa hua dona fai tui laso, siage hona kete, siage ona mai titi. ",
+              "transl": {
+                "@value": "Le crabe de cocotier, lui, est à l'aise, il court en montrant son sexe, il n'a ni coquille ni manou.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Maalie",
+                  "transl": {
+                    "@value": "bien",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "uu",
+                  "transl": {
+                    "@value": "crabe de cocotier",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tele",
+                  "transl": {
+                    "@value": "courir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "naa",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fagasaa",
+                  "transl": {
+                    "@value": "visible",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hua",
+                  "transl": {
+                    "@value": "seulement",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "dona",
+                  "transl": {
+                    "@value": "son",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tui",
+                  "transl": {
+                    "@value": "ensemble",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "laso",
+                  "transl": {
+                    "@value": "sexe",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "siage",
+                  "transl": {
+                    "@value": "ne pas y avoir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hona",
+                  "transl": {
+                    "@value": "sa",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "kete",
+                  "transl": {
+                    "@value": "coquille",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "siage",
+                  "transl": {
+                    "@value": "ne pas y avoir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ona",
+                  "transl": {
+                    "@value": "son",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mai",
+                  "transl": {
+                    "@value": "morceau",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "titi",
+                  "transl": {
+                    "@value": "manou",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 96560,
+          "end": 102219.9
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a023",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Awe, a alili laa na hulu i loto, ",
+              "transl": {
+                "@value": "Le troca est rentré dans sa coquille,",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Awe",
+                  "transl": {
+                    "@value": "ainsi",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "a",
+                  "transl": {
+                    "@value": "art.pers.",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "alili",
+                  "transl": {
+                    "@value": "troca",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "laa",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "na",
+                  "transl": {
+                    "@value": "passé",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hulu",
+                  "transl": {
+                    "@value": "entrer",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "loto",
+                  "transl": {
+                    "@value": "intérieur",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 102219.9,
+          "end": 105439.9
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a024",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "na sola gi lunga; \"o kumia goulua\". ",
+              "transl": {
+                "@value": "il s'enfuit vers le haut ; \"je vais vous attraper tous les deux !\"",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "na",
+                  "transl": {
+                    "@value": "passé",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "sola",
+                  "transl": {
+                    "@value": "s'enfuir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gi",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lunga",
+                  "transl": {
+                    "@value": "en haut",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "kumia",
+                  "transl": {
+                    "@value": "attraper",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "goulua",
+                  "transl": {
+                    "@value": "vous deux",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 105439.9,
+          "end": 109859.9
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a025",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "O gilaa laku fogisia naa lua mai titi, o gilaa hano huage mumaha de tele. ",
+              "transl": {
+                "@value": "Les deux bernard-l'hermite jettent leurs deux manous et peuvent alors avancer, leur course n'est plus alourdie.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "O",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "laku",
+                  "transl": {
+                    "@value": "jeter",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fogisia",
+                  "transl": {
+                    "@value": "de nouveau",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "naa",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lua",
+                  "transl": {
+                    "@value": "deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mai",
+                  "transl": {
+                    "@value": "morceau",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "titi",
+                  "transl": {
+                    "@value": "manou",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "huage",
+                  "transl": {
+                    "@value": "ne plus être",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mumaha",
+                  "transl": {
+                    "@value": "lourd",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "la",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tele",
+                  "transl": {
+                    "@value": "course",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 109859.9,
+          "end": 114560
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a026",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ga dena foki nei gilaa de hano aduhua lava la, gilaa de maa hano, ",
+              "transl": {
+                "@value": "Et jusqu'à aujourd'hui, ils vont toujours ainsi ; ils ont la honte,",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Ga",
+                  "transl": {
+                    "@value": "et",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "dena",
+                  "transl": {
+                    "@value": "cela",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "foki",
+                  "transl": {
+                    "@value": "jusqu'à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "nei",
+                  "transl": {
+                    "@value": "aujourd'hui",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "aduhua",
+                  "transl": {
+                    "@value": "toujours",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lava",
+                  "transl": {
+                    "@value": "emph.",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "la",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "maa",
+                  "transl": {
+                    "@value": "avoir honte",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 114560,
+          "end": 120840.1
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a027",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "hano pangani veli itahoo naa e isi aduhua lava ola mai titi, o gilaa hano lava naa o hulu i loto de fai alili aduhua. ",
+              "transl": {
+                "@value": "ils vont tout nus, alors qu'autrefois, ils portaient toujours leurs manous ; à présent, ils doivent entrer dans une coquille.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "pangani",
+                  "transl": {
+                    "@value": "nu",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "veli",
+                  "transl": {
+                    "@value": "parce que",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "itahoo",
+                  "transl": {
+                    "@value": "autrefois",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "naa",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "isi",
+                  "transl": {
+                    "@value": "y avoir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "aduhua",
+                  "transl": {
+                    "@value": "toujours",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lava",
+                  "transl": {
+                    "@value": "emph.",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ola",
+                  "transl": {
+                    "@value": "leur",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mai",
+                  "transl": {
+                    "@value": "morceau",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "titi",
+                  "transl": {
+                    "@value": "manou",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lava",
+                  "transl": {
+                    "@value": "emph.",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "naa",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "pour",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hulu",
+                  "transl": {
+                    "@value": "entrer",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "loto",
+                  "transl": {
+                    "@value": "intérieur",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "alili",
+                  "transl": {
+                    "@value": "troca",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "aduhua",
+                  "transl": {
+                    "@value": "toujours",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 120840.1,
+          "end": 129960
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a028",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ga gilaa hano la o kitea de fenua gilaa de hulu i loto o dola mook pela penei e isi ni fai maa lela gilaa de hulu menu i ai o mumuni belaa. ",
+              "transl": {
+                "@value": "Quand ils voient quelqu'un, ils rentrent dans une boîte vide, ou dans n'importe quoi d'autre, pour s'y cacher.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Ga",
+                  "transl": {
+                    "@value": "quand",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "la",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "pour",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "kitea",
+                  "transl": {
+                    "@value": "voir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "les",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fenua",
+                  "transl": {
+                    "@value": "gens",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hulu",
+                  "transl": {
+                    "@value": "entrer",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "loto",
+                  "transl": {
+                    "@value": "intérieur",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "dola",
+                  "transl": {
+                    "@value": "leur",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mook",
+                  "transl": {
+                    "@value": "boîte",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "pela",
+                  "transl": {
+                    "@value": "comme",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "penei",
+                  "transl": {
+                    "@value": "comme ceci",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "isi",
+                  "transl": {
+                    "@value": "y avoir",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ni",
+                  "transl": {
+                    "@value": "des",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "maa",
+                  "transl": {
+                    "@value": "morceau",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lela",
+                  "transl": {
+                    "@value": "chose-là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gilaa",
+                  "transl": {
+                    "@value": "ils deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hulu",
+                  "transl": {
+                    "@value": "entrer",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "menu",
+                  "transl": {
+                    "@value": "n'importe comment",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "i",
+                  "transl": {
+                    "@value": "à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ai",
+                  "transl": {
+                    "@value": "là",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "pour",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mumuni",
+                  "transl": {
+                    "@value": "se cacher",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "belaa",
+                  "transl": {
+                    "@value": "ainsi",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 129960,
+          "end": 138500
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a029",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ga de uu e he gade maa veli na ia he gade tau titi mai tuai. ",
+              "transl": {
+                "@value": "Le crabe de cocotier, lui, n'a pas honte, car, depuis la nuit des temps, il n'a jamais porté de manou.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Ga",
+                  "transl": {
+                    "@value": "et",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "uu",
+                  "transl": {
+                    "@value": "crabe de cocotier",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "e",
+                  "transl": {
+                    "@value": "asp.gén",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "he",
+                  "transl": {
+                    "@value": "ne pas",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gade",
+                  "transl": {
+                    "@value": "vraiment",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "maa",
+                  "transl": {
+                    "@value": "avoir honte",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "veli",
+                  "transl": {
+                    "@value": "parce que",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "na",
+                  "transl": {
+                    "@value": "passé",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ia",
+                  "transl": {
+                    "@value": "il",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "he",
+                  "transl": {
+                    "@value": "ne pas",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gade",
+                  "transl": {
+                    "@value": "vraiment",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tau",
+                  "transl": {
+                    "@value": "mettre",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "titi",
+                  "transl": {
+                    "@value": "manou",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mai",
+                  "transl": {
+                    "@value": "venant de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tuai",
+                  "transl": {
+                    "@value": "jadis",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 138500,
+          "end": 142620.1
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a030",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Na ia hano pangani lava mai tuai dou maatua foki lava nei go ia gai pangani aduhua lava nei; ",
+              "transl": {
+                "@value": "Il va tout nu depuis l'époque de ses ancêtres jusqu'à nos jours, il se promène encore nu aujourd'hui,",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Na",
+                  "transl": {
+                    "@value": "passé",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ia",
+                  "transl": {
+                    "@value": "il",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "hano",
+                  "transl": {
+                    "@value": "aller",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "pangani",
+                  "transl": {
+                    "@value": "nu",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lava",
+                  "transl": {
+                    "@value": "emph.",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mai",
+                  "transl": {
+                    "@value": "venant de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tuai",
+                  "transl": {
+                    "@value": "jadis",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "dou",
+                  "transl": {
+                    "@value": "tes",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "maatua",
+                  "transl": {
+                    "@value": "vieux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "foki",
+                  "transl": {
+                    "@value": "jusqu'à",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lava",
+                  "transl": {
+                    "@value": "emph.",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "nei",
+                  "transl": {
+                    "@value": "maintenant",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "go",
+                  "transl": {
+                    "@value": "accompli",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ia",
+                  "transl": {
+                    "@value": "il",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gai",
+                  "transl": {
+                    "@value": "encore",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "pangani",
+                  "transl": {
+                    "@value": "nu",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "aduhua",
+                  "transl": {
+                    "@value": "toujours",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lava",
+                  "transl": {
+                    "@value": "emph.",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "nei",
+                  "transl": {
+                    "@value": "maintenant",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 142620.1,
+          "end": 147900
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a031",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "he gade tau titi. ",
+              "transl": {
+                "@value": "il ne porte pas de manou.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "he",
+                  "transl": {
+                    "@value": "ne pas",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "gade",
+                  "transl": {
+                    "@value": "vraiment",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "tau",
+                  "transl": {
+                    "@value": "mettre",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "titi",
+                  "transl": {
+                    "@value": "manou",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 147900,
+          "end": 150400
+        },
+        {
+          "id": "11280.100/crdo-UVE_MOCIKA_SOUND_a032",
+          "media": "11280.100/crdo-UVE_MOCIKA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Go dena de fai histoire o lua fai mocika ma de uu. ",
+              "transl": {
+                "@value": "C'était l'histoire des deux bernard-l'hermite et du crabe de cocotier.",
+                "@language": "fr"
+              },
+              "words": [
+                {
+                  "content": "Go",
+                  "transl": {
+                    "@value": "c'est",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "dena",
+                  "transl": {
+                    "@value": "cela",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "la",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petite",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "histoire",
+                  "transl": {
+                    "@value": "histoire",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "o",
+                  "transl": {
+                    "@value": "de",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "lua",
+                  "transl": {
+                    "@value": "deux",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "fai",
+                  "transl": {
+                    "@value": "petit",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "mocika",
+                  "transl": {
+                    "@value": "bernard-l'hermite",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "ma",
+                  "transl": {
+                    "@value": "et",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "de",
+                  "transl": {
+                    "@value": "le",
+                    "@language": "fr"
+                  }
+                },
+                {
+                  "content": "uu",
+                  "transl": {
+                    "@value": "crabe de cocotier",
+                    "@language": "fr"
+                  }
+                }
+              ]
+            }
+          },
+          "begin": 150400,
+          "end": 155140
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-CFPP2000_11_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:51+00:00",
+        "dc:modified": "2016-06-01T23:47:51+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "Entretien de Louise Liotard et de Jeane Mallet 1"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/344490.wav",
+          "meta": {
+            "dc:duration": 2752000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "Entretien de Louise Liotard et de Jeane Mallet 1"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/cfpp2000/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.mp3",
+          "meta": {
+            "dc:duration": 2752000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "Entretien de Louise Liotard et de Jeane Mallet 1"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/cfpp2000/Louise_Liotard_F_85_et_Jeanne_Mallet_F_75_SO-1.wav",
+          "meta": {
+            "dc:duration": 2752000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "Entretien de Louise Liotard et de Jeane Mallet 1"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [
+        {
+          "id": "topics",
+          "content": {
+            "mimetype": "application/json",
+            "data": [
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc001",
+                "desc": "arrivée des parents à Saint-Ouen"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc002",
+                "desc": "déménagement dans saint-Ouen"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc003",
+                "desc": "changements dans le quartier"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc004",
+                "desc": "changement de la population"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc005",
+                "desc": "bombardement de la tour de St-Ouen"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc006",
+                "desc": "jeu de hasard (kéno)"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc007",
+                "desc": "endroits fréquentés"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc008",
+                "desc": "agression"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc009",
+                "desc": "fêtes dans le quartier"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc010",
+                "desc": "voisins d'immeuble"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc011",
+                "desc": "changements de modes de vie"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc012",
+                "desc": "vieux St Ouen, nouveau St Ouen"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc013",
+                "desc": "les chiffonniers"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc014",
+                "desc": "mari marchand de bouteilles d'occasion"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc015",
+                "desc": "déplacements"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc016",
+                "desc": "établissements scolaires"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc017",
+                "desc": "le nouveau-né adopté par Josephine Baker"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc018",
+                "desc": "Jeanne et Mitterrand dans la Nièvre"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc019",
+                "desc": "Fernand lefort maire de saint Ouen"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc020",
+                "desc": "les langues à Saint Ouen"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc021",
+                "desc": "variétés de français"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc022",
+                "desc": "problèmes économiques"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_tpc023",
+                "desc": "le travail après 40"
+              }
+            ]
+          }
+        },
+        {
+          "id": "speakers",
+          "content": {
+            "mimetype": "application/json",
+            "data": [
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_spkr001",
+                "name": "Jeanne"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_spkr002",
+                "name": "Louise"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_spkr003",
+                "name": "Marc"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_spkr004",
+                "name": "Anne"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_spkr005",
+                "name": "Farah"
+              },
+              {
+                "id": "11280.100/crdo-CFPP2000_11_SOUND_spkr006",
+                "name": "?"
+              }
+            ]
+          }
+        }
+      ],
+      "lists": [
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn001",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0001"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0002"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0003"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0004"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0005"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0006"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0007"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0008"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0009"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0010"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0011"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0012"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0013"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0014"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0015"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0016"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0017"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0018"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0019"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0020"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0021"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0022"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0023"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0024"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0025"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0026"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0027"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0028"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0029"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0030"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0031"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0032"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0033"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0034"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0035"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0036"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0037"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0038"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0039"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0040"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0041"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0042"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0043"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0044"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0045"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0046"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0047"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0048"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0049"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0050"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0051"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0052"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0053"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0054"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0055"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0056"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0057"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0058"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0059"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0060"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0061"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0062"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0063"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0064"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0065"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0066"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0067"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0068"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0069"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0070"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0071"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0072"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0073"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0074"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0075"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0076"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc001"
+            },
+            "corpus:begin": 0,
+            "corpus:end": 280537
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn002",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0077"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0078"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0079"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0080"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0081"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0082"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0083"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0084"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0085"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0086"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0087"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0088"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0089"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0090"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0091"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0092"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0093"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0094"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0095"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0096"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0097"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0098"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0099"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0100"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0101"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0102"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0103"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0104"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0105"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0106"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0107"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0108"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0109"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0110"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0111"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0112"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0113"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0114"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0115"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0116"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0117"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0118"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0119"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0120"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0121"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0122"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc002"
+            },
+            "corpus:begin": 280537,
+            "corpus:end": 506254
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn003",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0123"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0124"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0125"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0126"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0127"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0128"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0129"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0130"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0131"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0132"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0133"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0134"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0135"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0136"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0137"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0138"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0139"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0140"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0141"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0142"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0143"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0144"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0145"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0146"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0147"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0148"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0149"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0150"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0151"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0152"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0153"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0154"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0155"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0156"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0157"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0158"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0159"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0160"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0161"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0162"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0163"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0164"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0165"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc003"
+            },
+            "corpus:begin": 506254,
+            "corpus:end": 673079
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn004",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0166"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0167"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0168"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0169"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0170"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0171"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0172"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0173"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc004"
+            },
+            "corpus:begin": 673079,
+            "corpus:end": 708359
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn005",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0174"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0175"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0176"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0177"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0178"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0179"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0180"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0181"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0182"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0183"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0184"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0185"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0186"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0187"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0188"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0189"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0190"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0191"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0192"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0193"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc005"
+            },
+            "corpus:begin": 708359,
+            "corpus:end": 775065
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn006",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0194"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0195"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0196"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0197"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0198"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0199"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0200"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0201"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0202"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0203"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0204"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0205"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0206"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0207"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0208"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0209"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0210"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0211"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0212"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0213"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0214"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0215"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc006"
+            },
+            "corpus:begin": 775065,
+            "corpus:end": 843705
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn007",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0216"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0217"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc007"
+            },
+            "corpus:begin": 843705,
+            "corpus:end": 855814
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn008",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0218"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0219"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0220"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0221"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0222"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0223"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0224"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0225"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0226"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0227"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0228"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0229"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0230"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0231"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0232"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0233"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0234"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0235"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0236"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0237"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0238"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0239"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0240"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0241"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0242"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0243"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0244"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0245"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0246"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0247"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0248"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0249"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0250"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0251"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0252"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0253"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0254"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0255"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0256"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc008"
+            },
+            "corpus:begin": 855814,
+            "corpus:end": 1116332
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn009",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0257"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0258"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0259"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0260"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0261"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0262"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0263"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0264"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0265"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0266"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0267"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0268"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0269"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0270"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0271"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0272"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0273"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0274"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0275"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0276"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0277"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc009"
+            },
+            "corpus:begin": 1116332,
+            "corpus:end": 1229069
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn010",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0278"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0279"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0280"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0281"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0282"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0283"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0284"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0285"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0286"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0287"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0288"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0289"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0290"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0291"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0292"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0293"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0294"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0295"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0296"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0297"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0298"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0299"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0300"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0301"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0302"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0303"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0304"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0305"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0306"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0307"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0308"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0309"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0310"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0311"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0312"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0313"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0314"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0315"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0316"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0317"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0318"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0319"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0320"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0321"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0322"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0323"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0324"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0325"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0326"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0327"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc010"
+            },
+            "corpus:begin": 1229069,
+            "corpus:end": 1413436
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn011",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0328"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0329"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0330"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0331"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0332"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0333"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0334"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0335"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0336"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0337"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0338"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0339"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0340"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc011"
+            },
+            "corpus:begin": 1413436,
+            "corpus:end": 1473666
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn012",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0341"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0342"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0343"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0344"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0345"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0346"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0347"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0348"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0349"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0350"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0351"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0352"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0353"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0354"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0355"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0356"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0357"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0358"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0359"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0360"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0361"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0362"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0363"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0364"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0365"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0366"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0367"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0368"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0369"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0370"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0371"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0372"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0373"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0374"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0375"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0376"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0377"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0378"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0379"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0380"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0381"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0382"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0383"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0384"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0385"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0386"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc012"
+            },
+            "corpus:begin": 1473666,
+            "corpus:end": 1636520
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn013",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0387"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0388"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0389"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0390"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0391"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0392"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0393"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0394"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0395"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0396"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc013"
+            },
+            "corpus:begin": 1636520,
+            "corpus:end": 1679023
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn014",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0397"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0398"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0399"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0400"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0401"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0402"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0403"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0404"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0405"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0406"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0407"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc014"
+            },
+            "corpus:begin": 1679023,
+            "corpus:end": 1720703
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn015",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0408"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0409"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0410"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0411"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0412"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0413"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0414"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0415"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0416"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0417"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0418"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0419"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0420"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0421"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0422"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0423"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0424"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0425"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0426"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0427"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0428"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0429"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc015"
+            },
+            "corpus:begin": 1720703,
+            "corpus:end": 1828725
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn016",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0430"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0431"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0432"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0433"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0434"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0435"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0436"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc016"
+            },
+            "corpus:begin": 1828725,
+            "corpus:end": 1861903
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn017",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0437"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0438"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0439"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0440"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0441"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0442"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0443"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0444"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0445"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0446"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0447"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0448"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0449"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0450"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0451"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0452"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0453"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0454"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0455"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0456"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0457"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0458"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0459"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0460"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0461"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0462"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0463"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0464"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0465"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0466"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0467"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0468"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0469"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0470"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0471"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0472"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0473"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0474"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc017"
+            },
+            "corpus:begin": 1861903,
+            "corpus:end": 2017307
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn018",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0475"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0476"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0477"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0478"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0479"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0480"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0481"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0482"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0483"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0484"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0485"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0486"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0487"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0488"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0489"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0490"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0491"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0492"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0493"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0494"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0495"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0496"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0497"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0498"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0499"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0500"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0501"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0502"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0503"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0504"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0505"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0506"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0507"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0508"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0509"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0510"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0511"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0512"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0513"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0514"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0515"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0516"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc018"
+            },
+            "corpus:begin": 2017307,
+            "corpus:end": 2160611
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn019",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0517"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0518"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0519"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0520"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0521"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0522"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0523"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0524"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0525"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0526"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0527"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0528"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0529"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0530"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0531"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0532"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0533"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0534"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0535"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0536"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0537"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0538"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0539"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0540"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0541"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0542"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0543"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0544"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0545"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0546"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0547"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0548"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0549"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0550"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0551"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0552"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0553"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0554"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0555"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0556"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0557"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0558"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0559"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0560"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0561"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0562"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0563"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0564"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0565"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0566"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0567"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc019"
+            },
+            "corpus:begin": 2160611,
+            "corpus:end": 2308716
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn020",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0568"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0569"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0570"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0571"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0572"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0573"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0574"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0575"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0576"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0577"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0578"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0579"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc020"
+            },
+            "corpus:begin": 2308716,
+            "corpus:end": 2357111
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn021",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0580"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0581"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0582"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0583"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0584"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0585"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0586"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0587"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0588"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0589"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0590"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0591"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0592"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0593"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0594"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0595"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0596"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0597"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0598"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0599"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0600"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0601"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0602"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0603"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0604"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0605"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0606"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0607"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0608"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0609"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0610"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0611"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0612"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0613"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0614"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0615"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0616"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0617"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0618"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0619"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0620"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0621"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0622"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc021"
+            },
+            "corpus:begin": 2357111,
+            "corpus:end": 2527679
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn022",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0623"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0624"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0625"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0626"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0627"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0628"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0629"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0630"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0631"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0632"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0633"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0634"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0635"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc022"
+            },
+            "corpus:begin": 2527679,
+            "corpus:end": 2589097
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_sctn023",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0636"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0637"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0638"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0639"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0640"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0641"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0642"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0643"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0644"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0645"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0646"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0647"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0648"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0649"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0650"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0651"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0652"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0653"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0654"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0655"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0656"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0657"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0658"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0659"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0660"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0661"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0662"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0663"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0664"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0665"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0666"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0667"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0668"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0669"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0670"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0671"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0672"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0673"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0674"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0675"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0676"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0677"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0678"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0679"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0680"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0681"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0682"
+            },
+            {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0683"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_tpc023"
+            },
+            "corpus:begin": 2589097,
+            "corpus:end": 2752041
+          }
+        }
+      ],
+      "annotation-types": [
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0001",
+          "dc:title": "Turn 1",
+          "corpus:begin": 0,
+          "corpus:end": 63
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0002",
+          "dc:title": "Turn 2",
+          "corpus:begin": 63,
+          "corpus:end": 1396
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0003",
+          "dc:title": "Turn 3",
+          "corpus:begin": 1396,
+          "corpus:end": 4866
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0004",
+          "dc:title": "Turn 4",
+          "corpus:begin": 4866,
+          "corpus:end": 8970
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0005",
+          "dc:title": "Turn 5",
+          "corpus:begin": 8970,
+          "corpus:end": 12655
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0006",
+          "dc:title": "Turn 6",
+          "corpus:begin": 12655,
+          "corpus:end": 16705
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0007",
+          "dc:title": "Turn 7",
+          "corpus:begin": 16705,
+          "corpus:end": 19417
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0008",
+          "dc:title": "Turn 8",
+          "corpus:begin": 19417,
+          "corpus:end": 25832
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0009",
+          "dc:title": "Turn 9",
+          "corpus:begin": 25832,
+          "corpus:end": 27063
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0010",
+          "dc:title": "Turn 10",
+          "corpus:begin": 27063,
+          "corpus:end": 28037
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0011",
+          "dc:title": "Turn 11",
+          "corpus:begin": 28037,
+          "corpus:end": 30432
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0012",
+          "dc:title": "Turn 12",
+          "corpus:begin": 30432,
+          "corpus:end": 32150
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0013",
+          "dc:title": "Turn 13",
+          "corpus:begin": 32150,
+          "corpus:end": 33402
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0014",
+          "dc:title": "Turn 14",
+          "corpus:begin": 33402,
+          "corpus:end": 34079
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0015",
+          "dc:title": "Turn 15",
+          "corpus:begin": 34079,
+          "corpus:end": 37465
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0016",
+          "dc:title": "Turn 16",
+          "corpus:begin": 37465,
+          "corpus:end": 38993
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0017",
+          "dc:title": "Turn 17",
+          "corpus:begin": 38993,
+          "corpus:end": 43696
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0018",
+          "dc:title": "Turn 18",
+          "corpus:begin": 43696,
+          "corpus:end": 46324
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0019",
+          "dc:title": "Turn 19",
+          "corpus:begin": 46324,
+          "corpus:end": 49886
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0020",
+          "dc:title": "Turn 20",
+          "corpus:begin": 49886,
+          "corpus:end": 58513
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0021",
+          "dc:title": "Turn 21",
+          "corpus:begin": 58513,
+          "corpus:end": 61767
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0022",
+          "dc:title": "Turn 22",
+          "corpus:begin": 61767,
+          "corpus:end": 68454
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0023",
+          "dc:title": "Turn 23",
+          "corpus:begin": 68454,
+          "corpus:end": 71967
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0024",
+          "dc:title": "Turn 24",
+          "corpus:begin": 71967,
+          "corpus:end": 75851
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0025",
+          "dc:title": "Turn 25",
+          "corpus:begin": 75851,
+          "corpus:end": 79281
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0026",
+          "dc:title": "Turn 26",
+          "corpus:begin": 79281,
+          "corpus:end": 85185
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0027",
+          "dc:title": "Turn 27",
+          "corpus:begin": 85185,
+          "corpus:end": 88698
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0028",
+          "dc:title": "Turn 28",
+          "corpus:begin": 88698,
+          "corpus:end": 90726
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0029",
+          "dc:title": "Turn 29",
+          "corpus:begin": 90726,
+          "corpus:end": 91798
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0030",
+          "dc:title": "Turn 30",
+          "corpus:begin": 91798,
+          "corpus:end": 94775
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0031",
+          "dc:title": "Turn 31",
+          "corpus:begin": 94775,
+          "corpus:end": 97010
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0032",
+          "dc:title": "Turn 32",
+          "corpus:begin": 97010,
+          "corpus:end": 97431
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0033",
+          "dc:title": "Turn 33",
+          "corpus:begin": 97431,
+          "corpus:end": 102840
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0034",
+          "dc:title": "Turn 34",
+          "corpus:begin": 102840,
+          "corpus:end": 106641
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0035",
+          "dc:title": "Turn 35",
+          "corpus:begin": 106641,
+          "corpus:end": 108546
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0036",
+          "dc:title": "Turn 36",
+          "corpus:begin": 108546,
+          "corpus:end": 115852
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0037",
+          "dc:title": "Turn 37",
+          "corpus:begin": 115852,
+          "corpus:end": 116437
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0038",
+          "dc:title": "Turn 38",
+          "corpus:begin": 116437,
+          "corpus:end": 124361
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0039",
+          "dc:title": "Turn 39",
+          "corpus:begin": 124361,
+          "corpus:end": 125680
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0040",
+          "dc:title": "Turn 40",
+          "corpus:begin": 125680,
+          "corpus:end": 128451
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0041",
+          "dc:title": "Turn 41",
+          "corpus:begin": 128451,
+          "corpus:end": 133159
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0042",
+          "dc:title": "Turn 42",
+          "corpus:begin": 133159,
+          "corpus:end": 134775
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0043",
+          "dc:title": "Turn 43",
+          "corpus:begin": 134775,
+          "corpus:end": 135187
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0044",
+          "dc:title": "Turn 44",
+          "corpus:begin": 135187,
+          "corpus:end": 135558
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0045",
+          "dc:title": "Turn 45",
+          "corpus:begin": 135558,
+          "corpus:end": 138081
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0046",
+          "dc:title": "Turn 46",
+          "corpus:begin": 138081,
+          "corpus:end": 138906
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0047",
+          "dc:title": "Turn 47",
+          "corpus:begin": 138906,
+          "corpus:end": 140605
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0048",
+          "dc:title": "Turn 48",
+          "corpus:begin": 140605,
+          "corpus:end": 144489
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0049",
+          "dc:title": "Turn 49",
+          "corpus:begin": 144489,
+          "corpus:end": 147260
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0050",
+          "dc:title": "Turn 50",
+          "corpus:begin": 147260,
+          "corpus:end": 147928
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0051",
+          "dc:title": "Turn 51",
+          "corpus:begin": 147928,
+          "corpus:end": 149420
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0052",
+          "dc:title": "Turn 52",
+          "corpus:begin": 149420,
+          "corpus:end": 150492
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0053",
+          "dc:title": "Turn 53",
+          "corpus:begin": 150492,
+          "corpus:end": 164163
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0054",
+          "dc:title": "Turn 54",
+          "corpus:begin": 164163,
+          "corpus:end": 166706
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0055",
+          "dc:title": "Turn 55",
+          "corpus:begin": 166706,
+          "corpus:end": 175025
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0056",
+          "dc:title": "Turn 56",
+          "corpus:begin": 175025,
+          "corpus:end": 177145
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0057",
+          "dc:title": "Turn 57",
+          "corpus:begin": 177145,
+          "corpus:end": 210939
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0058",
+          "dc:title": "Turn 58",
+          "corpus:begin": 210939,
+          "corpus:end": 214709
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0059",
+          "dc:title": "Turn 59",
+          "corpus:begin": 214709,
+          "corpus:end": 221166
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0060",
+          "dc:title": "Turn 60",
+          "corpus:begin": 221166,
+          "corpus:end": 222461
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0061",
+          "dc:title": "Turn 61",
+          "corpus:begin": 222461,
+          "corpus:end": 224390
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0062",
+          "dc:title": "Turn 62",
+          "corpus:begin": 224390,
+          "corpus:end": 228054
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0063",
+          "dc:title": "Turn 63",
+          "corpus:begin": 228054,
+          "corpus:end": 230703
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0064",
+          "dc:title": "Turn 64",
+          "corpus:begin": 230703,
+          "corpus:end": 231130
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0065",
+          "dc:title": "Turn 65",
+          "corpus:begin": 231130,
+          "corpus:end": 238454
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0066",
+          "dc:title": "Turn 66",
+          "corpus:begin": 238454,
+          "corpus:end": 239195
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0067",
+          "dc:title": "Turn 67",
+          "corpus:begin": 239195,
+          "corpus:end": 244002
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0068",
+          "dc:title": "Turn 68",
+          "corpus:begin": 244002,
+          "corpus:end": 250967
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0069",
+          "dc:title": "Turn 69",
+          "corpus:begin": 250967,
+          "corpus:end": 259620
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0070",
+          "dc:title": "Turn 70",
+          "corpus:begin": 259620,
+          "corpus:end": 261321
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0071",
+          "dc:title": "Turn 71",
+          "corpus:begin": 261321,
+          "corpus:end": 267715
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0072",
+          "dc:title": "Turn 72",
+          "corpus:begin": 267715,
+          "corpus:end": 268756
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0073",
+          "dc:title": "Turn 73",
+          "corpus:begin": 268756,
+          "corpus:end": 276123
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0074",
+          "dc:title": "Turn 74",
+          "corpus:begin": 276123,
+          "corpus:end": 276466
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0075",
+          "dc:title": "Turn 75",
+          "corpus:begin": 276466,
+          "corpus:end": 278438
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0076",
+          "dc:title": "Turn 76",
+          "corpus:begin": 278438,
+          "corpus:end": 280537
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0077",
+          "dc:title": "Turn 77",
+          "corpus:begin": 280537,
+          "corpus:end": 284899
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0078",
+          "dc:title": "Turn 78",
+          "corpus:begin": 284899,
+          "corpus:end": 286194
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0079",
+          "dc:title": "Turn 79",
+          "corpus:begin": 286194,
+          "corpus:end": 291318
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0080",
+          "dc:title": "Turn 80",
+          "corpus:begin": 291318,
+          "corpus:end": 296379
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0081",
+          "dc:title": "Turn 81",
+          "corpus:begin": 296379,
+          "corpus:end": 301456
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0082",
+          "dc:title": "Turn 82",
+          "corpus:begin": 301456,
+          "corpus:end": 314289
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0083",
+          "dc:title": "Turn 83",
+          "corpus:begin": 314289,
+          "corpus:end": 319564
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0084",
+          "dc:title": "Turn 84",
+          "corpus:begin": 319564,
+          "corpus:end": 322338
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0085",
+          "dc:title": "Turn 85",
+          "corpus:begin": 322338,
+          "corpus:end": 324434
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0086",
+          "dc:title": "Turn 86",
+          "corpus:begin": 324434,
+          "corpus:end": 334911
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0087",
+          "dc:title": "Turn 87",
+          "corpus:begin": 334911,
+          "corpus:end": 341368
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0088",
+          "dc:title": "Turn 88",
+          "corpus:begin": 341368,
+          "corpus:end": 354320
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0089",
+          "dc:title": "Turn 89",
+          "corpus:begin": 354320,
+          "corpus:end": 355399
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0090",
+          "dc:title": "Turn 90",
+          "corpus:begin": 355399,
+          "corpus:end": 359783
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0091",
+          "dc:title": "Turn 91",
+          "corpus:begin": 359783,
+          "corpus:end": 362982
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0092",
+          "dc:title": "Turn 92",
+          "corpus:begin": 362982,
+          "corpus:end": 365229
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0093",
+          "dc:title": "Turn 93",
+          "corpus:begin": 365229,
+          "corpus:end": 367962
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0094",
+          "dc:title": "Turn 94",
+          "corpus:begin": 367962,
+          "corpus:end": 371161
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0095",
+          "dc:title": "Turn 95",
+          "corpus:begin": 371161,
+          "corpus:end": 372710
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0096",
+          "dc:title": "Turn 96",
+          "corpus:begin": 372710,
+          "corpus:end": 385514
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0097",
+          "dc:title": "Turn 97",
+          "corpus:begin": 385514,
+          "corpus:end": 390511
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0098",
+          "dc:title": "Turn 98",
+          "corpus:begin": 390511,
+          "corpus:end": 410233
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0099",
+          "dc:title": "Turn 99",
+          "corpus:begin": 410233,
+          "corpus:end": 415484
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0100",
+          "dc:title": "Turn 100",
+          "corpus:begin": 415484,
+          "corpus:end": 420735
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0101",
+          "dc:title": "Turn 101",
+          "corpus:begin": 420735,
+          "corpus:end": 423934
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0102",
+          "dc:title": "Turn 102",
+          "corpus:begin": 423934,
+          "corpus:end": 428170
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0103",
+          "dc:title": "Turn 103",
+          "corpus:begin": 428170,
+          "corpus:end": 431940
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0104",
+          "dc:title": "Turn 104",
+          "corpus:begin": 431940,
+          "corpus:end": 434885
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0105",
+          "dc:title": "Turn 105",
+          "corpus:begin": 434885,
+          "corpus:end": 441744
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0106",
+          "dc:title": "Turn 106",
+          "corpus:begin": 441744,
+          "corpus:end": 443970
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0107",
+          "dc:title": "Turn 107",
+          "corpus:begin": 443970,
+          "corpus:end": 448671
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0108",
+          "dc:title": "Turn 108",
+          "corpus:begin": 448671,
+          "corpus:end": 455932
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0109",
+          "dc:title": "Turn 109",
+          "corpus:begin": 455932,
+          "corpus:end": 458200
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0110",
+          "dc:title": "Turn 110",
+          "corpus:begin": 458200,
+          "corpus:end": 460891
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0111",
+          "dc:title": "Turn 111",
+          "corpus:begin": 460891,
+          "corpus:end": 467327
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0112",
+          "dc:title": "Turn 112",
+          "corpus:begin": 467327,
+          "corpus:end": 469891
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0113",
+          "dc:title": "Turn 113",
+          "corpus:begin": 469891,
+          "corpus:end": 471376
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0114",
+          "dc:title": "Turn 114",
+          "corpus:begin": 471376,
+          "corpus:end": 477050
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0115",
+          "dc:title": "Turn 115",
+          "corpus:begin": 477050,
+          "corpus:end": 486194
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0116",
+          "dc:title": "Turn 116",
+          "corpus:begin": 486194,
+          "corpus:end": 487256
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0117",
+          "dc:title": "Turn 117",
+          "corpus:begin": 487256,
+          "corpus:end": 494728
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0118",
+          "dc:title": "Turn 118",
+          "corpus:begin": 494728,
+          "corpus:end": 497440
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0119",
+          "dc:title": "Turn 119",
+          "corpus:begin": 497440,
+          "corpus:end": 498798
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0120",
+          "dc:title": "Turn 120",
+          "corpus:begin": 498798,
+          "corpus:end": 504155
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0121",
+          "dc:title": "Turn 121",
+          "corpus:begin": 504155,
+          "corpus:end": 505534
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0122",
+          "dc:title": "Turn 122",
+          "corpus:begin": 505534,
+          "corpus:end": 506254
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0123",
+          "dc:title": "Turn 123",
+          "corpus:begin": 506254,
+          "corpus:end": 508776
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0124",
+          "dc:title": "Turn 124",
+          "corpus:begin": 508776,
+          "corpus:end": 512948
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0125",
+          "dc:title": "Turn 125",
+          "corpus:begin": 512948,
+          "corpus:end": 516485
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0126",
+          "dc:title": "Turn 126",
+          "corpus:begin": 516485,
+          "corpus:end": 525777
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0127",
+          "dc:title": "Turn 127",
+          "corpus:begin": 525777,
+          "corpus:end": 527664
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0128",
+          "dc:title": "Turn 128",
+          "corpus:begin": 527664,
+          "corpus:end": 530567
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0129",
+          "dc:title": "Turn 129",
+          "corpus:begin": 530567,
+          "corpus:end": 536880
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0130",
+          "dc:title": "Turn 130",
+          "corpus:begin": 536880,
+          "corpus:end": 542343
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0131",
+          "dc:title": "Turn 131",
+          "corpus:begin": 542343,
+          "corpus:end": 544289
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0132",
+          "dc:title": "Turn 132",
+          "corpus:begin": 544289,
+          "corpus:end": 546299
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0133",
+          "dc:title": "Turn 133",
+          "corpus:begin": 546299,
+          "corpus:end": 548149
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0134",
+          "dc:title": "Turn 134",
+          "corpus:begin": 548149,
+          "corpus:end": 553231
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0135",
+          "dc:title": "Turn 135",
+          "corpus:begin": 553231,
+          "corpus:end": 556790
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0136",
+          "dc:title": "Turn 136",
+          "corpus:begin": 556790,
+          "corpus:end": 561893
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0137",
+          "dc:title": "Turn 137",
+          "corpus:begin": 561893,
+          "corpus:end": 566784
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0138",
+          "dc:title": "Turn 138",
+          "corpus:begin": 566784,
+          "corpus:end": 569396
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0139",
+          "dc:title": "Turn 139",
+          "corpus:begin": 569396,
+          "corpus:end": 572256
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0140",
+          "dc:title": "Turn 140",
+          "corpus:begin": 572256,
+          "corpus:end": 574059
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0141",
+          "dc:title": "Turn 141",
+          "corpus:begin": 574059,
+          "corpus:end": 581024
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0142",
+          "dc:title": "Turn 142",
+          "corpus:begin": 581024,
+          "corpus:end": 581536
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0143",
+          "dc:title": "Turn 143",
+          "corpus:begin": 581536,
+          "corpus:end": 585454
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0144",
+          "dc:title": "Turn 144",
+          "corpus:begin": 585454,
+          "corpus:end": 592800
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0145",
+          "dc:title": "Turn 145",
+          "corpus:begin": 592800,
+          "corpus:end": 597988
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0146",
+          "dc:title": "Turn 146",
+          "corpus:begin": 597988,
+          "corpus:end": 607132
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0147",
+          "dc:title": "Turn 147",
+          "corpus:begin": 607132,
+          "corpus:end": 614160
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0148",
+          "dc:title": "Turn 148",
+          "corpus:begin": 614160,
+          "corpus:end": 619348
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0149",
+          "dc:title": "Turn 149",
+          "corpus:begin": 619348,
+          "corpus:end": 620749
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0150",
+          "dc:title": "Turn 150",
+          "corpus:begin": 620749,
+          "corpus:end": 622133
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0151",
+          "dc:title": "Turn 151",
+          "corpus:begin": 622133,
+          "corpus:end": 625015
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0152",
+          "dc:title": "Turn 152",
+          "corpus:begin": 625015,
+          "corpus:end": 627071
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0153",
+          "dc:title": "Turn 153",
+          "corpus:begin": 627071,
+          "corpus:end": 636008
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0154",
+          "dc:title": "Turn 154",
+          "corpus:begin": 636008,
+          "corpus:end": 636435
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0155",
+          "dc:title": "Turn 155",
+          "corpus:begin": 636435,
+          "corpus:end": 638978
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0156",
+          "dc:title": "Turn 156",
+          "corpus:begin": 638978,
+          "corpus:end": 640374
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0157",
+          "dc:title": "Turn 157",
+          "corpus:begin": 640374,
+          "corpus:end": 647191
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0158",
+          "dc:title": "Turn 158",
+          "corpus:begin": 647191,
+          "corpus:end": 650242
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0159",
+          "dc:title": "Turn 159",
+          "corpus:begin": 650242,
+          "corpus:end": 652214
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0160",
+          "dc:title": "Turn 160",
+          "corpus:begin": 652214,
+          "corpus:end": 656534
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0161",
+          "dc:title": "Turn 161",
+          "corpus:begin": 656534,
+          "corpus:end": 660770
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0162",
+          "dc:title": "Turn 162",
+          "corpus:begin": 660770,
+          "corpus:end": 665408
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0163",
+          "dc:title": "Turn 163",
+          "corpus:begin": 665408,
+          "corpus:end": 666385
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0164",
+          "dc:title": "Turn 164",
+          "corpus:begin": 666385,
+          "corpus:end": 669732
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0165",
+          "dc:title": "Turn 165",
+          "corpus:begin": 669732,
+          "corpus:end": 673079
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0166",
+          "dc:title": "Turn 166",
+          "corpus:begin": 673079,
+          "corpus:end": 682413
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0167",
+          "dc:title": "Turn 167",
+          "corpus:begin": 682413,
+          "corpus:end": 690901
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0168",
+          "dc:title": "Turn 168",
+          "corpus:begin": 690901,
+          "corpus:end": 691794
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0169",
+          "dc:title": "Turn 169",
+          "corpus:begin": 691794,
+          "corpus:end": 693470
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0170",
+          "dc:title": "Turn 170",
+          "corpus:begin": 693470,
+          "corpus:end": 698996
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0171",
+          "dc:title": "Turn 171",
+          "corpus:begin": 698996,
+          "corpus:end": 704120
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0172",
+          "dc:title": "Turn 172",
+          "corpus:begin": 704120,
+          "corpus:end": 707382
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0173",
+          "dc:title": "Turn 173",
+          "corpus:begin": 707382,
+          "corpus:end": 708359
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0174",
+          "dc:title": "Turn 174",
+          "corpus:begin": 708359,
+          "corpus:end": 714037
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0175",
+          "dc:title": "Turn 175",
+          "corpus:begin": 714037,
+          "corpus:end": 717130
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0176",
+          "dc:title": "Turn 176",
+          "corpus:begin": 717130,
+          "corpus:end": 724454
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0177",
+          "dc:title": "Turn 177",
+          "corpus:begin": 724454,
+          "corpus:end": 730657
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0178",
+          "dc:title": "Turn 178",
+          "corpus:begin": 730657,
+          "corpus:end": 739484
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0179",
+          "dc:title": "Turn 179",
+          "corpus:begin": 739484,
+          "corpus:end": 739848
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0180",
+          "dc:title": "Turn 180",
+          "corpus:begin": 739848,
+          "corpus:end": 741481
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0181",
+          "dc:title": "Turn 181",
+          "corpus:begin": 741481,
+          "corpus:end": 742243
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0182",
+          "dc:title": "Turn 182",
+          "corpus:begin": 742243,
+          "corpus:end": 747367
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0183",
+          "dc:title": "Turn 183",
+          "corpus:begin": 747367,
+          "corpus:end": 750608
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0184",
+          "dc:title": "Turn 184",
+          "corpus:begin": 750608,
+          "corpus:end": 754420
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0185",
+          "dc:title": "Turn 185",
+          "corpus:begin": 754420,
+          "corpus:end": 760073
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0186",
+          "dc:title": "Turn 186",
+          "corpus:begin": 760073,
+          "corpus:end": 762679
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0187",
+          "dc:title": "Turn 187",
+          "corpus:begin": 762679,
+          "corpus:end": 765984
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0188",
+          "dc:title": "Turn 188",
+          "corpus:begin": 765984,
+          "corpus:end": 767110
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0189",
+          "dc:title": "Turn 189",
+          "corpus:begin": 767110,
+          "corpus:end": 769124
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0190",
+          "dc:title": "Turn 190",
+          "corpus:begin": 769124,
+          "corpus:end": 769721
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0191",
+          "dc:title": "Turn 191",
+          "corpus:begin": 769721,
+          "corpus:end": 771989
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0192",
+          "dc:title": "Turn 192",
+          "corpus:begin": 771989,
+          "corpus:end": 773855
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0193",
+          "dc:title": "Turn 193",
+          "corpus:begin": 773855,
+          "corpus:end": 775065
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0194",
+          "dc:title": "Turn 194",
+          "corpus:begin": 775065,
+          "corpus:end": 778480
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0195",
+          "dc:title": "Turn 195",
+          "corpus:begin": 778480,
+          "corpus:end": 779627
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0196",
+          "dc:title": "Turn 196",
+          "corpus:begin": 779627,
+          "corpus:end": 780774
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0197",
+          "dc:title": "Turn 197",
+          "corpus:begin": 780774,
+          "corpus:end": 785919
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0198",
+          "dc:title": "Turn 198",
+          "corpus:begin": 785919,
+          "corpus:end": 797813
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0199",
+          "dc:title": "Turn 199",
+          "corpus:begin": 797813,
+          "corpus:end": 798258
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0200",
+          "dc:title": "Turn 200",
+          "corpus:begin": 798258,
+          "corpus:end": 800145
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0201",
+          "dc:title": "Turn 201",
+          "corpus:begin": 800145,
+          "corpus:end": 801736
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0202",
+          "dc:title": "Turn 202",
+          "corpus:begin": 801736,
+          "corpus:end": 804342
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0203",
+          "dc:title": "Turn 203",
+          "corpus:begin": 804342,
+          "corpus:end": 805870
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0204",
+          "dc:title": "Turn 204",
+          "corpus:begin": 805870,
+          "corpus:end": 809471
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0205",
+          "dc:title": "Turn 205",
+          "corpus:begin": 809471,
+          "corpus:end": 813156
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0206",
+          "dc:title": "Turn 206",
+          "corpus:begin": 813156,
+          "corpus:end": 813731
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0207",
+          "dc:title": "Turn 207",
+          "corpus:begin": 813731,
+          "corpus:end": 816972
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0208",
+          "dc:title": "Turn 208",
+          "corpus:begin": 816972,
+          "corpus:end": 818999
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0209",
+          "dc:title": "Turn 209",
+          "corpus:begin": 818999,
+          "corpus:end": 820890
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0210",
+          "dc:title": "Turn 210",
+          "corpus:begin": 820890,
+          "corpus:end": 827347
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0211",
+          "dc:title": "Turn 211",
+          "corpus:begin": 827347,
+          "corpus:end": 832175
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0212",
+          "dc:title": "Turn 212",
+          "corpus:begin": 832175,
+          "corpus:end": 834126
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0213",
+          "dc:title": "Turn 213",
+          "corpus:begin": 834126,
+          "corpus:end": 838785
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0214",
+          "dc:title": "Turn 214",
+          "corpus:begin": 838785,
+          "corpus:end": 840972
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0215",
+          "dc:title": "Turn 215",
+          "corpus:begin": 840972,
+          "corpus:end": 843705
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0216",
+          "dc:title": "Turn 216",
+          "corpus:begin": 843705,
+          "corpus:end": 853233
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0217",
+          "dc:title": "Turn 217",
+          "corpus:begin": 853233,
+          "corpus:end": 855814
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0218",
+          "dc:title": "Turn 218",
+          "corpus:begin": 855814,
+          "corpus:end": 860388
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0219",
+          "dc:title": "Turn 219",
+          "corpus:begin": 860388,
+          "corpus:end": 868114
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0220",
+          "dc:title": "Turn 220",
+          "corpus:begin": 868114,
+          "corpus:end": 871186
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0221",
+          "dc:title": "Turn 221",
+          "corpus:begin": 871186,
+          "corpus:end": 877262
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0222",
+          "dc:title": "Turn 222",
+          "corpus:begin": 877262,
+          "corpus:end": 878790
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0223",
+          "dc:title": "Turn 223",
+          "corpus:begin": 878790,
+          "corpus:end": 886707
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0224",
+          "dc:title": "Turn 224",
+          "corpus:begin": 886707,
+          "corpus:end": 890477
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0225",
+          "dc:title": "Turn 225",
+          "corpus:begin": 890477,
+          "corpus:end": 911109
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0226",
+          "dc:title": "Turn 226",
+          "corpus:begin": 911109,
+          "corpus:end": 912235
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0227",
+          "dc:title": "Turn 227",
+          "corpus:begin": 912235,
+          "corpus:end": 953190
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0228",
+          "dc:title": "Turn 228",
+          "corpus:begin": 953190,
+          "corpus:end": 953825
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0229",
+          "dc:title": "Turn 229",
+          "corpus:begin": 953825,
+          "corpus:end": 969633
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0230",
+          "dc:title": "Turn 230",
+          "corpus:begin": 969633,
+          "corpus:end": 970077
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0231",
+          "dc:title": "Turn 231",
+          "corpus:begin": 970077,
+          "corpus:end": 986753
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0232",
+          "dc:title": "Turn 232",
+          "corpus:begin": 986753,
+          "corpus:end": 993887
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0233",
+          "dc:title": "Turn 233",
+          "corpus:begin": 993887,
+          "corpus:end": 994272
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0234",
+          "dc:title": "Turn 234",
+          "corpus:begin": 994272,
+          "corpus:end": 1000094
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0235",
+          "dc:title": "Turn 235",
+          "corpus:begin": 1000094,
+          "corpus:end": 1004308
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0236",
+          "dc:title": "Turn 236",
+          "corpus:begin": 1004308,
+          "corpus:end": 1023226
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0237",
+          "dc:title": "Turn 237",
+          "corpus:begin": 1023226,
+          "corpus:end": 1025409
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0238",
+          "dc:title": "Turn 238",
+          "corpus:begin": 1025409,
+          "corpus:end": 1038467
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0239",
+          "dc:title": "Turn 239",
+          "corpus:begin": 1038467,
+          "corpus:end": 1040079
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0240",
+          "dc:title": "Turn 240",
+          "corpus:begin": 1040079,
+          "corpus:end": 1059759
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0241",
+          "dc:title": "Turn 241",
+          "corpus:begin": 1059759,
+          "corpus:end": 1068057
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0242",
+          "dc:title": "Turn 242",
+          "corpus:begin": 1068057,
+          "corpus:end": 1068590
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0243",
+          "dc:title": "Turn 243",
+          "corpus:begin": 1068590,
+          "corpus:end": 1072127
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0244",
+          "dc:title": "Turn 244",
+          "corpus:begin": 1072127,
+          "corpus:end": 1072868
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0245",
+          "dc:title": "Turn 245",
+          "corpus:begin": 1072868,
+          "corpus:end": 1078711
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0246",
+          "dc:title": "Turn 246",
+          "corpus:begin": 1078711,
+          "corpus:end": 1080217
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0247",
+          "dc:title": "Turn 247",
+          "corpus:begin": 1080217,
+          "corpus:end": 1083479
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0248",
+          "dc:title": "Turn 248",
+          "corpus:begin": 1083479,
+          "corpus:end": 1088709
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0249",
+          "dc:title": "Turn 249",
+          "corpus:begin": 1088709,
+          "corpus:end": 1091633
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0250",
+          "dc:title": "Turn 250",
+          "corpus:begin": 1091633,
+          "corpus:end": 1093372
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0251",
+          "dc:title": "Turn 251",
+          "corpus:begin": 1093372,
+          "corpus:end": 1097375
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0252",
+          "dc:title": "Turn 252",
+          "corpus:begin": 1097375,
+          "corpus:end": 1099876
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0253",
+          "dc:title": "Turn 253",
+          "corpus:begin": 1099876,
+          "corpus:end": 1105719
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0254",
+          "dc:title": "Turn 254",
+          "corpus:begin": 1105719,
+          "corpus:end": 1106760
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0255",
+          "dc:title": "Turn 255",
+          "corpus:begin": 1106760,
+          "corpus:end": 1114106
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0256",
+          "dc:title": "Turn 256",
+          "corpus:begin": 1114106,
+          "corpus:end": 1116332
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0257",
+          "dc:title": "Turn 257",
+          "corpus:begin": 1116332,
+          "corpus:end": 1126957
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0258",
+          "dc:title": "Turn 258",
+          "corpus:begin": 1126957,
+          "corpus:end": 1133075
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0259",
+          "dc:title": "Turn 259",
+          "corpus:begin": 1133075,
+          "corpus:end": 1133710
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0260",
+          "dc:title": "Turn 260",
+          "corpus:begin": 1133710,
+          "corpus:end": 1140019
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0261",
+          "dc:title": "Turn 261",
+          "corpus:begin": 1140019,
+          "corpus:end": 1143810
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0262",
+          "dc:title": "Turn 262",
+          "corpus:begin": 1143810,
+          "corpus:end": 1148024
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0263",
+          "dc:title": "Turn 263",
+          "corpus:begin": 1148024,
+          "corpus:end": 1154206
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0264",
+          "dc:title": "Turn 264",
+          "corpus:begin": 1154206,
+          "corpus:end": 1156389
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0265",
+          "dc:title": "Turn 265",
+          "corpus:begin": 1156389,
+          "corpus:end": 1158742
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0266",
+          "dc:title": "Turn 266",
+          "corpus:begin": 1158742,
+          "corpus:end": 1161052
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0267",
+          "dc:title": "Turn 267",
+          "corpus:begin": 1161052,
+          "corpus:end": 1163447
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0268",
+          "dc:title": "Turn 268",
+          "corpus:begin": 1163447,
+          "corpus:end": 1166798
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0269",
+          "dc:title": "Turn 269",
+          "corpus:begin": 1166798,
+          "corpus:end": 1170081
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0270",
+          "dc:title": "Turn 270",
+          "corpus:begin": 1170081,
+          "corpus:end": 1181789
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0271",
+          "dc:title": "Turn 271",
+          "corpus:begin": 1181789,
+          "corpus:end": 1187040
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0272",
+          "dc:title": "Turn 272",
+          "corpus:begin": 1187040,
+          "corpus:end": 1187886
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0273",
+          "dc:title": "Turn 273",
+          "corpus:begin": 1187886,
+          "corpus:end": 1193353
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0274",
+          "dc:title": "Turn 274",
+          "corpus:begin": 1193353,
+          "corpus:end": 1207223
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0275",
+          "dc:title": "Turn 275",
+          "corpus:begin": 1207223,
+          "corpus:end": 1207756
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0276",
+          "dc:title": "Turn 276",
+          "corpus:begin": 1207756,
+          "corpus:end": 1216117
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0277",
+          "dc:title": "Turn 277",
+          "corpus:begin": 1216117,
+          "corpus:end": 1229069
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0278",
+          "dc:title": "Turn 278",
+          "corpus:begin": 1229069,
+          "corpus:end": 1243227
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0279",
+          "dc:title": "Turn 279",
+          "corpus:begin": 1243227,
+          "corpus:end": 1244924
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0280",
+          "dc:title": "Turn 280",
+          "corpus:begin": 1244924,
+          "corpus:end": 1245732
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0281",
+          "dc:title": "Turn 281",
+          "corpus:begin": 1245732,
+          "corpus:end": 1248360
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0282",
+          "dc:title": "Turn 282",
+          "corpus:begin": 1248360,
+          "corpus:end": 1249845
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0283",
+          "dc:title": "Turn 283",
+          "corpus:begin": 1249845,
+          "corpus:end": 1250759
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0284",
+          "dc:title": "Turn 284",
+          "corpus:begin": 1250759,
+          "corpus:end": 1254444
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0285",
+          "dc:title": "Turn 285",
+          "corpus:begin": 1254444,
+          "corpus:end": 1256818
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0286",
+          "dc:title": "Turn 286",
+          "corpus:begin": 1256818,
+          "corpus:end": 1258434
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0287",
+          "dc:title": "Turn 287",
+          "corpus:begin": 1258434,
+          "corpus:end": 1259999
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0288",
+          "dc:title": "Turn 288",
+          "corpus:begin": 1259999,
+          "corpus:end": 1260459
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0289",
+          "dc:title": "Turn 289",
+          "corpus:begin": 1260459,
+          "corpus:end": 1260924
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0290",
+          "dc:title": "Turn 290",
+          "corpus:begin": 1260924,
+          "corpus:end": 1266294
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0291",
+          "dc:title": "Turn 291",
+          "corpus:begin": 1266294,
+          "corpus:end": 1279416
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0292",
+          "dc:title": "Turn 292",
+          "corpus:begin": 1279416,
+          "corpus:end": 1287396
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0293",
+          "dc:title": "Turn 293",
+          "corpus:begin": 1287396,
+          "corpus:end": 1293533
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0294",
+          "dc:title": "Turn 294",
+          "corpus:begin": 1293533,
+          "corpus:end": 1297007
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0295",
+          "dc:title": "Turn 295",
+          "corpus:begin": 1297007,
+          "corpus:end": 1325362
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0296",
+          "dc:title": "Turn 296",
+          "corpus:begin": 1325362,
+          "corpus:end": 1326657
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0297",
+          "dc:title": "Turn 297",
+          "corpus:begin": 1326657,
+          "corpus:end": 1330787
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0298",
+          "dc:title": "Turn 298",
+          "corpus:begin": 1330787,
+          "corpus:end": 1332336
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0299",
+          "dc:title": "Turn 299",
+          "corpus:begin": 1332336,
+          "corpus:end": 1333271
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0300",
+          "dc:title": "Turn 300",
+          "corpus:begin": 1333271,
+          "corpus:end": 1334375
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0301",
+          "dc:title": "Turn 301",
+          "corpus:begin": 1334375,
+          "corpus:end": 1345211
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0302",
+          "dc:title": "Turn 302",
+          "corpus:begin": 1345211,
+          "corpus:end": 1346290
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0303",
+          "dc:title": "Turn 303",
+          "corpus:begin": 1346290,
+          "corpus:end": 1347944
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0304",
+          "dc:title": "Turn 304",
+          "corpus:begin": 1347944,
+          "corpus:end": 1349641
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0305",
+          "dc:title": "Turn 305",
+          "corpus:begin": 1349641,
+          "corpus:end": 1355082
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0306",
+          "dc:title": "Turn 306",
+          "corpus:begin": 1355082,
+          "corpus:end": 1360756
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0307",
+          "dc:title": "Turn 307",
+          "corpus:begin": 1360756,
+          "corpus:end": 1369477
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0308",
+          "dc:title": "Turn 308",
+          "corpus:begin": 1369477,
+          "corpus:end": 1379933
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0309",
+          "dc:title": "Turn 309",
+          "corpus:begin": 1379933,
+          "corpus:end": 1382370
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0310",
+          "dc:title": "Turn 310",
+          "corpus:begin": 1382370,
+          "corpus:end": 1384554
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0311",
+          "dc:title": "Turn 311",
+          "corpus:begin": 1384554,
+          "corpus:end": 1386103
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0312",
+          "dc:title": "Turn 312",
+          "corpus:begin": 1386103,
+          "corpus:end": 1386805
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0313",
+          "dc:title": "Turn 313",
+          "corpus:begin": 1386805,
+          "corpus:end": 1387871
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0314",
+          "dc:title": "Turn 314",
+          "corpus:begin": 1387871,
+          "corpus:end": 1388692
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0315",
+          "dc:title": "Turn 315",
+          "corpus:begin": 1388692,
+          "corpus:end": 1389475
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0316",
+          "dc:title": "Turn 316",
+          "corpus:begin": 1389475,
+          "corpus:end": 1390325
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0317",
+          "dc:title": "Turn 317",
+          "corpus:begin": 1390325,
+          "corpus:end": 1393037
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0318",
+          "dc:title": "Turn 318",
+          "corpus:begin": 1393037,
+          "corpus:end": 1394145
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0319",
+          "dc:title": "Turn 319",
+          "corpus:begin": 1394145,
+          "corpus:end": 1396498
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0320",
+          "dc:title": "Turn 320",
+          "corpus:begin": 1396498,
+          "corpus:end": 1400987
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0321",
+          "dc:title": "Turn 321",
+          "corpus:begin": 1400987,
+          "corpus:end": 1403149
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0322",
+          "dc:title": "Turn 322",
+          "corpus:begin": 1403149,
+          "corpus:end": 1404342
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0323",
+          "dc:title": "Turn 323",
+          "corpus:begin": 1404342,
+          "corpus:end": 1405637
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0324",
+          "dc:title": "Turn 324",
+          "corpus:begin": 1405637,
+          "corpus:end": 1407461
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0325",
+          "dc:title": "Turn 325",
+          "corpus:begin": 1407461,
+          "corpus:end": 1409264
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0326",
+          "dc:title": "Turn 326",
+          "corpus:begin": 1409264,
+          "corpus:end": 1413161
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0327",
+          "dc:title": "Turn 327",
+          "corpus:begin": 1413161,
+          "corpus:end": 1413436
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0328",
+          "dc:title": "Turn 328",
+          "corpus:begin": 1413436,
+          "corpus:end": 1415429
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0329",
+          "dc:title": "Turn 329",
+          "corpus:begin": 1415429,
+          "corpus:end": 1416301
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0330",
+          "dc:title": "Turn 330",
+          "corpus:begin": 1416301,
+          "corpus:end": 1420727
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0331",
+          "dc:title": "Turn 331",
+          "corpus:begin": 1420727,
+          "corpus:end": 1427713
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0332",
+          "dc:title": "Turn 332",
+          "corpus:begin": 1427713,
+          "corpus:end": 1429791
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0333",
+          "dc:title": "Turn 333",
+          "corpus:begin": 1429791,
+          "corpus:end": 1437306
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0334",
+          "dc:title": "Turn 334",
+          "corpus:begin": 1437306,
+          "corpus:end": 1446238
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0335",
+          "dc:title": "Turn 335",
+          "corpus:begin": 1446238,
+          "corpus:end": 1446962
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0336",
+          "dc:title": "Turn 336",
+          "corpus:begin": 1446962,
+          "corpus:end": 1448405
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0337",
+          "dc:title": "Turn 337",
+          "corpus:begin": 1448405,
+          "corpus:end": 1449277
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0338",
+          "dc:title": "Turn 338",
+          "corpus:begin": 1449277,
+          "corpus:end": 1457786
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0339",
+          "dc:title": "Turn 339",
+          "corpus:begin": 1457786,
+          "corpus:end": 1468521
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0340",
+          "dc:title": "Turn 340",
+          "corpus:begin": 1468521,
+          "corpus:end": 1473666
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0341",
+          "dc:title": "Turn 341",
+          "corpus:begin": 1473666,
+          "corpus:end": 1485941
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0342",
+          "dc:title": "Turn 342",
+          "corpus:begin": 1485941,
+          "corpus:end": 1490430
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0343",
+          "dc:title": "Turn 343",
+          "corpus:begin": 1490430,
+          "corpus:end": 1491429
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0344",
+          "dc:title": "Turn 344",
+          "corpus:begin": 1491429,
+          "corpus:end": 1498055
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0345",
+          "dc:title": "Turn 345",
+          "corpus:begin": 1498055,
+          "corpus:end": 1504808
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0346",
+          "dc:title": "Turn 346",
+          "corpus:begin": 1504808,
+          "corpus:end": 1510186
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0347",
+          "dc:title": "Turn 347",
+          "corpus:begin": 1510186,
+          "corpus:end": 1510571
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0348",
+          "dc:title": "Turn 348",
+          "corpus:begin": 1510571,
+          "corpus:end": 1519376
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0349",
+          "dc:title": "Turn 349",
+          "corpus:begin": 1519376,
+          "corpus:end": 1522367
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0350",
+          "dc:title": "Turn 350",
+          "corpus:begin": 1522367,
+          "corpus:end": 1524233
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0351",
+          "dc:title": "Turn 351",
+          "corpus:begin": 1524233,
+          "corpus:end": 1527559
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0352",
+          "dc:title": "Turn 352",
+          "corpus:begin": 1527559,
+          "corpus:end": 1531287
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0353",
+          "dc:title": "Turn 353",
+          "corpus:begin": 1531287,
+          "corpus:end": 1538569
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0354",
+          "dc:title": "Turn 354",
+          "corpus:begin": 1538569,
+          "corpus:end": 1538929
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0355",
+          "dc:title": "Turn 355",
+          "corpus:begin": 1538929,
+          "corpus:end": 1540837
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0356",
+          "dc:title": "Turn 356",
+          "corpus:begin": 1540837,
+          "corpus:end": 1543655
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0357",
+          "dc:title": "Turn 357",
+          "corpus:begin": 1543655,
+          "corpus:end": 1548271
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0358",
+          "dc:title": "Turn 358",
+          "corpus:begin": 1548271,
+          "corpus:end": 1553332
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0359",
+          "dc:title": "Turn 359",
+          "corpus:begin": 1553332,
+          "corpus:end": 1554669
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0360",
+          "dc:title": "Turn 360",
+          "corpus:begin": 1554669,
+          "corpus:end": 1560665
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0361",
+          "dc:title": "Turn 361",
+          "corpus:begin": 1560665,
+          "corpus:end": 1562108
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0362",
+          "dc:title": "Turn 362",
+          "corpus:begin": 1562108,
+          "corpus:end": 1563868
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0363",
+          "dc:title": "Turn 363",
+          "corpus:begin": 1563868,
+          "corpus:end": 1566009
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0364",
+          "dc:title": "Turn 364",
+          "corpus:begin": 1566009,
+          "corpus:end": 1570139
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0365",
+          "dc:title": "Turn 365",
+          "corpus:begin": 1570139,
+          "corpus:end": 1570693
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0366",
+          "dc:title": "Turn 366",
+          "corpus:begin": 1570693,
+          "corpus:end": 1577954
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0367",
+          "dc:title": "Turn 367",
+          "corpus:begin": 1577954,
+          "corpus:end": 1585828
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0368",
+          "dc:title": "Turn 368",
+          "corpus:begin": 1585828,
+          "corpus:end": 1587588
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0369",
+          "dc:title": "Turn 369",
+          "corpus:begin": 1587588,
+          "corpus:end": 1590745
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0370",
+          "dc:title": "Turn 370",
+          "corpus:begin": 1590745,
+          "corpus:end": 1591028
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0371",
+          "dc:title": "Turn 371",
+          "corpus:begin": 1591028,
+          "corpus:end": 1595433
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0372",
+          "dc:title": "Turn 372",
+          "corpus:begin": 1595433,
+          "corpus:end": 1596262
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0373",
+          "dc:title": "Turn 373",
+          "corpus:begin": 1596262,
+          "corpus:end": 1602338
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0374",
+          "dc:title": "Turn 374",
+          "corpus:begin": 1602338,
+          "corpus:end": 1603294
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0375",
+          "dc:title": "Turn 375",
+          "corpus:begin": 1603294,
+          "corpus:end": 1604788
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0376",
+          "dc:title": "Turn 376",
+          "corpus:begin": 1604788,
+          "corpus:end": 1606569
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0377",
+          "dc:title": "Turn 377",
+          "corpus:begin": 1606569,
+          "corpus:end": 1607525
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0378",
+          "dc:title": "Turn 378",
+          "corpus:begin": 1607525,
+          "corpus:end": 1608037
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0379",
+          "dc:title": "Turn 379",
+          "corpus:begin": 1608037,
+          "corpus:end": 1608612
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0380",
+          "dc:title": "Turn 380",
+          "corpus:begin": 1608612,
+          "corpus:end": 1609695
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0381",
+          "dc:title": "Turn 381",
+          "corpus:begin": 1609695,
+          "corpus:end": 1614015
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0382",
+          "dc:title": "Turn 382",
+          "corpus:begin": 1614015,
+          "corpus:end": 1619363
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0383",
+          "dc:title": "Turn 383",
+          "corpus:begin": 1619363,
+          "corpus:end": 1620425
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0384",
+          "dc:title": "Turn 384",
+          "corpus:begin": 1620425,
+          "corpus:end": 1627559
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0385",
+          "dc:title": "Turn 385",
+          "corpus:begin": 1627559,
+          "corpus:end": 1632852
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0386",
+          "dc:title": "Turn 386",
+          "corpus:begin": 1632852,
+          "corpus:end": 1636520
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0387",
+          "dc:title": "Turn 387",
+          "corpus:begin": 1636520,
+          "corpus:end": 1643125
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0388",
+          "dc:title": "Turn 388",
+          "corpus:begin": 1643125,
+          "corpus:end": 1644589
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0389",
+          "dc:title": "Turn 389",
+          "corpus:begin": 1644589,
+          "corpus:end": 1652717
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0390",
+          "dc:title": "Turn 390",
+          "corpus:begin": 1652717,
+          "corpus:end": 1653014
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0391",
+          "dc:title": "Turn 391",
+          "corpus:begin": 1653014,
+          "corpus:end": 1659538
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0392",
+          "dc:title": "Turn 392",
+          "corpus:begin": 1659538,
+          "corpus:end": 1660769
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0393",
+          "dc:title": "Turn 393",
+          "corpus:begin": 1660769,
+          "corpus:end": 1667501
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0394",
+          "dc:title": "Turn 394",
+          "corpus:begin": 1667501,
+          "corpus:end": 1668013
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0395",
+          "dc:title": "Turn 395",
+          "corpus:begin": 1668013,
+          "corpus:end": 1674068
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0396",
+          "dc:title": "Turn 396",
+          "corpus:begin": 1674068,
+          "corpus:end": 1679023
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0397",
+          "dc:title": "Turn 397",
+          "corpus:begin": 1679023,
+          "corpus:end": 1683999
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0398",
+          "dc:title": "Turn 398",
+          "corpus:begin": 1683999,
+          "corpus:end": 1691783
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0399",
+          "dc:title": "Turn 399",
+          "corpus:begin": 1691783,
+          "corpus:end": 1695151
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0400",
+          "dc:title": "Turn 400",
+          "corpus:begin": 1695151,
+          "corpus:end": 1697165
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0401",
+          "dc:title": "Turn 401",
+          "corpus:begin": 1697165,
+          "corpus:end": 1698989
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0402",
+          "dc:title": "Turn 402",
+          "corpus:begin": 1698989,
+          "corpus:end": 1706931
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0403",
+          "dc:title": "Turn 403",
+          "corpus:begin": 1706931,
+          "corpus:end": 1708585
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0404",
+          "dc:title": "Turn 404",
+          "corpus:begin": 1708585,
+          "corpus:end": 1712905
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0405",
+          "dc:title": "Turn 405",
+          "corpus:begin": 1712905,
+          "corpus:end": 1717796
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0406",
+          "dc:title": "Turn 406",
+          "corpus:begin": 1717796,
+          "corpus:end": 1719345
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0407",
+          "dc:title": "Turn 407",
+          "corpus:begin": 1719345,
+          "corpus:end": 1720703
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0408",
+          "dc:title": "Turn 408",
+          "corpus:begin": 1720703,
+          "corpus:end": 1728599
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0409",
+          "dc:title": "Turn 409",
+          "corpus:begin": 1728599,
+          "corpus:end": 1731502
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0410",
+          "dc:title": "Turn 410",
+          "corpus:begin": 1731502,
+          "corpus:end": 1738467
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0411",
+          "dc:title": "Turn 411",
+          "corpus:begin": 1738467,
+          "corpus:end": 1740608
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0412",
+          "dc:title": "Turn 412",
+          "corpus:begin": 1740608,
+          "corpus:end": 1741966
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0413",
+          "dc:title": "Turn 413",
+          "corpus:begin": 1741966,
+          "corpus:end": 1746540
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0414",
+          "dc:title": "Turn 414",
+          "corpus:begin": 1746540,
+          "corpus:end": 1747111
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0415",
+          "dc:title": "Turn 415",
+          "corpus:begin": 1747111,
+          "corpus:end": 1758117
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0416",
+          "dc:title": "Turn 416",
+          "corpus:begin": 1758117,
+          "corpus:end": 1764489
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0417",
+          "dc:title": "Turn 417",
+          "corpus:begin": 1764489,
+          "corpus:end": 1768703
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0418",
+          "dc:title": "Turn 418",
+          "corpus:begin": 1768703,
+          "corpus:end": 1769553
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0419",
+          "dc:title": "Turn 419",
+          "corpus:begin": 1769553,
+          "corpus:end": 1773344
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0420",
+          "dc:title": "Turn 420",
+          "corpus:begin": 1773344,
+          "corpus:end": 1777347
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0421",
+          "dc:title": "Turn 421",
+          "corpus:begin": 1777347,
+          "corpus:end": 1779255
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0422",
+          "dc:title": "Turn 422",
+          "corpus:begin": 1779255,
+          "corpus:end": 1780770
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0423",
+          "dc:title": "Turn 423",
+          "corpus:begin": 1780770,
+          "corpus:end": 1788560
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0424",
+          "dc:title": "Turn 424",
+          "corpus:begin": 1788560,
+          "corpus:end": 1789601
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0425",
+          "dc:title": "Turn 425",
+          "corpus:begin": 1789601,
+          "corpus:end": 1791662
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0426",
+          "dc:title": "Turn 426",
+          "corpus:begin": 1791662,
+          "corpus:end": 1800489
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0427",
+          "dc:title": "Turn 427",
+          "corpus:begin": 1800489,
+          "corpus:end": 1800853
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0428",
+          "dc:title": "Turn 428",
+          "corpus:begin": 1800853,
+          "corpus:end": 1802105
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0429",
+          "dc:title": "Turn 429",
+          "corpus:begin": 1802105,
+          "corpus:end": 1828725
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0430",
+          "dc:title": "Turn 430",
+          "corpus:begin": 1828725,
+          "corpus:end": 1840344
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0431",
+          "dc:title": "Turn 431",
+          "corpus:begin": 1840344,
+          "corpus:end": 1844516
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0432",
+          "dc:title": "Turn 432",
+          "corpus:begin": 1844516,
+          "corpus:end": 1848223
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0433",
+          "dc:title": "Turn 433",
+          "corpus:begin": 1848223,
+          "corpus:end": 1848756
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0434",
+          "dc:title": "Turn 434",
+          "corpus:begin": 1848756,
+          "corpus:end": 1857159
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0435",
+          "dc:title": "Turn 435",
+          "corpus:begin": 1857159,
+          "corpus:end": 1858154
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0436",
+          "dc:title": "Turn 436",
+          "corpus:begin": 1858154,
+          "corpus:end": 1861903
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0437",
+          "dc:title": "Turn 437",
+          "corpus:begin": 1861903,
+          "corpus:end": 1875088
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0438",
+          "dc:title": "Turn 438",
+          "corpus:begin": 1875088,
+          "corpus:end": 1875621
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0439",
+          "dc:title": "Turn 439",
+          "corpus:begin": 1875621,
+          "corpus:end": 1887960
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0440",
+          "dc:title": "Turn 440",
+          "corpus:begin": 1887960,
+          "corpus:end": 1890080
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0441",
+          "dc:title": "Turn 441",
+          "corpus:begin": 1890080,
+          "corpus:end": 1894413
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0442",
+          "dc:title": "Turn 442",
+          "corpus:begin": 1894413,
+          "corpus:end": 1900087
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0443",
+          "dc:title": "Turn 443",
+          "corpus:begin": 1900087,
+          "corpus:end": 1900637
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0444",
+          "dc:title": "Turn 444",
+          "corpus:begin": 1900637,
+          "corpus:end": 1912891
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0445",
+          "dc:title": "Turn 445",
+          "corpus:begin": 1912891,
+          "corpus:end": 1913741
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0446",
+          "dc:title": "Turn 446",
+          "corpus:begin": 1913741,
+          "corpus:end": 1915802
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0447",
+          "dc:title": "Turn 447",
+          "corpus:begin": 1915802,
+          "corpus:end": 1921201
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0448",
+          "dc:title": "Turn 448",
+          "corpus:begin": 1921201,
+          "corpus:end": 1925754
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0449",
+          "dc:title": "Turn 449",
+          "corpus:begin": 1925754,
+          "corpus:end": 1929164
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0450",
+          "dc:title": "Turn 450",
+          "corpus:begin": 1929164,
+          "corpus:end": 1929757
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0451",
+          "dc:title": "Turn 451",
+          "corpus:begin": 1929757,
+          "corpus:end": 1932575
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0452",
+          "dc:title": "Turn 452",
+          "corpus:begin": 1932575,
+          "corpus:end": 1939772
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0453",
+          "dc:title": "Turn 453",
+          "corpus:begin": 1939772,
+          "corpus:end": 1941913
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0454",
+          "dc:title": "Turn 454",
+          "corpus:begin": 1941913,
+          "corpus:end": 1945429
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0455",
+          "dc:title": "Turn 455",
+          "corpus:begin": 1945429,
+          "corpus:end": 1955948
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0456",
+          "dc:title": "Turn 456",
+          "corpus:begin": 1955948,
+          "corpus:end": 1960738
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0457",
+          "dc:title": "Turn 457",
+          "corpus:begin": 1960738,
+          "corpus:end": 1961191
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0458",
+          "dc:title": "Turn 458",
+          "corpus:begin": 1961191,
+          "corpus:end": 1962845
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0459",
+          "dc:title": "Turn 459",
+          "corpus:begin": 1962845,
+          "corpus:end": 1967440
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0460",
+          "dc:title": "Turn 460",
+          "corpus:begin": 1967440,
+          "corpus:end": 1973766
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0461",
+          "dc:title": "Turn 461",
+          "corpus:begin": 1973766,
+          "corpus:end": 1975992
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0462",
+          "dc:title": "Turn 462",
+          "corpus:begin": 1975992,
+          "corpus:end": 1976800
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0463",
+          "dc:title": "Turn 463",
+          "corpus:begin": 1976800,
+          "corpus:end": 1978328
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0464",
+          "dc:title": "Turn 464",
+          "corpus:begin": 1978328,
+          "corpus:end": 1980109
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0465",
+          "dc:title": "Turn 465",
+          "corpus:begin": 1980109,
+          "corpus:end": 1980790
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0466",
+          "dc:title": "Turn 466",
+          "corpus:begin": 1980790,
+          "corpus:end": 1983016
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0467",
+          "dc:title": "Turn 467",
+          "corpus:begin": 1983016,
+          "corpus:end": 1983528
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0468",
+          "dc:title": "Turn 468",
+          "corpus:begin": 1983528,
+          "corpus:end": 1993941
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0469",
+          "dc:title": "Turn 469",
+          "corpus:begin": 1993941,
+          "corpus:end": 1994470
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0470",
+          "dc:title": "Turn 470",
+          "corpus:begin": 1994470,
+          "corpus:end": 2000889
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0471",
+          "dc:title": "Turn 471",
+          "corpus:begin": 2000889,
+          "corpus:end": 2004067
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0472",
+          "dc:title": "Turn 472",
+          "corpus:begin": 2004067,
+          "corpus:end": 2007710
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0473",
+          "dc:title": "Turn 473",
+          "corpus:begin": 2007710,
+          "corpus:end": 2012373
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0474",
+          "dc:title": "Turn 474",
+          "corpus:begin": 2012373,
+          "corpus:end": 2017307
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0475",
+          "dc:title": "Turn 475",
+          "corpus:begin": 2017307,
+          "corpus:end": 2020548
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0476",
+          "dc:title": "Turn 476",
+          "corpus:begin": 2020548,
+          "corpus:end": 2024762
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0477",
+          "dc:title": "Turn 477",
+          "corpus:begin": 2024762,
+          "corpus:end": 2027538
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0478",
+          "dc:title": "Turn 478",
+          "corpus:begin": 2027538,
+          "corpus:end": 2033720
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0479",
+          "dc:title": "Turn 479",
+          "corpus:begin": 2033720,
+          "corpus:end": 2039902
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0480",
+          "dc:title": "Turn 480",
+          "corpus:begin": 2039902,
+          "corpus:end": 2040731
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0481",
+          "dc:title": "Turn 481",
+          "corpus:begin": 2040731,
+          "corpus:end": 2048817
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0482",
+          "dc:title": "Turn 482",
+          "corpus:begin": 2048817,
+          "corpus:end": 2056945
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0483",
+          "dc:title": "Turn 483",
+          "corpus:begin": 2056945,
+          "corpus:end": 2063529
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0484",
+          "dc:title": "Turn 484",
+          "corpus:begin": 2063529,
+          "corpus:end": 2067405
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0485",
+          "dc:title": "Turn 485",
+          "corpus:begin": 2067405,
+          "corpus:end": 2068679
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0486",
+          "dc:title": "Turn 486",
+          "corpus:begin": 2068679,
+          "corpus:end": 2069470
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0487",
+          "dc:title": "Turn 487",
+          "corpus:begin": 2069470,
+          "corpus:end": 2074615
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0488",
+          "dc:title": "Turn 488",
+          "corpus:begin": 2074615,
+          "corpus:end": 2076714
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0489",
+          "dc:title": "Turn 489",
+          "corpus:begin": 2076714,
+          "corpus:end": 2079320
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0490",
+          "dc:title": "Turn 490",
+          "corpus:begin": 2079320,
+          "corpus:end": 2080107
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0491",
+          "dc:title": "Turn 491",
+          "corpus:begin": 2080107,
+          "corpus:end": 2083052
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0492",
+          "dc:title": "Turn 492",
+          "corpus:begin": 2083052,
+          "corpus:end": 2086653
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0493",
+          "dc:title": "Turn 493",
+          "corpus:begin": 2086653,
+          "corpus:end": 2087613
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0494",
+          "dc:title": "Turn 494",
+          "corpus:begin": 2087613,
+          "corpus:end": 2089860
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0495",
+          "dc:title": "Turn 495",
+          "corpus:begin": 2089860,
+          "corpus:end": 2090950
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0496",
+          "dc:title": "Turn 496",
+          "corpus:begin": 2090950,
+          "corpus:end": 2092333
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0497",
+          "dc:title": "Turn 497",
+          "corpus:begin": 2092333,
+          "corpus:end": 2093241
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0498",
+          "dc:title": "Turn 498",
+          "corpus:begin": 2093241,
+          "corpus:end": 2095076
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0499",
+          "dc:title": "Turn 499",
+          "corpus:begin": 2095076,
+          "corpus:end": 2099998
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0500",
+          "dc:title": "Turn 500",
+          "corpus:begin": 2099998,
+          "corpus:end": 2100818
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0501",
+          "dc:title": "Turn 501",
+          "corpus:begin": 2100818,
+          "corpus:end": 2102529
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0502",
+          "dc:title": "Turn 502",
+          "corpus:begin": 2102529,
+          "corpus:end": 2108638
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0503",
+          "dc:title": "Turn 503",
+          "corpus:begin": 2108638,
+          "corpus:end": 2109869
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0504",
+          "dc:title": "Turn 504",
+          "corpus:begin": 2109869,
+          "corpus:end": 2117955
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0505",
+          "dc:title": "Turn 505",
+          "corpus:begin": 2117955,
+          "corpus:end": 2120739
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0506",
+          "dc:title": "Turn 506",
+          "corpus:begin": 2120739,
+          "corpus:end": 2123049
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0507",
+          "dc:title": "Turn 507",
+          "corpus:begin": 2123049,
+          "corpus:end": 2126062
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0508",
+          "dc:title": "Turn 508",
+          "corpus:begin": 2126062,
+          "corpus:end": 2127843
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0509",
+          "dc:title": "Turn 509",
+          "corpus:begin": 2127843,
+          "corpus:end": 2130454
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0510",
+          "dc:title": "Turn 510",
+          "corpus:begin": 2130454,
+          "corpus:end": 2131897
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0511",
+          "dc:title": "Turn 511",
+          "corpus:begin": 2131897,
+          "corpus:end": 2135392
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0512",
+          "dc:title": "Turn 512",
+          "corpus:begin": 2135392,
+          "corpus:end": 2138951
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0513",
+          "dc:title": "Turn 513",
+          "corpus:begin": 2138951,
+          "corpus:end": 2142848
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0514",
+          "dc:title": "Turn 514",
+          "corpus:begin": 2142848,
+          "corpus:end": 2150447
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0515",
+          "dc:title": "Turn 515",
+          "corpus:begin": 2150447,
+          "corpus:end": 2157010
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0516",
+          "dc:title": "Turn 516",
+          "corpus:begin": 2157010,
+          "corpus:end": 2160611
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0517",
+          "dc:title": "Turn 517",
+          "corpus:begin": 2160611,
+          "corpus:end": 2164698
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0518",
+          "dc:title": "Turn 518",
+          "corpus:begin": 2164698,
+          "corpus:end": 2167643
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0519",
+          "dc:title": "Turn 519",
+          "corpus:begin": 2167643,
+          "corpus:end": 2169107
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0520",
+          "dc:title": "Turn 520",
+          "corpus:begin": 2169107,
+          "corpus:end": 2170317
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0521",
+          "dc:title": "Turn 521",
+          "corpus:begin": 2170317,
+          "corpus:end": 2171591
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0522",
+          "dc:title": "Turn 522",
+          "corpus:begin": 2171591,
+          "corpus:end": 2172505
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0523",
+          "dc:title": "Turn 523",
+          "corpus:begin": 2172505,
+          "corpus:end": 2176626
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0524",
+          "dc:title": "Turn 524",
+          "corpus:begin": 2176626,
+          "corpus:end": 2179042
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0525",
+          "dc:title": "Turn 525",
+          "corpus:begin": 2179042,
+          "corpus:end": 2179564
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0526",
+          "dc:title": "Turn 526",
+          "corpus:begin": 2179564,
+          "corpus:end": 2181162
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0527",
+          "dc:title": "Turn 527",
+          "corpus:begin": 2181162,
+          "corpus:end": 2183684
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0528",
+          "dc:title": "Turn 528",
+          "corpus:begin": 2183684,
+          "corpus:end": 2184831
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0529",
+          "dc:title": "Turn 529",
+          "corpus:begin": 2184831,
+          "corpus:end": 2189342
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0530",
+          "dc:title": "Turn 530",
+          "corpus:begin": 2189342,
+          "corpus:end": 2192456
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0531",
+          "dc:title": "Turn 531",
+          "corpus:begin": 2192456,
+          "corpus:end": 2201963
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0532",
+          "dc:title": "Turn 532",
+          "corpus:begin": 2201963,
+          "corpus:end": 2206854
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0533",
+          "dc:title": "Turn 533",
+          "corpus:begin": 2206854,
+          "corpus:end": 2209037
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0534",
+          "dc:title": "Turn 534",
+          "corpus:begin": 2209037,
+          "corpus:end": 2211770
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0535",
+          "dc:title": "Turn 535",
+          "corpus:begin": 2211770,
+          "corpus:end": 2219814
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0536",
+          "dc:title": "Turn 536",
+          "corpus:begin": 2219814,
+          "corpus:end": 2222569
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0537",
+          "dc:title": "Turn 537",
+          "corpus:begin": 2222569,
+          "corpus:end": 2223377
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0538",
+          "dc:title": "Turn 538",
+          "corpus:begin": 2223377,
+          "corpus:end": 2226132
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0539",
+          "dc:title": "Turn 539",
+          "corpus:begin": 2226132,
+          "corpus:end": 2231489
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0540",
+          "dc:title": "Turn 540",
+          "corpus:begin": 2231489,
+          "corpus:end": 2233101
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0541",
+          "dc:title": "Turn 541",
+          "corpus:begin": 2233101,
+          "corpus:end": 2234967
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0542",
+          "dc:title": "Turn 542",
+          "corpus:begin": 2234967,
+          "corpus:end": 2238547
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0543",
+          "dc:title": "Turn 543",
+          "corpus:begin": 2238547,
+          "corpus:end": 2239694
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0544",
+          "dc:title": "Turn 544",
+          "corpus:begin": 2239694,
+          "corpus:end": 2241983
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0545",
+          "dc:title": "Turn 545",
+          "corpus:begin": 2241983,
+          "corpus:end": 2243024
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0546",
+          "dc:title": "Turn 546",
+          "corpus:begin": 2243024,
+          "corpus:end": 2243705
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0547",
+          "dc:title": "Turn 547",
+          "corpus:begin": 2243705,
+          "corpus:end": 2244217
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0548",
+          "dc:title": "Turn 548",
+          "corpus:begin": 2244217,
+          "corpus:end": 2244754
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0549",
+          "dc:title": "Turn 549",
+          "corpus:begin": 2244754,
+          "corpus:end": 2247784
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0550",
+          "dc:title": "Turn 550",
+          "corpus:begin": 2247784,
+          "corpus:end": 2249185
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0551",
+          "dc:title": "Turn 551",
+          "corpus:begin": 2249185,
+          "corpus:end": 2250755
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0552",
+          "dc:title": "Turn 552",
+          "corpus:begin": 2250755,
+          "corpus:end": 2255443
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0553",
+          "dc:title": "Turn 553",
+          "corpus:begin": 2255443,
+          "corpus:end": 2258578
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0554",
+          "dc:title": "Turn 554",
+          "corpus:begin": 2258578,
+          "corpus:end": 2259323
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0555",
+          "dc:title": "Turn 555",
+          "corpus:begin": 2259323,
+          "corpus:end": 2260491
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0556",
+          "dc:title": "Turn 556",
+          "corpus:begin": 2260491,
+          "corpus:end": 2262294
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0557",
+          "dc:title": "Turn 557",
+          "corpus:begin": 2262294,
+          "corpus:end": 2265387
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0558",
+          "dc:title": "Turn 558",
+          "corpus:begin": 2265387,
+          "corpus:end": 2268861
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0559",
+          "dc:title": "Turn 559",
+          "corpus:begin": 2268861,
+          "corpus:end": 2271891
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0560",
+          "dc:title": "Turn 560",
+          "corpus:begin": 2271891,
+          "corpus:end": 2273630
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0561",
+          "dc:title": "Turn 561",
+          "corpus:begin": 2273630,
+          "corpus:end": 2277844
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0562",
+          "dc:title": "Turn 562",
+          "corpus:begin": 2277844,
+          "corpus:end": 2283201
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0563",
+          "dc:title": "Turn 563",
+          "corpus:begin": 2283201,
+          "corpus:end": 2287056
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0564",
+          "dc:title": "Turn 564",
+          "corpus:begin": 2287056,
+          "corpus:end": 2291588
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0565",
+          "dc:title": "Turn 565",
+          "corpus:begin": 2291588,
+          "corpus:end": 2297770
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0566",
+          "dc:title": "Turn 566",
+          "corpus:begin": 2297770,
+          "corpus:end": 2307193
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0567",
+          "dc:title": "Turn 567",
+          "corpus:begin": 2307193,
+          "corpus:end": 2308716
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0568",
+          "dc:title": "Turn 568",
+          "corpus:begin": 2308716,
+          "corpus:end": 2324207
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0569",
+          "dc:title": "Turn 569",
+          "corpus:begin": 2324207,
+          "corpus:end": 2326750
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0570",
+          "dc:title": "Turn 570",
+          "corpus:begin": 2326750,
+          "corpus:end": 2328256
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0571",
+          "dc:title": "Turn 571",
+          "corpus:begin": 2328256,
+          "corpus:end": 2329851
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0572",
+          "dc:title": "Turn 572",
+          "corpus:begin": 2329851,
+          "corpus:end": 2333812
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0573",
+          "dc:title": "Turn 573",
+          "corpus:begin": 2333812,
+          "corpus:end": 2335932
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0574",
+          "dc:title": "Turn 574",
+          "corpus:begin": 2335932,
+          "corpus:end": 2337375
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0575",
+          "dc:title": "Turn 575",
+          "corpus:begin": 2337375,
+          "corpus:end": 2341272
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0576",
+          "dc:title": "Turn 576",
+          "corpus:begin": 2341272,
+          "corpus:end": 2345571
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0577",
+          "dc:title": "Turn 577",
+          "corpus:begin": 2345571,
+          "corpus:end": 2353506
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0578",
+          "dc:title": "Turn 578",
+          "corpus:begin": 2353506,
+          "corpus:end": 2355647
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0579",
+          "dc:title": "Turn 579",
+          "corpus:begin": 2355647,
+          "corpus:end": 2357111
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0580",
+          "dc:title": "Turn 580",
+          "corpus:begin": 2357111,
+          "corpus:end": 2365366
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0581",
+          "dc:title": "Turn 581",
+          "corpus:begin": 2365366,
+          "corpus:end": 2369686
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0582",
+          "dc:title": "Turn 582",
+          "corpus:begin": 2369686,
+          "corpus:end": 2372589
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0583",
+          "dc:title": "Turn 583",
+          "corpus:begin": 2372589,
+          "corpus:end": 2375597
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0584",
+          "dc:title": "Turn 584",
+          "corpus:begin": 2375597,
+          "corpus:end": 2388232
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0585",
+          "dc:title": "Turn 585",
+          "corpus:begin": 2388232,
+          "corpus:end": 2388786
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0586",
+          "dc:title": "Turn 586",
+          "corpus:begin": 2388786,
+          "corpus:end": 2396407
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0587",
+          "dc:title": "Turn 587",
+          "corpus:begin": 2396407,
+          "corpus:end": 2399119
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0588",
+          "dc:title": "Turn 588",
+          "corpus:begin": 2399119,
+          "corpus:end": 2400985
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0589",
+          "dc:title": "Turn 589",
+          "corpus:begin": 2400985,
+          "corpus:end": 2402475
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0590",
+          "dc:title": "Turn 590",
+          "corpus:begin": 2402475,
+          "corpus:end": 2404701
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0591",
+          "dc:title": "Turn 591",
+          "corpus:begin": 2404701,
+          "corpus:end": 2405827
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0592",
+          "dc:title": "Turn 592",
+          "corpus:begin": 2405827,
+          "corpus:end": 2411078
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0593",
+          "dc:title": "Turn 593",
+          "corpus:begin": 2411078,
+          "corpus:end": 2417620
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0594",
+          "dc:title": "Turn 594",
+          "corpus:begin": 2417620,
+          "corpus:end": 2421517
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0595",
+          "dc:title": "Turn 595",
+          "corpus:begin": 2421517,
+          "corpus:end": 2433454
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0596",
+          "dc:title": "Turn 596",
+          "corpus:begin": 2433454,
+          "corpus:end": 2433881
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0597",
+          "dc:title": "Turn 597",
+          "corpus:begin": 2433881,
+          "corpus:end": 2438222
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0598",
+          "dc:title": "Turn 598",
+          "corpus:begin": 2438222,
+          "corpus:end": 2440448
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0599",
+          "dc:title": "Turn 599",
+          "corpus:begin": 2440448,
+          "corpus:end": 2447683
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0600",
+          "dc:title": "Turn 600",
+          "corpus:begin": 2447683,
+          "corpus:end": 2460381
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0601",
+          "dc:title": "Turn 601",
+          "corpus:begin": 2460381,
+          "corpus:end": 2463284
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0602",
+          "dc:title": "Turn 602",
+          "corpus:begin": 2463284,
+          "corpus:end": 2468006
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0603",
+          "dc:title": "Turn 603",
+          "corpus:begin": 2468006,
+          "corpus:end": 2469639
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0604",
+          "dc:title": "Turn 604",
+          "corpus:begin": 2469639,
+          "corpus:end": 2470274
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0605",
+          "dc:title": "Turn 605",
+          "corpus:begin": 2470274,
+          "corpus:end": 2470553
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0606",
+          "dc:title": "Turn 606",
+          "corpus:begin": 2470553,
+          "corpus:end": 2471319
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0607",
+          "dc:title": "Turn 607",
+          "corpus:begin": 2471319,
+          "corpus:end": 2472532
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0608",
+          "dc:title": "Turn 608",
+          "corpus:begin": 2472532,
+          "corpus:end": 2473306
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0609",
+          "dc:title": "Turn 609",
+          "corpus:begin": 2473306,
+          "corpus:end": 2482705
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0610",
+          "dc:title": "Turn 610",
+          "corpus:begin": 2482705,
+          "corpus:end": 2483256
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0611",
+          "dc:title": "Turn 611",
+          "corpus:begin": 2483256,
+          "corpus:end": 2488274
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0612",
+          "dc:title": "Turn 612",
+          "corpus:begin": 2488274,
+          "corpus:end": 2492975
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0613",
+          "dc:title": "Turn 613",
+          "corpus:begin": 2492975,
+          "corpus:end": 2495201
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0614",
+          "dc:title": "Turn 614",
+          "corpus:begin": 2495201,
+          "corpus:end": 2497279
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0615",
+          "dc:title": "Turn 615",
+          "corpus:begin": 2497279,
+          "corpus:end": 2499780
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0616",
+          "dc:title": "Turn 616",
+          "corpus:begin": 2499780,
+          "corpus:end": 2501985
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0617",
+          "dc:title": "Turn 617",
+          "corpus:begin": 2501985,
+          "corpus:end": 2503936
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0618",
+          "dc:title": "Turn 618",
+          "corpus:begin": 2503936,
+          "corpus:end": 2512530
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0619",
+          "dc:title": "Turn 619",
+          "corpus:begin": 2512530,
+          "corpus:end": 2514422
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0620",
+          "dc:title": "Turn 620",
+          "corpus:begin": 2514422,
+          "corpus:end": 2518256
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0621",
+          "dc:title": "Turn 621",
+          "corpus:begin": 2518256,
+          "corpus:end": 2520291
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0622",
+          "dc:title": "Turn 622",
+          "corpus:begin": 2520291,
+          "corpus:end": 2527679
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0623",
+          "dc:title": "Turn 623",
+          "corpus:begin": 2527679,
+          "corpus:end": 2546964
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0624",
+          "dc:title": "Turn 624",
+          "corpus:begin": 2546964,
+          "corpus:end": 2547811
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0625",
+          "dc:title": "Turn 625",
+          "corpus:begin": 2547811,
+          "corpus:end": 2548852
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0626",
+          "dc:title": "Turn 626",
+          "corpus:begin": 2548852,
+          "corpus:end": 2556071
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0627",
+          "dc:title": "Turn 627",
+          "corpus:begin": 2556071,
+          "corpus:end": 2556477
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0628",
+          "dc:title": "Turn 628",
+          "corpus:begin": 2556477,
+          "corpus:end": 2562934
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0629",
+          "dc:title": "Turn 629",
+          "corpus:begin": 2562934,
+          "corpus:end": 2565625
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0630",
+          "dc:title": "Turn 630",
+          "corpus:begin": 2565625,
+          "corpus:end": 2567216
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0631",
+          "dc:title": "Turn 631",
+          "corpus:begin": 2567216,
+          "corpus:end": 2571578
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0632",
+          "dc:title": "Turn 632",
+          "corpus:begin": 2571578,
+          "corpus:end": 2575010
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0633",
+          "dc:title": "Turn 633",
+          "corpus:begin": 2575010,
+          "corpus:end": 2579013
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0634",
+          "dc:title": "Turn 634",
+          "corpus:begin": 2579013,
+          "corpus:end": 2585665
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0635",
+          "dc:title": "Turn 635",
+          "corpus:begin": 2585665,
+          "corpus:end": 2589097
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0636",
+          "dc:title": "Turn 636",
+          "corpus:begin": 2589097,
+          "corpus:end": 2592211
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0637",
+          "dc:title": "Turn 637",
+          "corpus:begin": 2592211,
+          "corpus:end": 2601930
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0638",
+          "dc:title": "Turn 638",
+          "corpus:begin": 2601930,
+          "corpus:end": 2604473
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0639",
+          "dc:title": "Turn 639",
+          "corpus:begin": 2604473,
+          "corpus:end": 2605472
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0640",
+          "dc:title": "Turn 640",
+          "corpus:begin": 2605472,
+          "corpus:end": 2607000
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0641",
+          "dc:title": "Turn 641",
+          "corpus:begin": 2607000,
+          "corpus:end": 2610008
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0642",
+          "dc:title": "Turn 642",
+          "corpus:begin": 2610008,
+          "corpus:end": 2615386
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0643",
+          "dc:title": "Turn 643",
+          "corpus:begin": 2615386,
+          "corpus:end": 2622266
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0644",
+          "dc:title": "Turn 644",
+          "corpus:begin": 2622266,
+          "corpus:end": 2637588
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0645",
+          "dc:title": "Turn 645",
+          "corpus:begin": 2637588,
+          "corpus:end": 2641866
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0646",
+          "dc:title": "Turn 646",
+          "corpus:begin": 2641866,
+          "corpus:end": 2651539
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0647",
+          "dc:title": "Turn 647",
+          "corpus:begin": 2651539,
+          "corpus:end": 2652199
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0648",
+          "dc:title": "Turn 648",
+          "corpus:begin": 2652199,
+          "corpus:end": 2664939
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0649",
+          "dc:title": "Turn 649",
+          "corpus:begin": 2664939,
+          "corpus:end": 2665282
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0650",
+          "dc:title": "Turn 650",
+          "corpus:begin": 2665282,
+          "corpus:end": 2667910
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0651",
+          "dc:title": "Turn 651",
+          "corpus:begin": 2667910,
+          "corpus:end": 2668422
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0652",
+          "dc:title": "Turn 652",
+          "corpus:begin": 2668422,
+          "corpus:end": 2675768
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0653",
+          "dc:title": "Turn 653",
+          "corpus:begin": 2675768,
+          "corpus:end": 2677338
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0654",
+          "dc:title": "Turn 654",
+          "corpus:begin": 2677338,
+          "corpus:end": 2678231
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0655",
+          "dc:title": "Turn 655",
+          "corpus:begin": 2678231,
+          "corpus:end": 2678933
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0656",
+          "dc:title": "Turn 656",
+          "corpus:begin": 2678933,
+          "corpus:end": 2682132
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0657",
+          "dc:title": "Turn 657",
+          "corpus:begin": 2682132,
+          "corpus:end": 2684167
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0658",
+          "dc:title": "Turn 658",
+          "corpus:begin": 2684167,
+          "corpus:end": 2685293
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0659",
+          "dc:title": "Turn 659",
+          "corpus:begin": 2685293,
+          "corpus:end": 2686059
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0660",
+          "dc:title": "Turn 660",
+          "corpus:begin": 2686059,
+          "corpus:end": 2688898
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0661",
+          "dc:title": "Turn 661",
+          "corpus:begin": 2688898,
+          "corpus:end": 2690574
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0662",
+          "dc:title": "Turn 662",
+          "corpus:begin": 2690574,
+          "corpus:end": 2695423
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0663",
+          "dc:title": "Turn 663",
+          "corpus:begin": 2695423,
+          "corpus:end": 2697479
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0664",
+          "dc:title": "Turn 664",
+          "corpus:begin": 2697479,
+          "corpus:end": 2700297
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0665",
+          "dc:title": "Turn 665",
+          "corpus:begin": 2700297,
+          "corpus:end": 2702861
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0666",
+          "dc:title": "Turn 666",
+          "corpus:begin": 2702861,
+          "corpus:end": 2708345
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0667",
+          "dc:title": "Turn 667",
+          "corpus:begin": 2708345,
+          "corpus:end": 2711653
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0668",
+          "dc:title": "Turn 668",
+          "corpus:begin": 2711653,
+          "corpus:end": 2714958
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0669",
+          "dc:title": "Turn 669",
+          "corpus:begin": 2714958,
+          "corpus:end": 2717501
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0670",
+          "dc:title": "Turn 670",
+          "corpus:begin": 2717501,
+          "corpus:end": 2722498
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0671",
+          "dc:title": "Turn 671",
+          "corpus:begin": 2722498,
+          "corpus:end": 2728472
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0672",
+          "dc:title": "Turn 672",
+          "corpus:begin": 2728472,
+          "corpus:end": 2733000
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0673",
+          "dc:title": "Turn 673",
+          "corpus:begin": 2733000,
+          "corpus:end": 2733931
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0674",
+          "dc:title": "Turn 674",
+          "corpus:begin": 2733931,
+          "corpus:end": 2735813
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0675",
+          "dc:title": "Turn 675",
+          "corpus:begin": 2735813,
+          "corpus:end": 2736507
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0676",
+          "dc:title": "Turn 676",
+          "corpus:begin": 2736507,
+          "corpus:end": 2738648
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0677",
+          "dc:title": "Turn 677",
+          "corpus:begin": 2738648,
+          "corpus:end": 2741230
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0678",
+          "dc:title": "Turn 678",
+          "corpus:begin": 2741230,
+          "corpus:end": 2744318
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0679",
+          "dc:title": "Turn 679",
+          "corpus:begin": 2744318,
+          "corpus:end": 2746032
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0680",
+          "dc:title": "Turn 680",
+          "corpus:begin": 2746032,
+          "corpus:end": 2747428
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0681",
+          "dc:title": "Turn 681",
+          "corpus:begin": 2747428,
+          "corpus:end": 2748296
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0682",
+          "dc:title": "Turn 682",
+          "corpus:begin": 2748296,
+          "corpus:end": 2750136
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_trn0683",
+          "dc:title": "Turn 683",
+          "corpus:begin": 2750136,
+          "corpus:end": 2752041
+        }
+      ],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0001",
+          "begin": 63,
+          "end": 1396,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0002",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "animaux d'ferme + à l'Ile Saint-Denis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0002"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0002",
+          "begin": 1396,
+          "end": 4866,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0003",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "eh: j'ai connu les chevaux encore sur euh le les Champs-Elysées hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0003"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0003",
+          "begin": 1396,
+          "end": 4866,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0003",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'ai une amie tous les jeudis elle allait à la X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0003"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0004",
+          "begin": 4866,
+          "end": 8970,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0004",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "il paraît qu'oui il y en avait oui + ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0004"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0005",
+          "begin": 4866,
+          "end": 8970,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0004",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ben oui ben bien sûr + bien sûr il y en avait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0004"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0006",
+          "begin": 8970,
+          "end": 12655,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0005",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mes parents sont nés sont nés ici d'ailleurs sont nés à enfin ils sont pas nés à Saint-Ouen"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0005"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0007",
+          "begin": 12655,
+          "end": 16705,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0006",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "vos parents? ++ ah oui + oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0006"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0008",
+          "begin": 12655,
+          "end": 16705,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0006",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ils sont nés dans l'quatorzième ++ ah ben oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0006"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0009",
+          "begin": 16705,
+          "end": 19417,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0007",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "alors ben euh ça tombe bien en fait euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0007"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0010",
+          "begin": 16705,
+          "end": 19417,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0007",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "allez-y X + allez-y"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0007"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0011",
+          "begin": 19417,
+          "end": 25832,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0008",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "j'vais peut-être juste noter vos noms parce que si j'dois euh vous XX vous vous qu- quels sont vos noms?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0008"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0012",
+          "begin": 25832,
+          "end": 27063,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0009",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "Pollet"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0009"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0013",
+          "begin": 27063,
+          "end": 28037,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0010",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ça s'écrit comment?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0010"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0014",
+          "begin": 28037,
+          "end": 30432,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0011",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "P O deux L E T"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0011"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0015",
+          "begin": 30432,
+          "end": 32150,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0012",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord madame Pollet + et vous?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0012"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0016",
+          "begin": 32150,
+          "end": 33402,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0013",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et moi j'suis madame Liotard"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0013"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0017",
+          "begin": 33402,
+          "end": 34079,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0014",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "Liotard ouais d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0014"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0018",
+          "begin": 34079,
+          "end": 37465,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0015",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "L I O T A R D ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0015"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0019",
+          "begin": 37465,
+          "end": 38993,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0016",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord OK parfait X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0016"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0020",
+          "begin": 38993,
+          "end": 43696,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0017",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il y en avait des Pollet à Saint-Ouen + là qu'étaient marchands d'fumier +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0017"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0021",
+          "begin": 43696,
+          "end": 46324,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0018",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "rue Charles X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0018"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0022",
+          "begin": 43696,
+          "end": 46324,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0018",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "XX + ah dis donc"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0018"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0023",
+          "begin": 46324,
+          "end": 49886,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0019",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et ils étaient mariés il y avait il y en avait la villa Serrurier +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0019"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0024",
+          "begin": 49886,
+          "end": 58513,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0020",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "qui est X cinéma Le Star + et c'était le grand-p- le beau-père [de;-] monsieur Pollet qui avait fait construire toutes les maisons d'la villa + et il y en avait un stock hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0020"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0025",
+          "begin": 49886,
+          "end": 58513,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0020",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "remarquez s- + allez savoir que ce soit d'même famille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0020"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0026",
+          "begin": 58513,
+          "end": 61767,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0021",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ouais ouais mm d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0021"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0027",
+          "begin": 58513,
+          "end": 61767,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0021",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "X il y avait des stocks oh la la"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0021"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0028",
+          "begin": 61767,
+          "end": 68454,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0022",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ils ont toujours des + eh ben ils avaient des chevaux évidemment + et puis ils [envoyaient; enlevaient] tout l'fumier à la garde républicaine à Paris"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0022"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0029",
+          "begin": 68454,
+          "end": 71967,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0023",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ah oui + voilà (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0023"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0030",
+          "begin": 68454,
+          "end": 71967,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0023",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et dans les années trente hein XX la semaine dernière"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0023"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0031",
+          "begin": 71967,
+          "end": 75851,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0024",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oui + ben oui puis c'était vendu + pour faire les champignons d'Paris"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0024"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0032",
+          "begin": 75851,
+          "end": 79281,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0025",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord mm + ouais + ça facili-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0025"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0033",
+          "begin": 75851,
+          "end": 79281,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0025",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "le fumier + de cheval"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0025"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0034",
+          "begin": 79281,
+          "end": 85185,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0026",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et donc vous vous êtes née euh donc à Saint-Ouen madame Liotard + et et vos parents également?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0026"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0035",
+          "begin": 85185,
+          "end": 88698,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0027",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "mes parents ah non mes parents étaient grainetiers à Saint-Ouen +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0027"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0036",
+          "begin": 88698,
+          "end": 90726,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0028",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0028"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0037",
+          "begin": 88698,
+          "end": 90726,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0028",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ça existe plus non plus ça grainetier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0028"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0038",
+          "begin": 90726,
+          "end": 91798,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0029",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oui c'est déprimant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0029"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0039",
+          "begin": 91798,
+          "end": 94775,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0030",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mais ils ét- ils sont ils sont de Saint-Ouen aussi ils étaient de Saint-Ouen?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0030"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0040",
+          "begin": 91798,
+          "end": 94775,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0030",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah non non non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0030"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0041",
+          "begin": 94775,
+          "end": 97010,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0031",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah non non mon père était d'Pantin +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0031"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0042",
+          "begin": 97010,
+          "end": 97431,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0032",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0032"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0043",
+          "begin": 97431,
+          "end": 102840,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0033",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et ma mère de: + ah ah je vous dirai Champ Champ sur Marne"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0033"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0044",
+          "begin": 102840,
+          "end": 106641,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0034",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + et euh v- vous vous savez pourquoi ils sont venus à Saint-Ouen"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0034"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0045",
+          "begin": 106641,
+          "end": 108546,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0035",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "eh ben ils se sont mariés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0035"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0046",
+          "begin": 106641,
+          "end": 108546,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0035",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "pourquoi ils sont installés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0035"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0047",
+          "begin": 108546,
+          "end": 115852,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0036",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et puis mon grand-p- mon père ses parents étaient grainetiers + à Pantin + et il a voulu repren- prendre un (X,accompte) grainetier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0036"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0048",
+          "begin": 115852,
+          "end": 116437,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0037",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0037"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0049",
+          "begin": 116437,
+          "end": 124361,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0038",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et c'est comme ça qu'ils sont ils ont é- + exploré un peu toute la région + puis ça c'est trouvé que: + à Saint-Ouen il y avait un coin à vendre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0038"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0050",
+          "begin": 124361,
+          "end": 125680,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0039",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord OK"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0039"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0051",
+          "begin": 125680,
+          "end": 128451,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0040",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "alors ils se sont installés là + en dix-neuf cent vingt-et-un"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0040"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0052",
+          "begin": 125680,
+          "end": 128451,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0040",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ils se sont installés là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0040"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0053",
+          "begin": 128451,
+          "end": 133159,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0041",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + ouais c'est parfait + et euh et et vous madame Pollet vous:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0041"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0054",
+          "begin": 133159,
+          "end": 134775,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0042",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "moi je s-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0042"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0055",
+          "begin": 133159,
+          "end": 134775,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0042",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "vous êtes née à Saint-Ouen également?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0042"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0056",
+          "begin": 134775,
+          "end": 135187,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0043",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah non non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0043"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0057",
+          "begin": 135187,
+          "end": 135558,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0044",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "non?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0044"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0058",
+          "begin": 135558,
+          "end": 138081,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0045",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "non je suis née à Montigny-en-Morvan dans la Nièvre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0045"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0059",
+          "begin": 138081,
+          "end": 138906,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0046",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0046"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0060",
+          "begin": 138906,
+          "end": 140605,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0047",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "accidentellement peut-être mais enfin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0047"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0061",
+          "begin": 140605,
+          "end": 144489,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0048",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "(rires) et comment vous êtes arrivée euh à Saint-Ouen alors? +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0048"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0062",
+          "begin": 144489,
+          "end": 147260,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0049",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "comment j'suis arrivée à Saint-Ouen ben j'suis d'abord arrivée à Paris +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0049"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0063",
+          "begin": 147260,
+          "end": 147928,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0050",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0050"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0064",
+          "begin": 147928,
+          "end": 149420,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0051",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'ai vécu longtemps à Paris +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0051"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0065",
+          "begin": 149420,
+          "end": 150492,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0052",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0052"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0066",
+          "begin": 150492,
+          "end": 164163,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0053",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "eh à: vingt-quatre ans: bon ben je divorçais ++ alors donc euh: + le: propriétaire de qui me lo- qui m'logeait à Paris + pour me cacher d'mon mari qui était violent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0053"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0067",
+          "begin": 164163,
+          "end": 166706,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0054",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +++ mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0054"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0068",
+          "begin": 164163,
+          "end": 166706,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0054",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "qui n'voulait pas divorcer et qui était violent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0054"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0069",
+          "begin": 166706,
+          "end": 175025,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0055",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "donc° m'a: m'avait mise dans un petit logement: + un peu vétuste mais enfin bon + hein bon + donc rue Arago"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0055"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0070",
+          "begin": 175025,
+          "end": 177145,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0056",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord mm +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0056"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0071",
+          "begin": 177145,
+          "end": 198939,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0057",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et: je suis restée: dix-sept ans dans ce petit logement + il y avait trois pièces quand même et tout mais a fallu que j'arrange hein parce que: j'ai XX j'vous dis: c'était vraiment vétuste quand j'suis arrivée hein ++ vraiment + et donc euh: + après j'suis allée boul- euh + boulevard Victor Hugo non + non c'est pas tout de suite boulevard Victor Hugo ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0057"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0072",
+          "begin": 198939,
+          "end": 210939,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0057",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'ai demandé à mon patron euh par le un pour cent patronal + un logement j'voulais aller en banlieue ++ j'commançais à en avoir marre de faire le feu de de bois tout ça [euh;le] charbon les cendres et tout j'commençais à en avoir marre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0057"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0073",
+          "begin": 210939,
+          "end": 214709,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0058",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben oui euh + faut être jeune hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0058"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0074",
+          "begin": 210939,
+          "end": 214709,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0058",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ++ mm oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0058"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0075",
+          "begin": 214709,
+          "end": 221166,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0059",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "alors donc euh: [j'étais;j'ai été logée] à comment à + du côté d'Mantes là comment Mureaux + aux Mureaux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0059"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0076",
+          "begin": 221166,
+          "end": 222461,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0060",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "les Mureaux ouais mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0060"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0077",
+          "begin": 222461,
+          "end": 224390,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0061",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais ce m- ça m'a pas plu"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0061"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0078",
+          "begin": 224390,
+          "end": 228054,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0062",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0062"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0079",
+          "begin": 224390,
+          "end": 228054,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0062",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "d'abord le logement n'me plaisait pas + X pas ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0062"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0080",
+          "begin": 228054,
+          "end": 230703,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0063",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et puis en plus euh le transport surtout +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0063"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0081",
+          "begin": 230703,
+          "end": 231130,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0064",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0064"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0082",
+          "begin": 231130,
+          "end": 238454,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0065",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "c'était compliqué hein c'est pas comme maintenant maintenant ça s'est modifié: mais à cette époque-là il fallait + attendre une heure: un train"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0065"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0083",
+          "begin": 238454,
+          "end": 239195,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0066",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0066"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0084",
+          "begin": 239195,
+          "end": 244002,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0067",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "alors euh deux fois en deux ans je X j'suis restée deux ans et deux fois en deux ans j'ai j'ai +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0067"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0085",
+          "begin": 244002,
+          "end": 250967,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0068",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ++ ouais c'est sûr + (rires) c'est embêtant mm mm mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0068"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0086",
+          "begin": 244002,
+          "end": 250967,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0068",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'ai perdu une heure de travail quoi + enfin + on me l'a pas retirée + non enfin parce que j'étais un bon élément mais:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0068"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0087",
+          "begin": 250967,
+          "end": 259620,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0069",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "aur- aurait pas fallu que ça continue + alors j'ai donc demandé c'est d'ailleurs euh Mitterrand et monsieur Lefort qui m'ont: en commmun accord voyez enfin:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0069"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0088",
+          "begin": 259620,
+          "end": 261321,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0070",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +++ mm d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0070"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0089",
+          "begin": 261321,
+          "end": 267715,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0071",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "le branchage de tout ça de de des des huiles comme on dit + qui m'ont fait revenir à Saint-Ouen assez rapidement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0071"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0090",
+          "begin": 267715,
+          "end": 268756,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0072",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0072"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0091",
+          "begin": 268756,
+          "end": 276123,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0073",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais euh:: c'était pas la le + disons le ce que monsieur Mitterrand voulait monsieur Mitterrand voulait que j'aille habiter Suresnes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0073"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0092",
+          "begin": 276123,
+          "end": 276466,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0074",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0074"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0093",
+          "begin": 276466,
+          "end": 278438,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0075",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "qui était beaucoup mieux pour lui que Saint-Ouen"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0075"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0094",
+          "begin": 278438,
+          "end": 280537,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0076",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "pour moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0076"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0095",
+          "begin": 278438,
+          "end": 280537,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0076",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + mm + ouais +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0076"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0096",
+          "begin": 280537,
+          "end": 284899,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0077",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et vous avez toujours habité le même quartier dans Saint-Ouen ou ou vous avez bougé?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0077"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0097",
+          "begin": 280537,
+          "end": 284899,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0077",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et alors ++ non euh euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0077"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0098",
+          "begin": 284899,
+          "end": 286194,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0078",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "là maintenant j'suis au Vieux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0078"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0099",
+          "begin": 286194,
+          "end": 291318,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0079",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ++ d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0079"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0100",
+          "begin": 286194,
+          "end": 291318,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0079",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais j'étais là-bas euh rue Arago alors j'sais pas comment: comment on appelle moi j'en sais rien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0079"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0101",
+          "begin": 291318,
+          "end": 296379,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0080",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "alors j'ai donc été relogée + à: rue Ar- rue A euh + oh boulevard Victor Hugo"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0080"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0102",
+          "begin": 296379,
+          "end": 301456,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0081",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm d'accord ++ ouais ouais + ouais ouais je vois bien + ouais (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0081"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0103",
+          "begin": 296379,
+          "end": 301456,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0081",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "où il y a le RER maintenant + mm + mais à cette époque-là il y était pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0081"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0104",
+          "begin": 301456,
+          "end": 307878,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0082",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "savez c'est les trois immeubles: qui s'en vont euh j'sais pas s'ils existent encore j'en sais rien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0082"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0105",
+          "begin": 301456,
+          "end": 307878,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0082",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui + oui oui ++ euh: non ils ont X été abattus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0082"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0106",
+          "begin": 307878,
+          "end": 314289,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0082",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah bon + bien dommage bien dommage parce qu'ils étaient b- ils étaient beaux ces logements ah ils étaient beaux ces logements hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0082"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0107",
+          "begin": 307878,
+          "end": 314289,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0082",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui parce qu'ils construisent là X oui moi j'connaissais des gens là aussi + dans ces bâtiments"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0082"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0108",
+          "begin": 314289,
+          "end": 319564,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0083",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "moi [j'aimais;je me] j'avais fait vraiment euh ++ vraiment un appartement magnifique et tout ah je garde"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0083"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0109",
+          "begin": 319564,
+          "end": 322338,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0084",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui ils étaient en pierre hein les les bâtiments oui ils étaient beaux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0084"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0110",
+          "begin": 322338,
+          "end": 324434,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0085",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'est des choses qu'ils auraient dû garder quand même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0085"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0111",
+          "begin": 324434,
+          "end": 334911,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0086",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah oui + et puis alors euh: j'ai eu des ennuis avec les une locataire qui [est arrivée ; arrivait] à côté d'ma: porte mitoyenne la mienne comme ça la sienne là oh la la j'vous dis pas +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0086"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0112",
+          "begin": 334911,
+          "end": 341368,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0087",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "(rires) quel genre d'ennuis? + oui ++ mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0087"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0113",
+          "begin": 334911,
+          "end": 341368,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0087",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'ai eu tellement d'ennuis mais alors vraiment des ennuis qu'un matin j'pouvais même pas aller au travail"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0087"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0114",
+          "begin": 341368,
+          "end": 354320,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0088",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "alors donc comme j'avais ces ennuis: j'ai dû appeler ma gardienne de venir me chercher + pour sortir pour que j'aille travailler moi quand même elle elle travaillait pas elle s'en fichait + j'sais pas pourquoi + elle avait pris: + c'est-à-dire qu'elle avait une vie spéciale"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0088"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0115",
+          "begin": 354320,
+          "end": 355399,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0089",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0089"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0116",
+          "begin": 355399,
+          "end": 359783,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0090",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "si vous m'comprenez quoi bon ben elle aimait les femmes ++ alors euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0090"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0117",
+          "begin": 359783,
+          "end": 362982,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0091",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui d'accord ++ ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0091"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0118",
+          "begin": 359783,
+          "end": 362982,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0091",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "voilà + sa vie spéciale c'était ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0091"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0119",
+          "begin": 362982,
+          "end": 365229,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0092",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "alors mais + elle avait les hommes aussi +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0092"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0120",
+          "begin": 365229,
+          "end": 367962,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0093",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ah d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0093"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0121",
+          "begin": 365229,
+          "end": 367962,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0093",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et + en principe les vieux ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0093"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0122",
+          "begin": 367962,
+          "end": 371161,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0094",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "les personnes âgées ++ pour leur soutirer de l'argent +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0094"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0123",
+          "begin": 371161,
+          "end": 372710,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0095",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0095"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0124",
+          "begin": 371161,
+          "end": 372710,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0095",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "elle avait une fille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0095"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0125",
+          "begin": 372710,
+          "end": 385514,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0096",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais c'était la femme sa femme qui enfin la + sa femme sa copine qui s'en occupait + (rires collectifs) alors + tous les soirs quand j'rentrais je trouvais l'paillaisson parti enfin il était dans le le local du vide-ordures des ordures: à ma porte enfin voyez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0096"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0126",
+          "begin": 385514,
+          "end": 390511,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0097",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ouais + ouais ++ ah oui +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0097"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0127",
+          "begin": 385514,
+          "end": 390511,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0097",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "des méchancetés quoi + ça a duré deux ans et j'en pouvais plus +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0097"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0128",
+          "begin": 390511,
+          "end": 410233,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0098",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "alors les le les: HLM + [m';-]ont dit \"écoutez: + c'est vous qui avez on on va vous qu'on va reloger elle + à cause de sa gamine et tout ça\" ben j'ai dit \"ben c'est quand même un comble ça + moi j'viens d'faire des millions d'travaux mon appartement est: vraiment refait tout à neuf + tout avait été refait à neuf + j'dis c'est quand même malheureux que c'est moi qui suis obligée d'partir quand même\""
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0098"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0129",
+          "begin": 410233,
+          "end": 415484,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0099",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ouais ouais + euh c'est + c'est pas juste (rires) c'est sûr mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0099"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0130",
+          "begin": 410233,
+          "end": 415484,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0099",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "moi moi je travaille et tout je n- je n'dérange personne euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0099"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0131",
+          "begin": 415484,
+          "end": 420735,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0100",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "Paul à ce moment-là travaillait euh: à Orléans donc il rentrait pas tous les jours il avait loué une petite"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0100"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0132",
+          "begin": 420735,
+          "end": 423934,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0101",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "[ah;oui] oui + une chambre oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0101"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0133",
+          "begin": 420735,
+          "end": 423934,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0101",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "euh un petit quelque chose là-bas du côté d'Pithiviers +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0101"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0134",
+          "begin": 423934,
+          "end": 428170,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0102",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "pour être plus près commençait d'bonne heure + donc j'dis + \"j'comprends pas\" enfin bon +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0102"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0135",
+          "begin": 428170,
+          "end": 431940,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0103",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais ++ d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0103"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0136",
+          "begin": 428170,
+          "end": 431940,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0103",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "alors j'ai + on m'a logée là où je suis actuellement encore"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0103"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0137",
+          "begin": 431940,
+          "end": 434885,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0104",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et vous y êtes toujours + d'acc- + ça fait combien d'années que vous êtes: là-bas?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0104"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0138",
+          "begin": 434885,
+          "end": 441744,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0105",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il y a eu vingt: vingt-et-un ans X on est en deux mille huit alors donc vingt-et-un ans euh vingt-hu- + non vingt-huit ans +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0105"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0139",
+          "begin": 441744,
+          "end": 443970,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0106",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "vingt-huit ans? + d'accord X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0106"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0140",
+          "begin": 441744,
+          "end": 443970,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0106",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben oui puisque: en quatre-vingt"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0106"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0141",
+          "begin": 443970,
+          "end": 448671,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0107",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ouais ouais c'est ça ouais vingt-huit ans oui ouais + d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0107"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0142",
+          "begin": 443970,
+          "end": 448671,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0107",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben ça ben ça fait vingt-huit ans il y a eu vingt-huit ans le quinze janvier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0107"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0143",
+          "begin": 448671,
+          "end": 455932,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0108",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et vous madame Liotard euh vous avez euh changé d'quartier dans Saint-Ouen? + mm + non (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0108"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0144",
+          "begin": 448671,
+          "end": 455932,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0108",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah mais moi j'ai pas enfin: + pas fait beaucoup d'chemin (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0108"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0145",
+          "begin": 455932,
+          "end": 458200,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0109",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'ai peut-être fait trois cent mètres +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0109"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0146",
+          "begin": 458200,
+          "end": 460891,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0110",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui c'est tout X (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0110"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0147",
+          "begin": 458200,
+          "end": 460891,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0110",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "vous êtes une sédentaire vous hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0110"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0148",
+          "begin": 460891,
+          "end": 467327,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0111",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'suis née + 58 rue Montmartre + ça vous dit rien? + la rue Montmartre c'est la rue Charles Schmidt maintenant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0111"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0149",
+          "begin": 460891,
+          "end": 467327,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0111",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0111"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0150",
+          "begin": 467327,
+          "end": 469891,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0112",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah d'accord + d'accord + d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0112"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0151",
+          "begin": 467327,
+          "end": 469891,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0112",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "[et;mais] à l'époque c'était la rue Montmartre parce qu'on voyait Montmartre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0112"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0152",
+          "begin": 469891,
+          "end": 471376,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0113",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "oui oui bien sûr oui + mm oui oui (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0113"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0153",
+          "begin": 469891,
+          "end": 471376,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0113",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "X on l'voit toujours hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0113"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0154",
+          "begin": 471376,
+          "end": 477050,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0114",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "quand ma mère est arrivée là elle dit: + \"bon faut qu'on prenne ce pont-là + parce qu'on voit l'Sacré-Coeur\""
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0114"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0155",
+          "begin": 477050,
+          "end": 486194,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0115",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0115"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0156",
+          "begin": 477050,
+          "end": 486194,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0115",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "X ça va nous porter bonheur + (rires Marc) + alors j'suis née l'année d'après + (rires Marc) et puis bon ben: j'ai connu mon mari qui était un: un client + puisque nous étions grainetiers"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0115"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0157",
+          "begin": 486194,
+          "end": 487256,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0116",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + bien sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0116"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0158",
+          "begin": 487256,
+          "end": 494728,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0117",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et puis: ben j'me suis mariée en quarante-six + puis j'suis venue habiter rue Gambetta à côté là + c'est la: troisième rue à:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0117"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0159",
+          "begin": 494728,
+          "end": 497440,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0118",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "oui oui j'vois bien oui + ouais ouais ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0118"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0160",
+          "begin": 494728,
+          "end": 497440,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0118",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "à g- à: gauche ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0118"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0161",
+          "begin": 497440,
+          "end": 498798,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0119",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oui puis j'y suis depuis quarante-six"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0119"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0162",
+          "begin": 498798,
+          "end": 504155,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0120",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + donc euh toute votre vie X + ouais (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0120"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0163",
+          "begin": 498798,
+          "end": 504155,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0120",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ben oui + ah ça va vite hein + en deux lignes vous avez mon curriculum"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0120"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0164",
+          "begin": 504155,
+          "end": 505534,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0121",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ouais vous avez pas bougé vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0121"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0165",
+          "begin": 505534,
+          "end": 506254,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0122",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0122"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0166",
+          "begin": 506254,
+          "end": 508776,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0123",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et qu'est-ce que vous avez vu comme changements euh depuis que v-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0123"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0167",
+          "begin": 508776,
+          "end": 512948,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0124",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "enfin: depuis votre vie + que vous êtes là qu'est-ce qu'est-ce qui vous frappe le plus euh depuis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0124"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0168",
+          "begin": 508776,
+          "end": 512948,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0124",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh ben beaucoup beaucoup d'choses oh la la alors là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0124"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0169",
+          "begin": 512948,
+          "end": 516485,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0125",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh ben d'a- d'abord la vie a totalement changé surtout à côté"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0125"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0170",
+          "begin": 512948,
+          "end": 516485,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0125",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "la la la population: XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0125"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0171",
+          "begin": 516485,
+          "end": 525777,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0126",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "avant c'était + pour moi c'était il y avait des jardins il y avait des X + mes parents grainetiers avaient des poulaillers il y avait des chevaux + il y avait ben boulevard Victor Hugo là +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0126"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0172",
+          "begin": 525777,
+          "end": 527664,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0127",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0127"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0173",
+          "begin": 525777,
+          "end": 527664,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0127",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il y avait Charette le marchand d'vins en gros"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0127"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0174",
+          "begin": 527664,
+          "end": 530567,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0128",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oh ben oui j'pense bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0128"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0175",
+          "begin": 527664,
+          "end": 530567,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0128",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il avait six cents chevaux celui-là ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0128"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0176",
+          "begin": 530567,
+          "end": 536880,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0129",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "waouh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0129"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0177",
+          "begin": 530567,
+          "end": 536880,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0129",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "alors + il sortait le matin tous les matins + c'était un: + et il y avait quatre chevaux d'attelés hein ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0129"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0178",
+          "begin": 536880,
+          "end": 542343,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0130",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "X beaucoup d'industries quand même à Saint-Ouen: + et maintenant voilà + voilà + ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0130"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0179",
+          "begin": 536880,
+          "end": 542343,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0130",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah ben: énormément d'usines + la rue Blanqui c'était que des usines + il y en a plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0130"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0180",
+          "begin": 542343,
+          "end": 544289,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0131",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais + oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0131"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0181",
+          "begin": 542343,
+          "end": 544289,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0131",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais maintenant il y a plus rien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0131"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0182",
+          "begin": 544289,
+          "end": 546299,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0132",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais c'est vrai ouais + ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0132"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0183",
+          "begin": 544289,
+          "end": 546299,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0132",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il y a plus rien Saint-Ouen est mort oh non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0132"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0184",
+          "begin": 546299,
+          "end": 548149,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0133",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ++ mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0133"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0185",
+          "begin": 546299,
+          "end": 548149,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0133",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et même on (n')a même pas d'commerçants"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0133"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0186",
+          "begin": 548149,
+          "end": 553231,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0134",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "chez nous X Louise puisque vous habitez l'même coin que moi + il y a rien + on (n')a rien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0134"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0187",
+          "begin": 548149,
+          "end": 553231,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0134",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il y a rien + il y a rien + il y a rien + rue Debussy il y a plus rien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0134"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0188",
+          "begin": 553231,
+          "end": 556790,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0135",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ouais ouais + c'est les supermarchés euh c'est tout hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0135"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0189",
+          "begin": 553231,
+          "end": 556790,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0135",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "X ils ont mis un fleuriste à la place"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0135"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0190",
+          "begin": 556790,
+          "end": 561893,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0136",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ben non il faut aller: en-encore le grand Franprix à la patinoire est un petit peu mieux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0136"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0191",
+          "begin": 561893,
+          "end": 566784,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0137",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "que notre petit Franprix + moi mon petit Franp-Franprix il m'dépanne quand même pour l'eau"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0137"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0192",
+          "begin": 561893,
+          "end": 566784,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0137",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oui oui oui + oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0137"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0193",
+          "begin": 566784,
+          "end": 569396,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0138",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0138"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0194",
+          "begin": 566784,
+          "end": 569396,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0138",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "les bouteilles d'eau c'est s- ++ évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0138"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0195",
+          "begin": 569396,
+          "end": 572256,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0139",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "[mais:;et:] rue Montmartre là il y avait des commer- il y avait deux boulangers"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0139"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0196",
+          "begin": 572256,
+          "end": 574059,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0140",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oh ben oui + il y a plus rien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0140"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0197",
+          "begin": 572256,
+          "end": 574059,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0140",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il y avait deux charcutiers"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0140"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0198",
+          "begin": 574059,
+          "end": 581024,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0141",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ouais ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0141"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0199",
+          "begin": 574059,
+          "end": 581024,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0141",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il y avait un boucher il y avait marchand d'couleurs X + crémier + ah il y avait un boucher d'cheval en plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0141"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0200",
+          "begin": 581024,
+          "end": 581536,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0142",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0142"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0201",
+          "begin": 581024,
+          "end": 581536,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0142",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0142"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0202",
+          "begin": 581536,
+          "end": 585454,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0143",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh la la"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0143"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0203",
+          "begin": 581536,
+          "end": 585454,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0143",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "où j'avais mon teinturier juste en bas d'chez moi j'avais mon petit cordonnier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0143"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0204",
+          "begin": 585454,
+          "end": 592800,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0144",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui X voilà moi j'ai connu aussi cordonnier XXX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0144"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0205",
+          "begin": 585454,
+          "end": 592800,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0144",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben maintenant c'est du bric-à-brac euh X comme on dit à tout à dix tout à dix dix enfin même pas dix francs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0144"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0206",
+          "begin": 592800,
+          "end": 597988,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0145",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "enfin moi j'disais dix francs ++ ce qui n'est pas dix francs mais enfin + parce qu'en plus ils sont chers"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0145"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0207",
+          "begin": 592800,
+          "end": 597988,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0145",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'est quand euh quand c'est des: ++ hein des comment on dit là?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0145"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0208",
+          "begin": 597988,
+          "end": 607132,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0146",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais + euh +++ ah les bazars ouais les bazars + mm + mm +++ mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0146"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0209",
+          "begin": 597988,
+          "end": 607132,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0146",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "c'est des bric-à-brac euh: soit disant à dix francs à cette époque-là + hein à l'époque où ils s'installaient où ils s'ouvraient + mais seulement mais ç- + c'est pas dix francs hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0146"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0210",
+          "begin": 607132,
+          "end": 614160,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0147",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah c'est pas compliqué l- + la rue Charles Schmidt + le: commerçant qui est resté depuis + c'est la pharmacie"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0147"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0211",
+          "begin": 607132,
+          "end": 614160,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0147",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ils sont chers hein +++ ah ben"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0147"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0212",
+          "begin": 614160,
+          "end": 619348,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0148",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui? + c'est le seul commerce qui est là depuis euh: que que que vous êtes là + enfin que depuis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0148"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0213",
+          "begin": 614160,
+          "end": 619348,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0148",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "la pharmacie Bichat +++ j'connais la rue"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0148"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0214",
+          "begin": 619348,
+          "end": 620749,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0149",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oui il y avait un miroitier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0149"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0215",
+          "begin": 619348,
+          "end": 620749,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0149",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "depuis que j'connais la rue"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0149"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0216",
+          "begin": 620749,
+          "end": 622133,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0150",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0150"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0217",
+          "begin": 620749,
+          "end": 622133,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0150",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il y avait un beau miroitier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0150"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0218",
+          "begin": 622133,
+          "end": 625015,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0151",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah non: pas à ce moment-là pas quand j'suis née"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0151"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0219",
+          "begin": 622133,
+          "end": 625015,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0151",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah bon ah: oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0151"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0220",
+          "begin": 625015,
+          "end": 627071,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0152",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0152"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0221",
+          "begin": 625015,
+          "end": 627071,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0152",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah non non non + non +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0152"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0222",
+          "begin": 627071,
+          "end": 636008,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0153",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "moi il y avait une miroiterie puisque il a travaillé pour moi euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0153"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0223",
+          "begin": 627071,
+          "end": 636008,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0153",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "non le seul que: ++ et puis bon ben il y avait après un: éleveur de + de vaches là [que:;de:] + une laiterie"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0153"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0224",
+          "begin": 636008,
+          "end": 636435,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0154",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0154"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0225",
+          "begin": 636435,
+          "end": 638978,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0155",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "plus haut là c'est vers euh où est l'garage maintenant +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0155"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0226",
+          "begin": 638978,
+          "end": 640374,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0156",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0156"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0227",
+          "begin": 640374,
+          "end": 647191,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0157",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais ouais ça fait pas mal de choses quand même mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0157"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0228",
+          "begin": 640374,
+          "end": 647191,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0157",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "maintenant pour trouver: + pour trouver: un + un employé enfin voyez: comment comment dirais-je"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0157"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0229",
+          "begin": 647191,
+          "end": 650242,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0158",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "X charcuterie pareil + il y en avait deux + des charcutiers"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0158"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0230",
+          "begin": 647191,
+          "end": 650242,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0158",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah ben des charcuteries il y en a plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0158"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0231",
+          "begin": 650242,
+          "end": 652214,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0159",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0159"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0232",
+          "begin": 650242,
+          "end": 652214,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0159",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "alors là il y en a pas + du tout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0159"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0233",
+          "begin": 652214,
+          "end": 656534,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0160",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "puis alors on avait un charcutier qu'était du tonnerre + tous les samedis il tuait l'porc +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0160"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0234",
+          "begin": 656534,
+          "end": 660770,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0161",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +++ ah ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0161"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0235",
+          "begin": 656534,
+          "end": 660770,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0161",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il le mettait euh: égoutter dans la rue + avec un tablier dessus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0161"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0236",
+          "begin": 660770,
+          "end": 665408,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0162",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ç-ça devait être marrant +++ ah ben oui ça m-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0162"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0237",
+          "begin": 660770,
+          "end": 665408,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0162",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et il faisait du bou- du boudin mais alors comme ça + puis tout tout l'restant hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0162"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0238",
+          "begin": 665408,
+          "end": 666385,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0163",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0163"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0239",
+          "begin": 665408,
+          "end": 666385,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0163",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ça m'étonne pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0163"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0240",
+          "begin": 666385,
+          "end": 669732,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah oui oui oui ah j'la vois encore mon dieu X ah là là (rires collectifs)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0241",
+          "begin": 669732,
+          "end": 673079,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0165",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui c'est à l'ancienne ça + c'est à l'ancienne +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0165"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0242",
+          "begin": 669732,
+          "end": 673079,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0165",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oh oui alors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0165"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0243",
+          "begin": 673079,
+          "end": 682413,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0166",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et euh est-ce que v- est-ce que vous vous souvenez de quelque chose d'inattendu ou d'un d'un événement euh: quelque chose qui s'est passé dans l'quartier que vous pourriez nous: nous raconter +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0166"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0244",
+          "begin": 682413,
+          "end": 690901,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0167",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben moi euh moi euh: moi c'est au moint d'vue d'la population je m'attendais pas à ce que la population devienne ++ qu'on n'soit plus en France +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0167"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0245",
+          "begin": 690901,
+          "end": 691794,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0168",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "cosmopolite (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0168"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0246",
+          "begin": 691794,
+          "end": 693470,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0169",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ah ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0169"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0247",
+          "begin": 691794,
+          "end": 693470,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0169",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ben ça oui mais ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0169"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0248",
+          "begin": 693470,
+          "end": 698996,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0170",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "fallait s'y attendre hein +++ mais c'est sûr hein que:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0170"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0249",
+          "begin": 693470,
+          "end": 698996,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0170",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "non mais qu'on n'soit plus vraiment plus en France on on ne on n'est même plus: plus cosmopolite là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0170"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0250",
+          "begin": 698996,
+          "end": 704120,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0171",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mais j'entendais plutôt euh: qu- un événement ou euh: je sais pas m- +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0171"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0251",
+          "begin": 704120,
+          "end": 707382,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0172",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh ben il y a eu la guerre moi j'ai connu la guerre dans ce coin-là hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0172"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0252",
+          "begin": 704120,
+          "end": 707382,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0172",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "des XXX ouais + mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0172"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0253",
+          "begin": 707382,
+          "end": 708359,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0173",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "bombardements tout ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0173"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0254",
+          "begin": 707382,
+          "end": 708359,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0173",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'était pas pareil"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0173"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0255",
+          "begin": 708359,
+          "end": 714037,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0174",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "est-ce que vous: + vous voyez un événement marquant euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0174"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0256",
+          "begin": 708359,
+          "end": 714037,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0174",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "non moi j'ai connu XXXX [il y en;on] a eu des événements marquants"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0174"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0257",
+          "begin": 714037,
+          "end": 717130,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0175",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben tour de Saint-Ouen a été rasée hein X vieux château ça je"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0175"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0258",
+          "begin": 714037,
+          "end": 717130,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0175",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais + qu'est-ce que X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0175"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0259",
+          "begin": 717130,
+          "end": 724454,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0176",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et puis + oui c'est tombé sur le + l'hôpital de: du vieux Saint-Ouen c'étaient des religieuses + j'ai un ami sa soeur a été tuée là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0176"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0260",
+          "begin": 724454,
+          "end": 730657,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0177",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "eh oui + moi j'ai pas: connu ça évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0177"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0261",
+          "begin": 724454,
+          "end": 730657,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0177",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "elle avait treize ans + les parents lui avaient dit quand il y a un bombardement tu vas chez les soeurs X + c'est là quelle s'est fait tuer"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0177"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0262",
+          "begin": 730657,
+          "end": 739484,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0178",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais + et v-vous étiez là ce jour-là X? + ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0178"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0263",
+          "begin": 730657,
+          "end": 739484,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0178",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah ben oui + oh là-bas non + parce que j'habitais pas + là c'était dans l'vieux Saint-Ouen ce que j'vous X + X dis là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0178"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0264",
+          "begin": 739484,
+          "end": 739848,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0179",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0179"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0265",
+          "begin": 739848,
+          "end": 741481,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0180",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'était: au bout d'la rue Saint-Denis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0180"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0266",
+          "begin": 739848,
+          "end": 741481,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0180",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "mm + mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0180"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0267",
+          "begin": 741481,
+          "end": 742243,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0181",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0181"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0268",
+          "begin": 742243,
+          "end": 747367,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0182",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "mais: moi j'habitais toujours euh bon voilà + oui maintenant oui + maison d'retraite"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0182"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0269",
+          "begin": 742243,
+          "end": 747367,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0182",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "c'est la maison d'retraite maintenant +++ ils sont en train d'rénover"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0182"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0270",
+          "begin": 747367,
+          "end": 750608,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0183",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "[non mais;bon ben] c'est vrai que: ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0183"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0271",
+          "begin": 750608,
+          "end": 754420,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0184",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et vous vous: vous étiez là le s- + vous vous souvenez de ce bombardement vous?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0184"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0272",
+          "begin": 754420,
+          "end": 760073,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0185",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah non + non ++ ah ben XX plus jeune que + madame:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0185"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0273",
+          "begin": 754420,
+          "end": 760073,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0185",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "non? + vous étiez peut-être plus jeune + ah d'accord + ok c'était pas le (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0185"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0274",
+          "begin": 760073,
+          "end": 762679,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0186",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "bon ben moi j'suis: j'suis là depuis que XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0186"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0275",
+          "begin": 760073,
+          "end": 762679,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0186",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0186"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0276",
+          "begin": 762679,
+          "end": 765984,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0187",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "madame est née tandis que moi je suis venue j'avais quatorze quinze ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0187"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0277",
+          "begin": 765984,
+          "end": 767110,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0188",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0188"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0278",
+          "begin": 767110,
+          "end": 769124,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0189",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais j'ai démarré j'vous dis dans Paris moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0189"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0279",
+          "begin": 769124,
+          "end": 769721,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0190",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0190"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0280",
+          "begin": 769721,
+          "end": 771989,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0191",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "vous êtes née à quelle date: quelle année vous?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0191"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0281",
+          "begin": 771989,
+          "end": 773855,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0192",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "jan- + janvier: trente-trois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0192"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0282",
+          "begin": 773855,
+          "end": 775065,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0193",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah: ben oui mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0193"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0283",
+          "begin": 775065,
+          "end": 778480,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0194",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "en ce moment X + ma date de naissance elle sort entièrement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0194"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0284",
+          "begin": 775065,
+          "end": 778480,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0194",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ça fait onze ans quand même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0194"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0285",
+          "begin": 778480,
+          "end": 779627,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0195",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "au au kéno"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0195"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0286",
+          "begin": 778480,
+          "end": 779627,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0195",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah bon?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0195"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0287",
+          "begin": 779627,
+          "end": 780774,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0196",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah ah ah ben"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0196"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0288",
+          "begin": 779627,
+          "end": 780774,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0196",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ben faut jouer"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0196"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0289",
+          "begin": 780774,
+          "end": 785919,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0197",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "eh ben vous aussi mais mais (rires Marc) oui mais XXXX elle va sortir hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0197"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0290",
+          "begin": 780774,
+          "end": 785919,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0197",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "c'est sûr hein si vous allez jouer euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0197"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0291",
+          "begin": 785919,
+          "end": 797813,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0198",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ça m'agace tous les soirs j'regarde justement l'kéno pour voir les numéros + oh: ça m'énerve ça ++ ben + un mois avant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0198"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0292",
+          "begin": 785919,
+          "end": 797813,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0198",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "[XX;de la même façon] + moi j'me rappelle ++ du: + du jour de naissance de Chirac + il était né dix ans et un jour + il était né l'vingt-neuf novembre trente-deux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0198"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0293",
+          "begin": 797813,
+          "end": 798258,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0199",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0199"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0294",
+          "begin": 797813,
+          "end": 798258,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0199",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0199"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0295",
+          "begin": 798258,
+          "end": 800145,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0200",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et moi l'vingt-huit novembre vingt-deux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0200"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0296",
+          "begin": 798258,
+          "end": 800145,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0200",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il est né"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0200"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0297",
+          "begin": 800145,
+          "end": 801736,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0201",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il est né un mois avant moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0201"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0298",
+          "begin": 800145,
+          "end": 801736,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0201",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + dix ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0201"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0299",
+          "begin": 801736,
+          "end": 804342,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0202",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "dix ans après (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0202"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0300",
+          "begin": 801736,
+          "end": 804342,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0202",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "un mois XXX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0202"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0301",
+          "begin": 804342,
+          "end": 805870,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0203",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah vous êtes du mois d'octobre vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0203"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0302",
+          "begin": 805870,
+          "end": 809471,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0204",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "non ++ il est il est: il est de de décembre lui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0204"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0303",
+          "begin": 805870,
+          "end": 809471,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0204",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "X ++ novembre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0204"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0304",
+          "begin": 809471,
+          "end": 813156,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0205",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "non il est du vingt-neuf novembre + novembre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0205"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0305",
+          "begin": 809471,
+          "end": 813156,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0205",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "novembre + novembre + et du moi du mois d'janvier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0205"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0306",
+          "begin": 813156,
+          "end": 813731,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0206",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0206"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0307",
+          "begin": 813731,
+          "end": 816972,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0207",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah oui ++ deux mois avant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0207"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0308",
+          "begin": 813731,
+          "end": 816972,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0207",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais il a eu + ses soixante-quinze ans avant moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0207"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0309",
+          "begin": 816972,
+          "end": 818999,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0208",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui bien sûr novembre bien sûr oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0208"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0310",
+          "begin": 816972,
+          "end": 818999,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0208",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "moi j'les ai eus au mois d'janvier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0208"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0311",
+          "begin": 818999,
+          "end": 820890,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0209",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'est pas la même année déjà"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0209"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0312",
+          "begin": 818999,
+          "end": 820890,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0209",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui bien sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0209"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0313",
+          "begin": 820890,
+          "end": 827347,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0210",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "lui c'était en trente-deux vous c'est en trente-trois ++ mm + ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0210"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0314",
+          "begin": 820890,
+          "end": 827347,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0210",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ben: ++ voilà + lui à la fin mais moi l'début + de l'autre année"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0210"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0315",
+          "begin": 827347,
+          "end": 832175,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0211",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah on a dix ans d'écart parce que + moi j'suis née à la fin de l'année: vingt-deux +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0211"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0316",
+          "begin": 832175,
+          "end": 834126,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0212",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais c'est marrant ouais XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0212"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0317",
+          "begin": 832175,
+          "end": 834126,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0212",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et puis vous au début de l'année trente-trois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0212"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0318",
+          "begin": 834126,
+          "end": 838785,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0213",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oui + [c'est;et] comme Paul Paul il était il était d'vingt-deux X + \ndix ans si ça compte"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0213"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0319",
+          "begin": 834126,
+          "end": 838785,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0213",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah ça compte dix ans ++ ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0213"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0320",
+          "begin": 838785,
+          "end": 840972,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0214",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oh ben oui ça compte hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0214"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0321",
+          "begin": 838785,
+          "end": 840972,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0214",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "alors pour revenir aux quartiers"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0214"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0322",
+          "begin": 840972,
+          "end": 843705,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0215",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "un petit peu"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0215"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0323",
+          "begin": 840972,
+          "end": 843705,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0215",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "on vieillit oui moi je l'ai vu avec Paul hein +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0215"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0324",
+          "begin": 843705,
+          "end": 853233,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0216",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "est-ce est-ce qu'il y a des endroits dans le quartier le quartier où vous habitez + où vous allez euh souvent + toutes les semaines ou euh + des des promenades que vous faites"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0216"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0325",
+          "begin": 853233,
+          "end": 855814,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0217",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh la maintenant on a XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0217"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0326",
+          "begin": 853233,
+          "end": 855814,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0217",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "euh habituellement: ou des choses comme ça? (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0217"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0327",
+          "begin": 855814,
+          "end": 860388,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0218",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ça dépend de l'X moi j'ai été agressée trois fois X j'aime mieux vous dire que j'ai plutôt peur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0218"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0328",
+          "begin": 860388,
+          "end": 868114,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0219",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "où ça? ++ ah oui + ouais +++ ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0219"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0329",
+          "begin": 860388,
+          "end": 868114,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0219",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'ai été agressée trois fois + alors dont une fois dans mon immeuble la dernière fois là: récemment ben oui alors donc euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0219"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0330",
+          "begin": 868114,
+          "end": 871186,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0220",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "vous pouvez nous raconter un petit peu ce ce qui s'est passé ce:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0220"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0331",
+          "begin": 871186,
+          "end": 877262,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0221",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ben X j'rentrais de: de l'hôpital comme tous les jours + pendant neuf ans j'ai fait ce l'hôpital + enfin les hôpitaux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0221"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0332",
+          "begin": 871186,
+          "end": 877262,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0221",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "la dernière XX ++ mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0221"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0333",
+          "begin": 877262,
+          "end": 878790,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0222",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "parce que vous [travailliez;travaillez] à l'hôpital? +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0222"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0334",
+          "begin": 878790,
+          "end": 886707,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0223",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "non non non pas du tout mon mari y était + enfin mon mari mon compagnon hein + puisque: + j'étais pas mariée: bon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0223"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0335",
+          "begin": 878790,
+          "end": 886707,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0223",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "non +++ d'accord ++ ah oui + d'accord + il était euh hospitalisé + d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0223"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0336",
+          "begin": 886707,
+          "end": 890477,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0224",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et: il ét- il était pas: il était pas tard il était vingt heures"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0224"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0337",
+          "begin": 890477,
+          "end": 911109,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0225",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ++ mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0225"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0338",
+          "begin": 890477,
+          "end": 911109,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0225",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais il faisait pas nuit j'veux dire puisque j'avais encore mes lunettes de soleil + alors euh il y avait encore soleil et comme j'ai les yeux très fragiles bon ++ bon ben comme d'habitude je rentre ++ la porte d'entrée + je passe + à ma boîte aux lettres + comme toujours chaque fois que je descends que je monte j'ouvre ma boîte aux lettres parce que je veux: pas laisser de papiers dedans bon ++ il y avait deux filles + jeunes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0225"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0339",
+          "begin": 911109,
+          "end": 912235,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0226",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0226"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0340",
+          "begin": 912235,
+          "end": 953190,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0227",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "euh genre maghrébines évidemment ++ qui étaient là dont une tenait la porte + ouverte + et l'autre me tournait le dos puisque j'étais aux boîtes aux lettres + elle me tournait l'dos donc face à sa copine + et elles discutaient + mais rien n'me laissait supposer X ces filles et puis j'allais pas leur demander si elles allaient monter ou descen- euh ou qu'est-ce que'elle faisaient + m'occupe de personne moi euh j'prends: je referme ma boîte + j'prends mes clés dans ma main + donc j'avais m- X mais elles étaient en train de ++ de contrôler mon sac à main ++ parce que là c'est pas un c'est pas du tout un sac à main j'avais un sac de courses + et j'avais pas d'courses dedans parce que j'étais fatiguée ce j- ce soir-là donc j'avais pas fait mes courses c'est pour ça qu'elle ont pris l'argent d'ailleurs + elles ont eu euh bon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0227"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0341",
+          "begin": 953190,
+          "end": 953825,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0228",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0228"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0342",
+          "begin": 953825,
+          "end": 969633,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0229",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "donc el-elles regardaient certainement comment était euh pla-placé mon sac à main voyez ++ et j'ai mis mes clés dans ma main comme d'habitude + heureusement qu'elles les ont pas prises d'ailleurs + elles m'ont laissé monter les huit premières marches + et il y a l'palier aussit- a l'palier aussitôt"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0229"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0343",
+          "begin": 969633,
+          "end": 970077,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0230",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0230"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0344",
+          "begin": 970077,
+          "end": 986753,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0231",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et là + j'ai senti mon sac qui: évidemment qui s'dérobait + j'ai fait réticence elles m'ont + elle m'a jetée dans l'mur + j'ai: été à l'hôpital évidemment + m'a transporté à l'hôpital + des gens + j'ai crié \"au secours au secours\" ++ un fait exprès il y avait personne ni qui montait ni qui descendait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0231"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0345",
+          "begin": 986753,
+          "end": 993887,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0232",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah c'est toujours hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0232"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0346",
+          "begin": 986753,
+          "end": 993887,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0232",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "on aurait dit + ah moi j'ai + d'ailleurs avec la police c'est ce qu'on a dit + c'était + prémédité ++ ah si"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0232"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0347",
+          "begin": 993887,
+          "end": 994272,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0233",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0233"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0348",
+          "begin": 994272,
+          "end": 1000094,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0234",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "on avait dit euh + tous voilà + sortir + à peu près à la même heure + rentrer + à la même heure"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0234"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0349",
+          "begin": 994272,
+          "end": 1000094,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0234",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "parce que vous rentrez tous les jours à la même heure aussi + voilà c'est ça + ça c'est XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0234"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0350",
+          "begin": 1000094,
+          "end": 1004308,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0235",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "c'est pas que c'était prémédité c'est que les gens savent qui c'est mais euh ils veulent pas de représailles"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0235"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0351",
+          "begin": 1004308,
+          "end": 1023226,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0236",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "voilà + ah ben moi + il y a un petit gamin: là: qui habite un petit Africain + il y a pas longtemps qu'ils sont locataires + mais ils étaient déjà là X + il était à la fenêtre ++ et c'est lui qu'a qui m'a remis les papiers dans ma boîte aux lettres le lendemain matin + donc pourquoi c'est lui? ++ il m'dit \"je sais qui c'est j'les connais les filles\""
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0236"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0352",
+          "begin": 1023226,
+          "end": 1025409,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0237",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "il va pas l'dire hein + il va pas l'dénoncer"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0237"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0353",
+          "begin": 1025409,
+          "end": 1038467,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0238",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'dis pourquoi tu veux pas l'dire: Issaga + pourquoi tu veux pas l'dire: qui c'est ++ j'dis parce que pour moi tu vois ben on m'rembourserait mes lunettes + et là on veut pas m'les rembourser + tant que X tant qu'on (n')a pas trouvé les: les"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0238"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0354",
+          "begin": 1038467,
+          "end": 1040079,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0239",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "les coupables"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0239"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0355",
+          "begin": 1038467,
+          "end": 1040079,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0239",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "les agresseurs oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0239"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0356",
+          "begin": 1040079,
+          "end": 1059759,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0240",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais j'y dis \"mais c'est pas gentil Issaga tu ne risques rien + on te fera pas d'mal à toi + tu n'es pas l'fautif\" + mais il dit \"oui mais j'ai remis les papiers + alors comme j'ai remis tes papiers\" parce qu'ils vous tutoient tous savez bien + il m'dit comme j'ai remis tes papiers + ah ben j'dis j'dirai pas que c'est toi qui a remis mes papiers + et puis c'est tout ++ hein + mais il veut pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0240"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0357",
+          "begin": 1059759,
+          "end": 1068057,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0241",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "X j'veux pas leur causer des ennuis + mais quand même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0241"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0358",
+          "begin": 1059759,
+          "end": 1068057,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0241",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "moi j'ai été agressée à dix heures du main avenue Gabriel Péri + devant la B- + la BNP qui est au coin d'la rue Ottino là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0241"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0359",
+          "begin": 1068057,
+          "end": 1068590,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0242",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0242"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0360",
+          "begin": 1068057,
+          "end": 1068590,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0242",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0242"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0361",
+          "begin": 1068590,
+          "end": 1072127,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0243",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "un gars qui m'a + sauté dessus + avec un bas sur la tête"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0243"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0362",
+          "begin": 1072127,
+          "end": 1072868,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0244",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ben oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0244"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0363",
+          "begin": 1072868,
+          "end": 1078711,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0245",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah ouais? + à ce point?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0245"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0364",
+          "begin": 1072868,
+          "end": 1078711,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0245",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et puis qui m'a tiré mon sac alors c'était + une petite + tout petit un petit sac + alors euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0245"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0365",
+          "begin": 1078711,
+          "end": 1080217,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0246",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0246"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0366",
+          "begin": 1078711,
+          "end": 1080217,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0246",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "pochette +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0246"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0367",
+          "begin": 1080217,
+          "end": 1083479,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0247",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "une pochette heureusement d'habitude j'mettais mes clés + mon porte-monnaie"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0247"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0368",
+          "begin": 1083479,
+          "end": 1088709,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0248",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "heureusement moi j'avais mes clés dans ma main elles les ont pas tirées heureusement parce que ben: elles m'au- elles m'auraient déchirée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0248"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0369",
+          "begin": 1083479,
+          "end": 1088709,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0248",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'avais pas mis mes clés + heureusement + oh ben oui + parce que il y avait mon adresse et X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0248"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0370",
+          "begin": 1088709,
+          "end": 1091633,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0249",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "mais: là par contre alors il a pas eu grand chose"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0249"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0371",
+          "begin": 1091633,
+          "end": 1093372,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0250",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0250"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0372",
+          "begin": 1091633,
+          "end": 1093372,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0250",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'avais neuf euros dans mon porte-monnaie"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0250"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0373",
+          "begin": 1093372,
+          "end": 1097375,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0251",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ouais + avec le bas c'est: c'est impressionnant (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0251"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0374",
+          "begin": 1093372,
+          "end": 1097375,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0251",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben moi j'avais quarante euros parce que bon ben j'allais faire mes courses X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0251"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0375",
+          "begin": 1097375,
+          "end": 1099876,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0252",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "comme j'me: sentais tellement fatiguée j'ai dit oh ben XXX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0252"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0376",
+          "begin": 1097375,
+          "end": 1099876,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0252",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "alors j'ai été porter plainte"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0252"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0377",
+          "begin": 1099876,
+          "end": 1105719,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0253",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais + ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0253"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0378",
+          "begin": 1099876,
+          "end": 1105719,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0253",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il m'dit \"vous avez noté l'numéro d'la voiture\" ben tu parles elle était en deuxième file + prête à partir le:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0253"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0379",
+          "begin": 1105719,
+          "end": 1106760,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0254",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais + ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0254"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0380",
+          "begin": 1106760,
+          "end": 1114106,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0255",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "alors paraît-il qu'elles sont montées sur une bicyclette et puis elles sont parties: vers la mairie ça s'est passé le sac s'est vidé vers la mairie ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0255"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0381",
+          "begin": 1114106,
+          "end": 1116332,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0256",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + bon ben on va peut-être pa- euh:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0256"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0382",
+          "begin": 1116332,
+          "end": 1126957,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0257",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "parler de: + oui oui X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0257"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0383",
+          "begin": 1116332,
+          "end": 1126957,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0257",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "passer à des choses un peu plus agréables (rires) alors j'ai est-ce que est-ce qu'il y a des fêtes: d'immeuble ou des fêtes de voisins des fêtes de rue des choses comme ça dans votre quartier euh +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0257"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0384",
+          "begin": 1126957,
+          "end": 1133075,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0258",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "est-ce que vous voyez des: des choses comme ça?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0258"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0385",
+          "begin": 1126957,
+          "end": 1133075,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0258",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben au parte au parc ils font de temps en mais moi j'y allais plus alors euh + je n'sais plus j'sais plus comment ça s'déroule"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0258"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0386",
+          "begin": 1133075,
+          "end": 1133710,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0259",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0259"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0387",
+          "begin": 1133710,
+          "end": 1140019,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0260",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "à part que je lis le: Seine-Saint-Denis et Saint-Ouen + euh je vois qu'est-ce qui: s'y passe mais autrement j'y v-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0260"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0388",
+          "begin": 1140019,
+          "end": 1143810,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0261",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'y allais plus moi moi j'allais à l'hôpital vous savez j'étais vraiment: +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0261"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0389",
+          "begin": 1140019,
+          "end": 1143810,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0261",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "XX chez nous ils font pas d'fête d'immeuble"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0261"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0390",
+          "begin": 1143810,
+          "end": 1148024,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0262",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "c'était régulier deux heures et demie: euh tous les jours je partais enfin quatorze heures trente"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0262"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0391",
+          "begin": 1148024,
+          "end": 1154206,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0263",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +++ d'accord + ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0263"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0392",
+          "begin": 1148024,
+          "end": 1154206,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0263",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'revenais vers euh + avant j'rentrais un peu plus tôt et les derniers mois là j'rentrais vers vingt heures"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0263"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0393",
+          "begin": 1154206,
+          "end": 1156389,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0264",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et au parc c'était quoi:?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0264"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0394",
+          "begin": 1154206,
+          "end": 1156389,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0264",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh c'est tous les ans XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0264"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0395",
+          "begin": 1156389,
+          "end": 1158742,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0265",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oh j'sais pas il y avait eu un jour là que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0265"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0396",
+          "begin": 1156389,
+          "end": 1158742,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0265",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "c'est pour le quatorze juillet"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0265"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0397",
+          "begin": 1158742,
+          "end": 1161052,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0266",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "non il y avait au mois d'septembre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0266"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0398",
+          "begin": 1158742,
+          "end": 1161052,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0266",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "c'est [un;le] truc de la ville"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0266"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0399",
+          "begin": 1161052,
+          "end": 1163447,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0267",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il y en a aussi + il y a deux jours au mois d'septembre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0267"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0400",
+          "begin": 1161052,
+          "end": 1163447,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0267",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oh oui ça: il y a la ville oui bien sûr au mois d'septembre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0267"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0401",
+          "begin": 1163447,
+          "end": 1166798,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0268",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il y a la ville et puis il y a aussi le le XX j'sais pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0268"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0402",
+          "begin": 1163447,
+          "end": 1166798,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0268",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui et puis il y a la brocante"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0268"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0403",
+          "begin": 1166798,
+          "end": 1170081,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0269",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oui là quand ils font des"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0269"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0404",
+          "begin": 1166798,
+          "end": 1170081,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0269",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui la brocante il y a la fête: +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0269"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0405",
+          "begin": 1170081,
+          "end": 1181789,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0270",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oh la la (rires Marc) mon Dieu le jour qu'ils font les merguez et tout oh la la (rires Marc) puis alors c'est pas ça mais le bus euh moi qui prenais l'cent trente-sept eh ben ++ fallait venir le prendre à la mairie parce qu'il faisait tout l'grand tour"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0270"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0406",
+          "begin": 1181789,
+          "end": 1187040,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0271",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "si au mois d'juin là ils doivent faire une fête là place du marché euh les: ça doit être les Africains"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0271"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0407",
+          "begin": 1187040,
+          "end": 1187886,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0272",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "Ottino?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0272"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0408",
+          "begin": 1187886,
+          "end": 1193353,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0273",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "non X chez nous ++ il m'semble qu'ils font une: + une petite soirée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0273"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0409",
+          "begin": 1187886,
+          "end": 1193353,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0273",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah bon? ++ Ottino que j'ai dit c'est pas Ottino le magasin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0273"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0410",
+          "begin": 1193353,
+          "end": 1207223,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0274",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "c'est comment euh comment il s'appelle le marché"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0274"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0411",
+          "begin": 1193353,
+          "end": 1207223,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0274",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "euh: Londi + Londi ++ marché du Londi + ils doivent [fête;faites] une ils doivent faire une petite: un dimanche ++ un petit euh: + un petit repas convivial entre eux +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0274"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0412",
+          "begin": 1207223,
+          "end": 1207756,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0275",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0275"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0413",
+          "begin": 1207756,
+          "end": 1216117,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0276",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "avec euh en association avec la ville + puisque il y a d'la musique il y a plein d'choses + il y a des ani- il y a des petites animations +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0276"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0414",
+          "begin": 1216117,
+          "end": 1229069,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0277",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et euh et donc dans l'quartier où vous habitez est-ce que qu-quelles sont les communautés qui euh + qui habitent: dans l'quartier + des gens de différentes origines: + qu'est-ce que: qu'est-ce que vous voyez autour de vous? +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0277"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0415",
+          "begin": 1229069,
+          "end": 1243227,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0278",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "XX pas beaucoup parce que vous êtes en: petite maison ++ vous êtes en petite maison vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0278"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0416",
+          "begin": 1229069,
+          "end": 1243227,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0278",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ben moi dans l'immeuble + j'ai + Arabes + Marocains + enfin du moins ++ Tunisiens + Marocains + Africains ++ euh: Algériens + Turcs ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0278"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0417",
+          "begin": 1243227,
+          "end": 1244924,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0279",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "voilà + oui + (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0279"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0418",
+          "begin": 1244924,
+          "end": 1245732,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0280",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "alors voilà"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0280"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0419",
+          "begin": 1245732,
+          "end": 1248360,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0281",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0281"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0420",
+          "begin": 1245732,
+          "end": 1248360,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0281",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "si ça peut vous situer euh: mon environnement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0281"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0421",
+          "begin": 1248360,
+          "end": 1249845,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0282",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "vous avez une impératrice de:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0282"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0422",
+          "begin": 1248360,
+          "end": 1249845,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0282",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0282"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0423",
+          "begin": 1249845,
+          "end": 1250759,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0283",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "d'Iran qui est en face de vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0283"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0424",
+          "begin": 1249845,
+          "end": 1250759,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0283",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui + Farah"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0283"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0425",
+          "begin": 1250759,
+          "end": 1254444,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0284",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "non non non non j'ai une habitante de Saint vous avez une habitante de Saint-Ouen c'est tout (rires collectifs)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0284"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0426",
+          "begin": 1254444,
+          "end": 1256818,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0285",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "(rires collectifs) oui ouais ouais ouais ouais + oui mais:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0285"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0427",
+          "begin": 1256818,
+          "end": 1258434,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0286",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "(brouhaha) et vous avez euh vous vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0286"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0428",
+          "begin": 1256818,
+          "end": 1258434,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0286",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "XX ou des conversations"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0286"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0429",
+          "begin": 1258434,
+          "end": 1259999,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0287",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "il y a des Hindous maintenant ++     oui + oui + oui ++ oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0287"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0430",
+          "begin": 1259999,
+          "end": 1260459,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0288",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oui oui X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0288"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0431",
+          "begin": 1260459,
+          "end": 1260924,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0289",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "ils sont très gentils ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0289"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0432",
+          "begin": 1260924,
+          "end": 1266294,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0290",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah les en principe les Hindous oui ++ + mm + ben voyez les Africains on les entend pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0290"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0433",
+          "begin": 1260924,
+          "end": 1266294,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0290",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "ah oui oui oui il y a des Hindous maintenant ils sont très gentils parce que: + XX +++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0290"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0434",
+          "begin": 1266294,
+          "end": 1279416,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0291",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et pourtant il y a beaucoup d'gosses ah oui il y a X où il y a Is-Issaga là le fameux Issaga là l'gamin + ils sont très gentils hein moi [je sais;j'osais] pas: + euh la petite Africaine: + dans sa porte que j'ai été jetée là euh +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0291"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0435",
+          "begin": 1279416,
+          "end": 1287396,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0292",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "c'est elle d'ailleurs euh qui m'a découverte sur le palier: ensanglantée et tout + elle venait d'arriver pauvre femme elle a eu un drôle de spectacle +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0292"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0436",
+          "begin": 1279416,
+          "end": 1287396,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0292",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah ben oui elle a entendu l'bruit + non en général il y a pas de de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0292"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0437",
+          "begin": 1287396,
+          "end": 1293533,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0293",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et comme elle dit j'ai eu une drôle de: hein de d'impression sur euh sur sur l'immeuble quoi ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0293"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0438",
+          "begin": 1287396,
+          "end": 1293533,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0293",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui + une drôle d'impression + ah la la +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0293"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0439",
+          "begin": 1293533,
+          "end": 1297007,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0294",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "d'ailleurs elle l'a toujours l'impression elle dit: elle parle à personne"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0294"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0440",
+          "begin": 1297007,
+          "end": 1325362,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui + ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0441",
+          "begin": 1297007,
+          "end": 1325362,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "à part à moi +++ elle parle pas X comme elle dit euh + \"ils sont pas intéressants\" et c'est vrai + moi j'ai beaucoup beaucoup d'ennuis avec [le;-] petit Algérien au-dessus euh ++ ça a été un: ça a été un: comment: ++ oh co-co: comment il(s) s'ap- ça s'appelle + un Antillais + avant + il a été: expulsé parce que vraiment: al-alors lui + lui au moins il était franc + il le faisait pour tout l'monde + donc il y a pu f- on a pu faire quelque chose"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0442",
+          "begin": 1325362,
+          "end": 1326657,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0296",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0296"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0443",
+          "begin": 1326657,
+          "end": 1330787,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0297",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais + lui l'Algérien + il le fait que pour moi toute seule la nuit +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0297"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0444",
+          "begin": 1330787,
+          "end": 1332336,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0298",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui + mais il fait quoi?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0298"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0445",
+          "begin": 1332336,
+          "end": 1333271,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0299",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "pour que moi j'entende"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0299"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0446",
+          "begin": 1333271,
+          "end": 1334375,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0300",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ben il il roule s-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0300"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0447",
+          "begin": 1333271,
+          "end": 1334375,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0300",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "la musique?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0300"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0448",
+          "begin": 1334375,
+          "end": 1345211,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0301",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il roule sa banquette j'sais pas quoi + il fait tomber des bouts d'bois il fait tomber des billes + euh voyez + il a + il doit avoir un appareil qui fait tac tac tac tac tac tac + tac tac tac tac tac tac tac + sans arrêt"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0301"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0449",
+          "begin": 1345211,
+          "end": 1346290,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0302",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0302"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0450",
+          "begin": 1346290,
+          "end": 1347944,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0303",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "si vous saviez ce que c'est énervant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0303"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0451",
+          "begin": 1347944,
+          "end": 1349641,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0304",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui je sais + mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0304"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0452",
+          "begin": 1347944,
+          "end": 1349641,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0304",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0304"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0453",
+          "begin": 1349641,
+          "end": 1355082,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0305",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "qu'est-ce que c'est que cet appareil? ++ c'est une vidéo j'en sais rien j'sais pas quoi je sais pas +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0305"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0454",
+          "begin": 1349641,
+          "end": 1355082,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0305",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "du bruit la nuit oui + XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0305"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0455",
+          "begin": 1355082,
+          "end": 1360756,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0306",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "alors je l'ai signalé là je l'entends plus il y a il a dû être + plusieurs fois qu'il est appelé à la loge + par madame Jacques +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0306"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0456",
+          "begin": 1360756,
+          "end": 1369477,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0307",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +++ est-ce que vous avez fait connaissance euh: enfin des des + des"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0307"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0457",
+          "begin": 1360756,
+          "end": 1369477,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0307",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah mais je suis montée l'voir il m'a reçue comme un chien dans un jeu d'quilles +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0307"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0458",
+          "begin": 1369477,
+          "end": 1379933,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0308",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0308"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0459",
+          "begin": 1369477,
+          "end": 1379933,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0308",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oh la la comme on dit ah ben oui + et il m'a dit que si j'étais pas X une femme + en mettant son poing comme ça j'ai dit oh: attention jeune homme (rires Marc) oh attention +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0308"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0460",
+          "begin": 1379933,
+          "end": 1382370,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0309",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "c'est un Arabe? + c'est un Algérien?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0309"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0461",
+          "begin": 1379933,
+          "end": 1382370,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0309",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "regardez ++ oui oui +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0309"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0462",
+          "begin": 1382370,
+          "end": 1384554,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0310",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "faites bien attention à qui vous parlez hein +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0310"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0463",
+          "begin": 1384554,
+          "end": 1386103,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0311",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "[c'était;c'est] un violent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0311"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0464",
+          "begin": 1384554,
+          "end": 1386103,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0311",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0311"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0465",
+          "begin": 1386103,
+          "end": 1386805,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0312",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "oh la la"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0312"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0466",
+          "begin": 1386103,
+          "end": 1386805,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0312",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "parce que:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0312"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0467",
+          "begin": 1386805,
+          "end": 1387871,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0313",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "un violent +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0313"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0468",
+          "begin": 1387871,
+          "end": 1388692,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0314",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "c'est un vieux?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0314"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0469",
+          "begin": 1388692,
+          "end": 1389475,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0315",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "un violent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0315"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0470",
+          "begin": 1389475,
+          "end": 1390325,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0316",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "un violent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0316"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0471",
+          "begin": 1389475,
+          "end": 1390325,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0316",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "c'est un + oui c'est"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0316"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0472",
+          "begin": 1390325,
+          "end": 1393037,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0317",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "un violent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0317"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0473",
+          "begin": 1390325,
+          "end": 1393037,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0317",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oui + et pourtant c'est un jeune XXX (brouhaha)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0317"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0474",
+          "begin": 1393037,
+          "end": 1394145,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0318",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oui mais il travaille pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0318"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0475",
+          "begin": 1393037,
+          "end": 1394145,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0318",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0318"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0476",
+          "begin": 1394145,
+          "end": 1396498,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0319",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "j'connais quelques voisins chez X mais bon j'peux pas connaître tout l'monde"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0319"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0477",
+          "begin": 1394145,
+          "end": 1396498,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0319",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'était comme la famille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0319"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0478",
+          "begin": 1396498,
+          "end": 1400987,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0320",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il a travaillé + pour avoir des feuilles de paye"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0320"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0479",
+          "begin": 1396498,
+          "end": 1400987,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0320",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "XX à tous nos voisins tout autour de nous + c'était comme de la famille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0320"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0480",
+          "begin": 1400987,
+          "end": 1403149,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0321",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "X on faisait des repas XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0321"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0481",
+          "begin": 1400987,
+          "end": 1403149,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0321",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "comprenez + pour faire un dossier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0321"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0482",
+          "begin": 1403149,
+          "end": 1404342,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0322",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0322"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0483",
+          "begin": 1403149,
+          "end": 1404342,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0322",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et maintenant il ne travaille plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0322"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0484",
+          "begin": 1404342,
+          "end": 1405637,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0323",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh oui oh oui oh la la mon Dieu"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0323"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0485",
+          "begin": 1405637,
+          "end": 1407461,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0324",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "quand il a eu le logement XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0324"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0486",
+          "begin": 1405637,
+          "end": 1407461,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0324",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "nous restions en relation"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0324"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0487",
+          "begin": 1407461,
+          "end": 1409264,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0325",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et et pourquoi ça a changé: à votre avis euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0325"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0488",
+          "begin": 1409264,
+          "end": 1413161,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0326",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "parce que c'était plus la même + puis les gens vivent davantage chez eux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0326"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0489",
+          "begin": 1413161,
+          "end": 1413436,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0327",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0327"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0490",
+          "begin": 1413436,
+          "end": 1415429,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0328",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "maintenant c'est la télé et la voiture"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0328"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0491",
+          "begin": 1415429,
+          "end": 1416301,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0329",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ouais ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0329"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0492",
+          "begin": 1416301,
+          "end": 1420727,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "alors euh: l-la voiture + c'est ce que j'leur dis + c'est l'prolongement d'votre appartement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0493",
+          "begin": 1420727,
+          "end": 1427713,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0331",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais + mm ++ mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0331"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0494",
+          "begin": 1420727,
+          "end": 1427713,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0331",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "X ils montent là comme ils vont dans leur salon + et puis la ra- la télé oh ben: il y a telle émission alors faut pas la louper"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0331"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0495",
+          "begin": 1427713,
+          "end": 1429791,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0332",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ouais ouais + donc c'est: (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0332"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0496",
+          "begin": 1429791,
+          "end": 1437306,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0333",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ben c'est vrai XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0333"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0497",
+          "begin": 1429791,
+          "end": 1437306,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0333",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ben moi avant d'aller à l'hôpit- euh: j'allais à l'hôpital bon ben d'accord je m'occupais pas d'la télé à part le soir pour me +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0333"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0498",
+          "begin": 1437306,
+          "end": 1446238,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0334",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "extraire [les;des] idées oui bon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0334"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0499",
+          "begin": 1437306,
+          "end": 1446238,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0334",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "changer les idées hein ++ mais c'est vrai que maintenant là: j'ai pris l'habitude de regarder Derrick + c'est un petit policier qui dure pas longtemps il dure une heure"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0334"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0500",
+          "begin": 1446238,
+          "end": 1446962,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0335",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0335"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0501",
+          "begin": 1446238,
+          "end": 1446962,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0335",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "c'est un film allemand"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0335"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0502",
+          "begin": 1446962,
+          "end": 1448405,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0336",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et j'aime bien mon petit Derrick"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0336"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0503",
+          "begin": 1446962,
+          "end": 1448405,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0336",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "feuilleton allemand"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0336"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0504",
+          "begin": 1448405,
+          "end": 1449277,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0337",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0337"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0505",
+          "begin": 1448405,
+          "end": 1449277,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0337",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "[ah;ben] oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0337"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0506",
+          "begin": 1449277,
+          "end": 1457786,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0338",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "c'est un feuilleton all- oh oui j'le regardais quand euh (rires) +++ quand j'avais quinze ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0338"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0507",
+          "begin": 1449277,
+          "end": 1457786,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0338",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "vous aussi? ++ oh: ben oui moi j'aime bien Derrick parce que d'abord j-j'aime beaucoup les deux personnages hein ils sont très bien +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0338"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0508",
+          "begin": 1457786,
+          "end": 1468521,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0339",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et: bon il y a aussi comment ++ le soir alors là + il y a des: + j'ai jamais regardé Les Feux d'amour ++ parce que c'était pas: de +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0339"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0509",
+          "begin": 1468521,
+          "end": 1473666,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0340",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "c'est nul"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0340"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0510",
+          "begin": 1468521,
+          "end": 1473666,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0340",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "dans mes heures + par contre on les voyait: à l'hôpital + pour les patients + XX +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0340"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0511",
+          "begin": 1473666,
+          "end": 1485941,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0341",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + est-ce que: alors dans le dans les: différents quartiers de Saint-Ouen + donc euh: est-ce quelles sont les différences que vous voyez enfin comment vous: ++ divisez la ville pour ainsi dire?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0341"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0512",
+          "begin": 1485941,
+          "end": 1490430,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0342",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh maintenant c'est compliqué + le vieux Saint-Ouen c'est l'nouveau Saint-Ouen + c'est c'est tout neuf"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0342"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0513",
+          "begin": 1490430,
+          "end": 1491429,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0343",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'en sais rien c'est"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0343"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0514",
+          "begin": 1490430,
+          "end": 1491429,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0343",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0343"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0515",
+          "begin": 1491429,
+          "end": 1498055,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0344",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ici c'est l'vieux Saint-Ouen maintenant ++ et encore ça s'est arrangé +++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0344"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0516",
+          "begin": 1498055,
+          "end": 1504808,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0345",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "donc et le: vous dites le vieux Saint-Ouen c'est devenu le nouveau ++ pourquoi ç- le vieux Saint-Ouen + en quoi il est devenu le nouveau Saint-Ouen?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0345"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0517",
+          "begin": 1498055,
+          "end": 1504808,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0345",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "de toute façon que vous alliez dans un coin ou dans un autre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0345"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0518",
+          "begin": 1504808,
+          "end": 1510186,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0346",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "en quoi il est devenu l'vieux Saint-Ouen c'est des immeubles + qui sont bons à + à: démolir des trois quarts"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0346"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0519",
+          "begin": 1510186,
+          "end": 1510571,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0347",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0347"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0520",
+          "begin": 1510571,
+          "end": 1519376,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0348",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "vous voyez ces rues là bon ben + vous voyez une maison regardez ça rue Matthieu dimanche + X + et ben: ils ont + euh bl-bloqué toutes les fenêtres"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0348"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0521",
+          "begin": 1519376,
+          "end": 1522367,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0349",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0349"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0522",
+          "begin": 1519376,
+          "end": 1522367,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0349",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et puis il y a plus d'toiture et puis ben en face de chez moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0349"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0523",
+          "begin": 1522367,
+          "end": 1524233,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0350",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "en face de chez vous oui c'est ça voilà"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0350"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0524",
+          "begin": 1522367,
+          "end": 1524233,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0350",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'est tout XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0350"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0525",
+          "begin": 1524233,
+          "end": 1527559,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0351",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais + ouais ouais + mm +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0351"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0526",
+          "begin": 1524233,
+          "end": 1527559,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0351",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh la la c'est dans un état pas possible"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0351"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0527",
+          "begin": 1527559,
+          "end": 1531287,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0352",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + donc il y a X pour vous il y a + comme deux parties d'la ville:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0352"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0528",
+          "begin": 1531287,
+          "end": 1538569,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0353",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "c'est divisé en deux? + ouais ++ mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0353"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0529",
+          "begin": 1531287,
+          "end": 1538569,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0353",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh ben oui avant c'était l'vieux Saint-Ouen parce que c'était + c'était l'Saint-Ouen du début + où il y a l'église il y avait un cimetière autour puis des maisons"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0353"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0530",
+          "begin": 1538569,
+          "end": 1538929,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0354",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0354"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0531",
+          "begin": 1538929,
+          "end": 1540837,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0355",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "parce que ici c'étaient les champs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0355"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0532",
+          "begin": 1540837,
+          "end": 1543655,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0356",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0356"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0533",
+          "begin": 1540837,
+          "end": 1543655,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0356",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et l'église du vieux Saint-Ouen elle est nouvelle?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0356"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0534",
+          "begin": 1543655,
+          "end": 1548271,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0357",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "elle a été: construite + ah: elle a été XX euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0357"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0535",
+          "begin": 1543655,
+          "end": 1548271,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0357",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oui mais elle vient [d'un;de] + douze ou treize cents elle a été remis en état"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0357"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0536",
+          "begin": 1548271,
+          "end": 1553332,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0358",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oh oui euh: + XX + oui + oui treize quatorze"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0358"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0537",
+          "begin": 1548271,
+          "end": 1553332,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0358",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "elle est du: treizième ou quatorzième siècle"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0358"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0538",
+          "begin": 1553332,
+          "end": 1554669,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0359",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "elle a été finie au quinzième"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0359"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0539",
+          "begin": 1553332,
+          "end": 1554669,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0359",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "qu'est-ce que j'la"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0359"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0540",
+          "begin": 1554669,
+          "end": 1560665,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0360",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et alors X + c'est que: Isabeau d'Bavière + elle avait un jardin ici"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0360"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0541",
+          "begin": 1554669,
+          "end": 1560665,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0360",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "XX je l'ai connue moche et je l'aime pas cette église ++ elle est triste"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0360"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0542",
+          "begin": 1560665,
+          "end": 1562108,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0361",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ben c'est les c'est la première hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0361"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0543",
+          "begin": 1562108,
+          "end": 1563868,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0362",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "c'est la première elle:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0362"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0544",
+          "begin": 1562108,
+          "end": 1563868,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0362",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "elle avait un jardin immense"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0362"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0545",
+          "begin": 1563868,
+          "end": 1566009,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0363",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'me sens X mieux à celle de Garibaldi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0363"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0546",
+          "begin": 1563868,
+          "end": 1566009,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0363",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et entouré d'murs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0363"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0547",
+          "begin": 1566009,
+          "end": 1570139,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0364",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah mais c'est pas c'est pas pareil hein (brouhaha)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0364"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0548",
+          "begin": 1566009,
+          "end": 1570139,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0364",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "ah oui mais attendez l'autre elle est récente hein elle date de mille neuf cent ou j'sais pas combien celle-là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0364"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0549",
+          "begin": 1570139,
+          "end": 1570693,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "(brouhaha) ah oui oui oui oui le le"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0550",
+          "begin": 1570693,
+          "end": 1577954,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0366",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il y a encore + un mur qu'est: + grand comme + comme la table là qu'est + épais comme ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0366"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0551",
+          "begin": 1570693,
+          "end": 1577954,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0366",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "par contre elle est classée monument historique la nôtre hein + parce qu'elle a été faite en plusieurs euh étapes X +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0366"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0552",
+          "begin": 1577954,
+          "end": 1585828,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0367",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "puisque on y allait souvent avec Paul pour euh regarder la pente qu'il y a justement là + mais j'y suis pas retournée depuis tellement: ben depuis la X j'y suis pas retournée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0367"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0553",
+          "begin": 1577954,
+          "end": 1585828,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0367",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais ouais + d'accord + d'accord + ouais ouais + mm + d'accord donc c'est c'est vraiment la partie la plus ancienne: de la"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0367"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0554",
+          "begin": 1585828,
+          "end": 1587588,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0368",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "comment?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0368"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0555",
+          "begin": 1585828,
+          "end": 1587588,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0368",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "à part si à des enterrements mais: +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0368"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0556",
+          "begin": 1587588,
+          "end": 1590745,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0369",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "c'est c'est vraiment la partie la plus ancienne"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0369"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0557",
+          "begin": 1587588,
+          "end": 1590745,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0369",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "mais: là où vous: où je suis moi + c'était des champs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0369"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0558",
+          "begin": 1590745,
+          "end": 1591028,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0370",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0370"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0559",
+          "begin": 1591028,
+          "end": 1595433,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0371",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'ai un ami qui collectionne les cartes postales + il en a pas loin de deux mille hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0371"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0560",
+          "begin": 1595433,
+          "end": 1596262,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0372",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0372"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0561",
+          "begin": 1596262,
+          "end": 1602338,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0373",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "eh bien puis alors il écrit des: il écrivait dans l'journal monsieur Béranger + il écrivait faisait un article tous les:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0373"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0562",
+          "begin": 1602338,
+          "end": 1603294,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0374",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "tous les deux mois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0374"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0563",
+          "begin": 1602338,
+          "end": 1603294,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0374",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "toutes les semaines"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0374"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0564",
+          "begin": 1603294,
+          "end": 1604788,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0375",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "c'est aux arch- c'est les archives"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0375"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0565",
+          "begin": 1604788,
+          "end": 1606569,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0376",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et alors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0376"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0566",
+          "begin": 1604788,
+          "end": 1606569,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0376",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "toutes les semaines ou tous les deux mois? +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0376"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0567",
+          "begin": 1606569,
+          "end": 1607525,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0377",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "tous les deux mois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0377"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0568",
+          "begin": 1606569,
+          "end": 1607525,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0377",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "tous les mois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0377"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0569",
+          "begin": 1607525,
+          "end": 1608037,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0378",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "tous les mois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0378"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0570",
+          "begin": 1608037,
+          "end": 1608612,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0379",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "tous les mois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0379"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0571",
+          "begin": 1608612,
+          "end": 1609695,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0380",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "tous les deux mois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0380"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0572",
+          "begin": 1608612,
+          "end": 1609695,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0380",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "tous les deux mois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0380"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0573",
+          "begin": 1609695,
+          "end": 1614015,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0381",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "parce qu'une fois c'était Jean Lefort + le coup d'après c'était lui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0381"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0574",
+          "begin": 1609695,
+          "end": 1614015,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0381",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui + tous les deux mois + oui oui oui + tous les deux mois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0381"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0575",
+          "begin": 1614015,
+          "end": 1619363,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0382",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et alors il avait trouvé une carte + les f- le: + euh les foins à Saint-Ouen +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0382"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0576",
+          "begin": 1619363,
+          "end": 1620425,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0383",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0383"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0577",
+          "begin": 1620425,
+          "end": 1627559,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0384",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et parce que tout ça + là où je suis moi + avant que ça soit la rue: + la rue Montmartre c'était la rue Napoléon +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0384"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0578",
+          "begin": 1627559,
+          "end": 1632852,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0385",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui (rires) + d'accord + :ouais ça a pas mal changé euh +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0385"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0579",
+          "begin": 1627559,
+          "end": 1632852,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0385",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah oui ++ ah oui oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0385"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0580",
+          "begin": 1632852,
+          "end": 1636520,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0386",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et puis après bon ben: ça s'est arrangé évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0386"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0581",
+          "begin": 1632852,
+          "end": 1636520,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0386",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "Saint-Ouen c'est un coin qui a changé hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0386"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0582",
+          "begin": 1636520,
+          "end": 1643125,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0387",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "Saint-Ouen c'était + puis alors ce qui a fait du tort à Saint-Ouen + c'est les chiffonniers + qui sont venus s'installer après la guerre de quatorze +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0387"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0583",
+          "begin": 1643125,
+          "end": 1644589,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0388",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui + mm +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0388"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0584",
+          "begin": 1644589,
+          "end": 1652717,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0389",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "alors ils ont ils: faisaient les poubelles évidemment + et puis ils avaient construit des baraquements + recouverts en tôle ondulée + il y avait des petits pavillons qu'étaient pas mal"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0389"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0585",
+          "begin": 1652717,
+          "end": 1653014,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0390",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0390"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0586",
+          "begin": 1653014,
+          "end": 1659538,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0391",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "parce que il y avait différents euh + endroits il y avait de ce côté d'la rue + de l'autre côté + et puis en allant sur euh Paris après"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0391"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0587",
+          "begin": 1659538,
+          "end": 1660769,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0392",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "vers le périphérique ça?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0392"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0588",
+          "begin": 1659538,
+          "end": 1660769,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0392",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0392"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0589",
+          "begin": 1660769,
+          "end": 1667501,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0393",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oui + c'est: avant l'périphérique c'est là ici + un peu plus loin que la: + la rue: Paul Bert là oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0393"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0590",
+          "begin": 1667501,
+          "end": 1668013,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0394",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0394"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0591",
+          "begin": 1668013,
+          "end": 1674068,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0395",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui il y a une transversale là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0395"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0592",
+          "begin": 1668013,
+          "end": 1674068,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0395",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah oui oui oui oui oui + et là alors il y avait: + tous les matins ils f- ils: faisaient ils chiffonnaient ce qu'ils X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0395"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0593",
+          "begin": 1674068,
+          "end": 1679023,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ++ mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0594",
+          "begin": 1674068,
+          "end": 1679023,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ils renversaient les poubelles sur une toile ils triaient + les métaux le: les chiffons"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0595",
+          "begin": 1679023,
+          "end": 1683999,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0397",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "les bouteilles + quand euh: j'me suis mariée + mon mari était marchand d'bouteilles d'occasion"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0397"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0596",
+          "begin": 1679023,
+          "end": 1683999,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0397",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "[ben;ah] il y en a qui se sont enrichis n'empêche en faisant les poubelles"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0397"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0597",
+          "begin": 1683999,
+          "end": 1691783,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0398",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais + ah ouais ++ c'est le recyclage de l'époque en fait c'était euh + maintenant on a des: (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0398"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0598",
+          "begin": 1683999,
+          "end": 1691783,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0398",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "alors euh ça aussi ça a disparu + mais: + eh ben là on les tri- + on les triait puis c'était revendu"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0398"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0599",
+          "begin": 1691783,
+          "end": 1695151,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0399",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "des: conteneurs + ouais ouais (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0399"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0600",
+          "begin": 1691783,
+          "end": 1695151,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0399",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "maintenant c'est les containers"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0399"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0601",
+          "begin": 1695151,
+          "end": 1697165,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0400",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "c'est l'même principe en: un peu plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0400"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0602",
+          "begin": 1695151,
+          "end": 1697165,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0400",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "[containers;conteneurs] au détail"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0400"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0603",
+          "begin": 1697165,
+          "end": 1698989,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0401",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "organisé peut-être (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0401"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0604",
+          "begin": 1697165,
+          "end": 1698989,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0401",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui voilà c'est ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0401"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0605",
+          "begin": 1698989,
+          "end": 1706931,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0402",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "eh oui mais: ++ ah non là c'est pas pareil X fallait les trier les clas- + classer ah oui + ah:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0402"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0606",
+          "begin": 1698989,
+          "end": 1706931,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0402",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "containers les bennes à papier les bennes à:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0402"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0607",
+          "begin": 1706931,
+          "end": 1708585,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0403",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "les bouteilles à champagne que vous faisiez vous?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0403"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0608",
+          "begin": 1708585,
+          "end": 1712905,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0404",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "tout on faisait champagne + oh oui l'vin Bordeaux Bourgogne + Alsace +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0404"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0609",
+          "begin": 1708585,
+          "end": 1712905,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0404",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "le vin? ++ XXX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0404"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0610",
+          "begin": 1712905,
+          "end": 1717796,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0405",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "mais: c'était surtout les: champagnes + on en faisait facilement trois wagons par semaine hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0405"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0611",
+          "begin": 1717796,
+          "end": 1719345,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0406",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah quand même hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0406"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0612",
+          "begin": 1717796,
+          "end": 1719345,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0406",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ah oui + mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0406"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0613",
+          "begin": 1719345,
+          "end": 1720703,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0407",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah oui +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0407"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0614",
+          "begin": 1720703,
+          "end": 1728599,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0408",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "alors pour vous déplacer euh dans Saint-Ouen ou euh enfin + quand vous vous déplacez comment vous faites? quelles sont vos + habitudes?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0408"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0615",
+          "begin": 1728599,
+          "end": 1731502,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0409",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ben maintenant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0409"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0616",
+          "begin": 1728599,
+          "end": 1731502,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0409",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben ça s'est amélioré quand même au point d'vue transports"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0409"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0617",
+          "begin": 1731502,
+          "end": 1738467,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0410",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "parce que il y avait rien en bas d'chez moi ++ il y a quand même le bus il y a un arrêt d'bus maintenant deux + deux bus + cent-soixante-X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0410"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0618",
+          "begin": 1731502,
+          "end": 1738467,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0410",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "[on a;il y a] quand même le bus là oui on a deux là + et puis ils ont: ++ et puis euh:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0410"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0619",
+          "begin": 1738467,
+          "end": 1740608,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0411",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "moi j'trouve que ça s'est pas amélioré du tout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0411"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0620",
+          "begin": 1738467,
+          "end": 1740608,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0411",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "euh: + on est à une demi-heure de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0411"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0621",
+          "begin": 1740608,
+          "end": 1741966,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0412",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah ouais? pourquoi vous dites ça?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0412"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0622",
+          "begin": 1741966,
+          "end": 1746540,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0413",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "pourquoi parce que j'habitais rue Montmartre + il y avait le J et l'cinquante-quatre +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0413"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0623",
+          "begin": 1746540,
+          "end": 1747111,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0414",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0414"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0624",
+          "begin": 1747111,
+          "end": 1758117,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0415",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "qui passaient maintenant il y a que l'cent trente-sept + le J il allait de la mairie d'Saint-Ouen + à la place Saint-Michel + et l'autre le cinquante-quatre il allait d'la Trinité + à Enghien-les-bains +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0415"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0625",
+          "begin": 1758117,
+          "end": 1764489,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0416",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah ouais à Enghien +++ ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0416"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0626",
+          "begin": 1758117,
+          "end": 1764489,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0416",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et l'été c'était agréable comme tout parce qu'ils mettaient une baladeuse + derrière le tramway c'étaient des un tramway celui-là +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0416"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0627",
+          "begin": 1764489,
+          "end": 1768703,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0417",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et alors il vous emmenait au lac d'Enghien + ah c'était agréable ça faisait une belle promenade (rires Marc)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0417"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0628",
+          "begin": 1768703,
+          "end": 1769553,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0418",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "ben ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0418"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0629",
+          "begin": 1768703,
+          "end": 1769553,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0418",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ben c'est vrai que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0418"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0630",
+          "begin": 1769553,
+          "end": 1773344,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0419",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais c'est sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0419"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0631",
+          "begin": 1769553,
+          "end": 1773344,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0419",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et puis là puis là bon là + vous voulez aller à: l'hôpital Bichat"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0419"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0632",
+          "begin": 1773344,
+          "end": 1777347,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0420",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ben XX + ah ben non ça: + ça XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0420"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0633",
+          "begin": 1773344,
+          "end": 1777347,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0420",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il y a rien du tout + faut y aller à pieds + il y avait deux bus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0420"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0634",
+          "begin": 1777347,
+          "end": 1779255,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0421",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "non c'est sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0421"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0635",
+          "begin": 1777347,
+          "end": 1779255,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0421",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il y avait l'B W et l'quarante-deux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0421"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0636",
+          "begin": 1779255,
+          "end": 1780770,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0422",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "on est mal desservis malgré tout mais enfin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0422"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0637",
+          "begin": 1779255,
+          "end": 1780770,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0422",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + ouais ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0422"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0638",
+          "begin": 1780770,
+          "end": 1788560,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0423",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "le B W il allait d'la mairie d'Saint-Ouen à la Madeleine + et l'autre le quarante-deux c'est l'cent-quarante-deux il va à Stains + mais X il passe plus par là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0423"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0639",
+          "begin": 1788560,
+          "end": 1789601,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0424",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + ouais ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0424"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0640",
+          "begin": 1789601,
+          "end": 1791662,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0425",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "eh non il y a plus rien qui passe [là;par]"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0425"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0641",
+          "begin": 1789601,
+          "end": 1791662,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0425",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "moi j'connais pas beaucoup les bus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0425"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0642",
+          "begin": 1791662,
+          "end": 1800489,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0426",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "à part le cent soixante-quatre le cent: soixante-quatorze cent soixante-treize"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0426"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0643",
+          "begin": 1791662,
+          "end": 1800489,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0426",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'ai été: hospitalisée à Bichat: + pendant: cinq semaines j'avais une voisine qui venait m'voir + mais à pieds"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0426"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0644",
+          "begin": 1800489,
+          "end": 1800853,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0427",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0427"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0645",
+          "begin": 1800853,
+          "end": 1802105,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0428",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ben: ça: je sais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0428"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0646",
+          "begin": 1800853,
+          "end": 1802105,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0428",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "alors oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0428"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0647",
+          "begin": 1802105,
+          "end": 1828725,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0429",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ça tombait bien parce que c'était en été + alors elle rencontre une amie + qui lui dit \"ah dis-donc j'vois que vous revenez d'vacances qu'est-ce que vous avez bonne mine\" (rires Marc) + elle \"oh oui + oh oui c'était bien? oh c'était du: tonnerre\" + alors elle lui dit \"donnez-moi l'adresse j'irai d'votre part\" + elle dit \"c'est pas facile hein + ah bon c'est un club\"? + ben c'est-à-dire euh: oui si on veut + alors elle lui dit \"c'est l'hôpital Bichat\" (rires collectifs)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0429"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0648",
+          "begin": 1828725,
+          "end": 1840344,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0430",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + hum: + alors pour les: les écoles + alors ça + doit faire un petit moment euh depuis vos: années d'école mais euh + ça s'était passé bien ou vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0430"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0649",
+          "begin": 1840344,
+          "end": 1844516,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0431",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh oui X les écoles c'est toujours été bien à Saint-Ouen + il y en avait une là à côté"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0431"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0650",
+          "begin": 1844516,
+          "end": 1848223,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0432",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0432"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0651",
+          "begin": 1844516,
+          "end": 1848223,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0432",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "elle y est toujours + mais on entrait par là la rue Blanqui là +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0432"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0652",
+          "begin": 1848223,
+          "end": 1848756,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0433",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0433"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0653",
+          "begin": 1848756,
+          "end": 1857159,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0434",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ouais + et puis ils en ont reconstruit ils ont cons- alors c'est plus la rue Blanqui + c'est la rue euh le X c'est plus l'école Blanqui c'est l'école Joséphine Baker"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0434"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0654",
+          "begin": 1857159,
+          "end": 1858154,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0435",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0435"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0655",
+          "begin": 1857159,
+          "end": 1858154,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0435",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "collège"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0435"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0656",
+          "begin": 1858154,
+          "end": 1861903,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0436",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "collège là oui + savez pourquoi? ++ non ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0436"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0657",
+          "begin": 1858154,
+          "end": 1861903,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0436",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "collège d'accord ++ ouais + non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0436"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0658",
+          "begin": 1861903,
+          "end": 1875088,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0437",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "eh ben moi ++ j'avais un client chiffonnier + qui faisait l'avenue Michelet ++ et lui c'était un X il était: + très très gentil + il venait tous les matins il avait dix douze bouteilles qu'il nous + qu'on lui payait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0437"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0659",
+          "begin": 1875088,
+          "end": 1875621,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0438",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0438"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0660",
+          "begin": 1875621,
+          "end": 1887960,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0439",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et puis: j'sais pas quel XX + depuis que De Gaulle était au pouvoir il couchait dehors + pourquoi + quel est le: + que qu'est-ce qui fait que + la venue de De Gaulle au pouvoir + l'a fait quitter son appartement je l'ai jamais su +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0439"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0661",
+          "begin": 1887960,
+          "end": 1890080,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0440",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il faisait les poubelles + avenue Michelet"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0440"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0662",
+          "begin": 1887960,
+          "end": 1890080,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0440",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui ça c'est à approfondir"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0440"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0663",
+          "begin": 1890080,
+          "end": 1894413,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0441",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0441"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0664",
+          "begin": 1890080,
+          "end": 1894413,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0441",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et avenue Michelet il rencon- il trouve un paquet comme ça ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0441"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0665",
+          "begin": 1894413,
+          "end": 1900087,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0442",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "bien ficelé euh + ent- dans du papier + et les chiffonniers autrefois ils avaient des crochets"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0442"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0666",
+          "begin": 1900087,
+          "end": 1900637,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0443",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0443"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0667",
+          "begin": 1900637,
+          "end": 1912891,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0444",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ils donnaient un coup d'crochet pour + et là + il a pas osé + il a ramassé l'paquet + il est entré dans l'café il dit \"dites-donc vous voyez ce que j'viens d'trouver\" + (chacun, allez on) va voir ce qu'il y a dedans hein c'était un nouveau-né +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0444"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0668",
+          "begin": 1912891,
+          "end": 1913741,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0445",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ça bougeait pas?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0445"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0669",
+          "begin": 1912891,
+          "end": 1913741,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0445",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "oh la vache"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0445"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0670",
+          "begin": 1913741,
+          "end": 1915802,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0446",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "quand il l'a trouvé ça bougeait pas?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0446"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0671",
+          "begin": 1913741,
+          "end": 1915802,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0446",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui + oh la la"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0446"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0672",
+          "begin": 1915802,
+          "end": 1921201,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0447",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "avec XX commençait à étouffer ++ alors + c'était un nouveau-né"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0447"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0673",
+          "begin": 1915802,
+          "end": 1921201,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0447",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui il commençait à s'étouffer ++ ah ouais un petit garçon?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0447"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0674",
+          "begin": 1921201,
+          "end": 1925754,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0448",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il était: + venu au monde (brouhaha)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0448"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0675",
+          "begin": 1921201,
+          "end": 1925754,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0448",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "X heureusement qu'il a pas euh: + utilisé son: crochet"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0448"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0676",
+          "begin": 1925754,
+          "end": 1929164,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0449",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "alors euh bon euh: ils ont fait + il est parti à la DDASS +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0449"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0677",
+          "begin": 1929164,
+          "end": 1929757,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0450",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0450"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0678",
+          "begin": 1929757,
+          "end": 1932575,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0451",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et là Joséphine Baker elle l'a adopté +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0451"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0679",
+          "begin": 1932575,
+          "end": 1939772,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0452",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah d'accord + ah oui + ah c'est une belle histoire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0452"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0680",
+          "begin": 1932575,
+          "end": 1939772,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0452",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "elle l'a adopté + et elle l'a emmené aux Milandes là avec c'était la famille euh tri- + multicolore j'sais pas comment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0452"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0681",
+          "begin": 1939772,
+          "end": 1941913,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0453",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "elle avait des enfants de toutes les religions"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0453"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0682",
+          "begin": 1939772,
+          "end": 1941913,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0453",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah oui ça elle a: elle avait avait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0453"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0683",
+          "begin": 1941913,
+          "end": 1945429,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0454",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et elle l'avait pris comme parrain + (rires Marc) il était parrain"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0454"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0684",
+          "begin": 1945429,
+          "end": 1955948,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0455",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord ++ et et co- + comment elle a eu vent de ça Joséphine Baker?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0455"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0685",
+          "begin": 1945429,
+          "end": 1955948,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0455",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "puis sa: son habilleuse était marraine + tous ceux qui ++ eh ben il a bien fallu parce que + lui X + de: il a fallu qu'il donne son: n- + son nom et tout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0455"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0686",
+          "begin": 1955948,
+          "end": 1960738,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0456",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais ouais ++ d'accord + mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0456"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0687",
+          "begin": 1955948,
+          "end": 1960738,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0456",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et elle a demandé qui l'avait trouvé + et on lui a donné le nom d'ce:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0456"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0688",
+          "begin": 1960738,
+          "end": 1961191,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0457",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "ce monsieur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0457"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0689",
+          "begin": 1961191,
+          "end": 1962845,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0458",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "de du monsieur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0458"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0690",
+          "begin": 1961191,
+          "end": 1962845,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0458",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "[oui;du] monsieur oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0458"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0691",
+          "begin": 1962845,
+          "end": 1967440,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0459",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui puis ç'avait été médiatisé ça c'était passé à la radio"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0459"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0692",
+          "begin": 1962845,
+          "end": 1967440,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0459",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oui: + et alors mais: il s'est: +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0459"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0693",
+          "begin": 1967440,
+          "end": 1973766,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0460",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il avait pas beaucoup d'argent j'vous l'dis hein + eh ben il s'était privé pour acheter un couvert en argent + à son filleul"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0460"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0694",
+          "begin": 1973766,
+          "end": 1975992,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0461",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ben voyez hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0461"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0695",
+          "begin": 1973766,
+          "end": 1975992,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0461",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et il l'avait acheté chez Pêchoux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0461"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0696",
+          "begin": 1975992,
+          "end": 1976800,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0462",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0462"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0697",
+          "begin": 1976800,
+          "end": 1978328,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0463",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ça c'était d'la belle argenterie X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0463"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0698",
+          "begin": 1976800,
+          "end": 1978328,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0463",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0463"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0699",
+          "begin": 1978328,
+          "end": 1980109,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0464",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "X voilà voilà voilà voilà + ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0464"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0700",
+          "begin": 1978328,
+          "end": 1980109,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0464",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0464"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0701",
+          "begin": 1980109,
+          "end": 1980790,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0465",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah c'est sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0465"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0702",
+          "begin": 1980790,
+          "end": 1983016,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0466",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et alors il a été au baptême aux Milandes là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0466"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0703",
+          "begin": 1980790,
+          "end": 1983016,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0466",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "vous l'connaissez bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0466"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0704",
+          "begin": 1983016,
+          "end": 1983528,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0467",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0467"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0705",
+          "begin": 1983528,
+          "end": 1993941,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0468",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et puis: euh il était un peu décu parce que + elle les a ramenés à Paris puis elle dit à son habilleuse + \"ben vous viendrez passer une quinzaine au château\" ++ mais lui elle l'avait pas invité +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0468"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0706",
+          "begin": 1993941,
+          "end": 1994470,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0469",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0469"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0707",
+          "begin": 1994470,
+          "end": 2000889,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0470",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "X oui mais ça a pas les mêmes relations + vous vous êtes là qu'occasionnellement + son habilleuse elle la voit tous les jours ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0470"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0708",
+          "begin": 2000889,
+          "end": 2004067,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0471",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'est vrai ++ ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0471"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0709",
+          "begin": 2000889,
+          "end": 2004067,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0471",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + ouais ouais bien sûr ouais + ouais ouais +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0471"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0710",
+          "begin": 2004067,
+          "end": 2007710,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0472",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "alors ils ont donné le nom ++ Joséphine Baker"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0472"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0711",
+          "begin": 2004067,
+          "end": 2007710,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0472",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "une belle histoire (rires) j'savais pas ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0472"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0712",
+          "begin": 2007710,
+          "end": 2012373,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0473",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "j'apprends plein d'choses en fait dans ces: dans ces entretiens ouais c'est fascinant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0473"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0713",
+          "begin": 2007710,
+          "end": 2012373,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0473",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ben oui + ben oui mais c'est sûr hein + c'est sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0473"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0714",
+          "begin": 2012373,
+          "end": 2017307,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0474",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "à chaque fois il y a quelque chose + ouais + ouais ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0474"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0715",
+          "begin": 2012373,
+          "end": 2017307,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0474",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "des questions euh: + c'est ça les personnes âgées + il y a d'belles choses hein +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0474"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0716",
+          "begin": 2017307,
+          "end": 2020548,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0475",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et vous madame Pollet votre: votre école: ça s-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0475"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0717",
+          "begin": 2020548,
+          "end": 2024762,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0476",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ça s'est bien passé dans la Nièvre là ? + ouais + vous avez de:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0476"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0718",
+          "begin": 2020548,
+          "end": 2024762,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0476",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ben non moi j'étais à l'école dans la Nièvre + les monts d'Morvan vraiment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0476"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0719",
+          "begin": 2024762,
+          "end": 2027538,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0477",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "vraiment les monts du Morvan"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0477"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0720",
+          "begin": 2024762,
+          "end": 2027538,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0477",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "XXX (rires Marc)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0477"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0721",
+          "begin": 2027538,
+          "end": 2033720,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0478",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "euh: je suis venue j'avais neuf ans + mais une grand-mère à: + Champigny-sur-Marne"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0478"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0722",
+          "begin": 2033720,
+          "end": 2039902,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0479",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0479"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0723",
+          "begin": 2033720,
+          "end": 2039902,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0479",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais comme c'était en pleine guerre je n'suis pas restée longtemps parce que moi: descendre tout l'temps à la cave: les bombardements +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0479"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0724",
+          "begin": 2039902,
+          "end": 2040731,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0480",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0480"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0725",
+          "begin": 2040731,
+          "end": 2048817,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0481",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "très peu pour moi j'ai préféré retourner chez ma mère (rires) à la campagne j'étais plus tran- plus tranquille + et puis donc euh non: +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0481"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0726",
+          "begin": 2048817,
+          "end": 2056945,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0482",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben j'ai fait mes écoles: dans l'Morvan"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0482"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0727",
+          "begin": 2048817,
+          "end": 2056945,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0482",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ça s'est bien passé + est-ce que vous vous souvenez d'une d'un enseignant qui vous a marquée euh? +++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0482"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0728",
+          "begin": 2056945,
+          "end": 2063529,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0483",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "madame Legris elle s'appelait + euh elle m'a elle m'a fait pra-pratiquement toutes mes classes + de la maternelle à:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0483"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0729",
+          "begin": 2063529,
+          "end": 2067405,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0484",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il y avait trois écoles quand même dans ce bourg c'était un bourg important"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0484"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0730",
+          "begin": 2063529,
+          "end": 2067405,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0484",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ++ ouais ouais +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0484"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0731",
+          "begin": 2067405,
+          "end": 2068679,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0485",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "où est enterré Paul d'ailleurs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0485"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0732",
+          "begin": 2068679,
+          "end": 2069470,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0486",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0486"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0733",
+          "begin": 2069470,
+          "end": 2074615,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0487",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "cimetière on avait: boulanger épicier euh mairie: enfin tout quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0487"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0734",
+          "begin": 2074615,
+          "end": 2076714,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0488",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ++ ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0488"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0735",
+          "begin": 2074615,
+          "end": 2076714,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0488",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "c'était vraiment un bourg important"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0488"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0736",
+          "begin": 2076714,
+          "end": 2079320,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0489",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "maintenant dans: j'y suis allée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0489"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0737",
+          "begin": 2076714,
+          "end": 2079320,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0489",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et vous êtes dans le Loiret non? +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0489"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0738",
+          "begin": 2079320,
+          "end": 2080107,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0490",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "non dans l'Morvan"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0490"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0739",
+          "begin": 2079320,
+          "end": 2080107,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0490",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "dans la Nièvre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0490"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0740",
+          "begin": 2080107,
+          "end": 2083052,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "dans la ah dans les monts d'Morvan + ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0741",
+          "begin": 2080107,
+          "end": 2083052,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "cinquante-huit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0742",
+          "begin": 2083052,
+          "end": 2086653,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0492",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'y suis allée donc lundi dernier (brouhaha)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0492"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0743",
+          "begin": 2083052,
+          "end": 2086653,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0492",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "mais ça a dû changer hein depuis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0492"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0744",
+          "begin": 2086653,
+          "end": 2087613,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0493",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "hein?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0493"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0745",
+          "begin": 2086653,
+          "end": 2087613,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0493",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah il y a plus rien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0493"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0746",
+          "begin": 2087613,
+          "end": 2089860,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0494",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah ben oui hein parce que: X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0494"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0747",
+          "begin": 2087613,
+          "end": 2089860,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0494",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'est l'pays à Mitterrand la Nièvre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0494"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0748",
+          "begin": 2089860,
+          "end": 2090950,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0495",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oui tout à fait XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0495"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0749",
+          "begin": 2090950,
+          "end": 2092333,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0496",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui c'est pour ça que vous vous êtes:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0496"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0750",
+          "begin": 2092333,
+          "end": 2093241,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0497",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oui + oui oui ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0497"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0751",
+          "begin": 2093241,
+          "end": 2095076,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0498",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "vous l'avez connu non?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0498"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0752",
+          "begin": 2093241,
+          "end": 2095076,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0498",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "+ j'étais très bien avec Mitterrand"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0498"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0753",
+          "begin": 2095076,
+          "end": 2099998,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0499",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mes parents étaient très bien il venait chez nous euh: comme moi j'étais reçue en [hiver;X] euh: chez Mitterrand"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0499"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0754",
+          "begin": 2099998,
+          "end": 2100818,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0500",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'ai été euh ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0500"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0755",
+          "begin": 2100818,
+          "end": 2102529,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0501",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et c'est pour ça que: ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0501"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0756",
+          "begin": 2102529,
+          "end": 2108638,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0502",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il ét- on déjeunait au même: restaurant le vieux Morvan + à: Chateau-Chinon + il était maire de Chateau-Chinon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0502"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0757",
+          "begin": 2102529,
+          "end": 2108638,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0502",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'ai bien regretté euh Mitterrand euh ++ parce que certainement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0502"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0758",
+          "begin": 2108638,
+          "end": 2109869,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0503",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui il était maire oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0503"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0759",
+          "begin": 2108638,
+          "end": 2109869,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0503",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais c'est ça ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0503"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0760",
+          "begin": 2109869,
+          "end": 2117955,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0504",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "je l'ai vu là + on a parlé ensemble ++ oui ++ Chateau-Chinon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0504"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0761",
+          "begin": 2109869,
+          "end": 2117955,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0504",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il a son musée là-bas [à Chinon;chez nous] + il y a l'musée là + de tout: de beaucoup d'objets qu'il ramenait de: + qu'on lui offrait quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0504"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0762",
+          "begin": 2117955,
+          "end": 2120739,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0505",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "mais il paraît que sa femme a mis en vente ses euh ses: ses [affaires;X]"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0505"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0763",
+          "begin": 2117955,
+          "end": 2120739,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0505",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais c'est ça + mm + mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0505"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0764",
+          "begin": 2120739,
+          "end": 2123049,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0506",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "(brouhaha) elle a vendu tous ses vêtements"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0506"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0765",
+          "begin": 2120739,
+          "end": 2123049,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0506",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui ça y est c'est vendu hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0506"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0766",
+          "begin": 2123049,
+          "end": 2126062,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0507",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "(brouhaha) XXX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0507"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0767",
+          "begin": 2123049,
+          "end": 2126062,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0507",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais ça s'est vendu cher hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0507"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0768",
+          "begin": 2126062,
+          "end": 2127843,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0508",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "au moins trente mille costumes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0508"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0769",
+          "begin": 2126062,
+          "end": 2127843,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0508",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui hein ça fait XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0508"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0770",
+          "begin": 2127843,
+          "end": 2130454,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0509",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "(brouhaha) enfin c'est pour son association c'est pour euh:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0509"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0771",
+          "begin": 2127843,
+          "end": 2130454,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0509",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui oui oui + oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0509"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0772",
+          "begin": 2130454,
+          "end": 2131897,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0510",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + oui c'est ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0510"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0773",
+          "begin": 2130454,
+          "end": 2131897,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0510",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "c'est pas pour elle elle a pas besoin de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0510"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0774",
+          "begin": 2131897,
+          "end": 2135392,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0511",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "X c'est pas pour elle bien sûr hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0511"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0775",
+          "begin": 2131897,
+          "end": 2135392,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0511",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "mais moi quand je l'ai vu il était pas président de la République +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0511"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0776",
+          "begin": 2135392,
+          "end": 2138951,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0512",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et j'me rappelle: X et j'av- euh oui ben il était:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0512"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0777",
+          "begin": 2135392,
+          "end": 2138951,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0512",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "il devait être ministre non?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0512"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0778",
+          "begin": 2138951,
+          "end": 2142848,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0513",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "déjà + euh: député: maire de son patelin X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0513"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0779",
+          "begin": 2138951,
+          "end": 2142848,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0513",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui il a été pas mal ministre hein + oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0513"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0780",
+          "begin": 2142848,
+          "end": 2150447,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0514",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'avais acheté une carte postale + petite X deviendra grande + alors je lui dis vous pouvez me signer une car- ah ben oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0514"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0781",
+          "begin": 2142848,
+          "end": 2150447,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0514",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais Chateau-Chinon XX à partir du moment que: Mitterrand est: ++ n'a plus été président"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0514"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0782",
+          "begin": 2150447,
+          "end": 2157010,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0515",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'dis + avant + lisez ce qu'il y a dessus + j'dis j'vous souhaite la même chose ah ben ça c'est gentil (rires Marc)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0515"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0783",
+          "begin": 2157010,
+          "end": 2160611,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0516",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "il était ministre sous De Gaulle (brouhaha)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0516"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0784",
+          "begin": 2157010,
+          "end": 2160611,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0516",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "vous êtes très bien X (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0516"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0785",
+          "begin": 2160611,
+          "end": 2164698,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0517",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais moi je sais j'ai beau-beaucoup regretté comme comme monsieur Lefort d'ailleurs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0517"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0786",
+          "begin": 2160611,
+          "end": 2164698,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0517",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "toutes les deux +++ mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0517"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0787",
+          "begin": 2164698,
+          "end": 2167643,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0518",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "comme disent les bons copains + hein ben voilà ben voilà"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0518"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0788",
+          "begin": 2164698,
+          "end": 2167643,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0518",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ouais + ça n'a rien à voir hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0518"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0789",
+          "begin": 2167643,
+          "end": 2169107,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0519",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "mais il est décédé ce monsieur Lefort?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0519"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0790",
+          "begin": 2167643,
+          "end": 2169107,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0519",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben voilà"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0519"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0791",
+          "begin": 2169107,
+          "end": 2170317,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0520",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah: il y a longtemps"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0520"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0792",
+          "begin": 2169107,
+          "end": 2170317,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0520",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0520"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0793",
+          "begin": 2170317,
+          "end": 2171591,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0521",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oh ben oui ça fait un moment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0521"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0794",
+          "begin": 2170317,
+          "end": 2171591,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0521",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "Fernand Lefort euh:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0521"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0795",
+          "begin": 2171591,
+          "end": 2172505,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0522",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "quarante ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0522"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0796",
+          "begin": 2172505,
+          "end": 2176626,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0523",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oh c'est il y a pas des masses d'années quand même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0523"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0797",
+          "begin": 2172505,
+          "end": 2176626,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0523",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "cinquante-huit et il a dû décéder vers dans les années soixante"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0523"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0798",
+          "begin": 2176626,
+          "end": 2179042,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0524",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh oui il y a une quarantaine d'années oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0524"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0799",
+          "begin": 2176626,
+          "end": 2179042,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0524",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "à peu près +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0524"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0800",
+          "begin": 2179042,
+          "end": 2179564,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0525",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "tant que ça?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0525"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0801",
+          "begin": 2179042,
+          "end": 2179564,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0525",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "X après"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0525"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0802",
+          "begin": 2179564,
+          "end": 2181162,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0526",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0526"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0803",
+          "begin": 2179564,
+          "end": 2181162,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0526",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "oh oui oui oui +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0526"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0804",
+          "begin": 2181162,
+          "end": 2183684,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0527",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "dans les années soixante après c'était Paulette après"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0527"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0805",
+          "begin": 2181162,
+          "end": 2183684,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0527",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "mm + ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0527"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0806",
+          "begin": 2183684,
+          "end": 2184831,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0528",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "oui oui + oui +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0528"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0807",
+          "begin": 2184831,
+          "end": 2189342,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0529",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "pas tant que ça quand même ++ il y a pas oh non:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0529"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0808",
+          "begin": 2184831,
+          "end": 2189342,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0529",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "Paulette elle a fait + trois mandatures ++ ah si ah si"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0529"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0809",
+          "begin": 2189342,
+          "end": 2192456,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0530",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il y a pas quarante ans qu- oh non:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0530"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0810",
+          "begin": 2189342,
+          "end": 2192456,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0530",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "euh: peut-être pas soi-soixante cinq? +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0530"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0811",
+          "begin": 2192456,
+          "end": 2201963,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0531",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "dans les années soixante quand même hein monsieur Lefort ++ oh oui oui + oui oui + oui ++ oui oui + oui + puis après c'est:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0531"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0812",
+          "begin": 2192456,
+          "end": 2201963,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0531",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oui mais il y a au moins trente ans quand même hein + parce que son fils il a t- soixante-quatre ans ++ et: il était déjà marié"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0531"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0813",
+          "begin": 2201963,
+          "end": 2206854,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0532",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "après c'était Paulette"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0532"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0814",
+          "begin": 2201963,
+          "end": 2206854,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0532",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "parce que moi c'ét- j'ai connu euh donc euh monsieur Lefort puisque ils étaient copains vers enfin copains"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0532"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0815",
+          "begin": 2206854,
+          "end": 2209037,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0533",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "je ne sais pas s'ils étaient vraiment copains mais enfin [bref;bon]"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0533"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0816",
+          "begin": 2206854,
+          "end": 2209037,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0533",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "ben ils étaient du même parti X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0533"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0817",
+          "begin": 2209037,
+          "end": 2211770,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0534",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "il a inauguré pas mal de bâtiments en cinquante-huit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0534"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0818",
+          "begin": 2209037,
+          "end": 2211770,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0534",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "avec monsieur: Mitterrand"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0534"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0819",
+          "begin": 2211770,
+          "end": 2219814,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0535",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "en soixante il était encore là euh: il a dû par- oui c'est ça il a dû partir euh vers les années soixante-cinq"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0535"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0820",
+          "begin": 2211770,
+          "end": 2219814,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0535",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "et c'était sa secrétaire: Paulette Fost"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0535"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0821",
+          "begin": 2219814,
+          "end": 2222569,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0536",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il est venu inaugurer les bâtiments"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0536"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0822",
+          "begin": 2219814,
+          "end": 2222569,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0536",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah partir mais il est pas mort"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0536"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0823",
+          "begin": 2222569,
+          "end": 2223377,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0537",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il est pas mort à"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0537"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0824",
+          "begin": 2222569,
+          "end": 2223377,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0537",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah si si"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0537"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0825",
+          "begin": 2223377,
+          "end": 2226132,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0538",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "si si si ben si + il a été X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0538"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0826",
+          "begin": 2223377,
+          "end": 2226132,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0538",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "si + si si + il est mort euh:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0538"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0827",
+          "begin": 2226132,
+          "end": 2231489,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0539",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "attends j'pensais j'pensais que j'étais ici déjà moi quand euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0539"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0828",
+          "begin": 2226132,
+          "end": 2231489,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0539",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "dans les années soixante-cinq + ah non non non non non + non non + monsieur Lefort"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0539"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0829",
+          "begin": 2231489,
+          "end": 2233101,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0540",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'le vois encore quand il XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0540"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0830",
+          "begin": 2231489,
+          "end": 2233101,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0540",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "après c'est: + après c'est Paulette"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0540"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0831",
+          "begin": 2233101,
+          "end": 2234967,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0541",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "la maison + dans la rue:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0541"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0832",
+          "begin": 2233101,
+          "end": 2234967,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0541",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ça alors là + j'suis pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0541"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0833",
+          "begin": 2234967,
+          "end": 2238547,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0542",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "alors là j'suis pas convaincue + (rires Marc) faudra que j'me renseigne de ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0542"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0834",
+          "begin": 2234967,
+          "end": 2238547,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0542",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "non non non (brouhaha)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0542"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0835",
+          "begin": 2238547,
+          "end": 2239694,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0543",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "avant d'aller X ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0543"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0836",
+          "begin": 2238547,
+          "end": 2239694,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0543",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui faudra vous renseigner"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0543"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0837",
+          "begin": 2239694,
+          "end": 2241983,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0544",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "(rires Marc) regardez dans l'di- + regardez dans l'dico il va vous l'dire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0544"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0838",
+          "begin": 2241983,
+          "end": 2243024,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0545",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui + dans le:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0545"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0839",
+          "begin": 2243024,
+          "end": 2243705,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0546",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "dans l'dictionnaire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0546"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0840",
+          "begin": 2243705,
+          "end": 2244217,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oh non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0841",
+          "begin": 2243705,
+          "end": 2244217,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0842",
+          "begin": 2244217,
+          "end": 2244754,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0548",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0548"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0843",
+          "begin": 2244754,
+          "end": 2247784,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0549",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oh non il y est pas dans + dans [-;l']dictionnaire ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0549"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0844",
+          "begin": 2247784,
+          "end": 2249185,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0550",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "bon on va pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0550"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0845",
+          "begin": 2247784,
+          "end": 2249185,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0550",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "il a été sénateur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0550"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0846",
+          "begin": 2249185,
+          "end": 2250755,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0551",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "un moment mais pas longtemps"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0551"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0847",
+          "begin": 2249185,
+          "end": 2250755,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0551",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui sénateur de Seine"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0551"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0848",
+          "begin": 2250755,
+          "end": 2255443,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0552",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'vais pas dire que j'vais demander à un de mes voisins parce qu'ils n'sa- la moitié savent pas lire ni écrire (brouhaha général) ni compter"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0552"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0849",
+          "begin": 2255443,
+          "end": 2258578,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0553",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "dans dans l'dictionnaire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0553"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0850",
+          "begin": 2255443,
+          "end": 2258578,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0553",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "eh ben voilà + monsieur: Béranger aurait su nous l'dire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0553"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0851",
+          "begin": 2258578,
+          "end": 2259323,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0554",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "non: [j'vais;j'ai] la"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0554"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0852",
+          "begin": 2258578,
+          "end": 2259323,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0554",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0554"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0853",
+          "begin": 2259323,
+          "end": 2260491,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0555",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0555"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0854",
+          "begin": 2259323,
+          "end": 2260491,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0555",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "bien sûr + bien sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0555"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0855",
+          "begin": 2260491,
+          "end": 2262294,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0556",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "monsieur Béranger (brouhaha)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0556"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0856",
+          "begin": 2260491,
+          "end": 2262294,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0556",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'vais l'dem- non: mais j'vais l'demander"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0556"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0857",
+          "begin": 2262294,
+          "end": 2265387,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0557",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "si vous voulez vraiment être + sur Saint-Ouen"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0557"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0858",
+          "begin": 2262294,
+          "end": 2265387,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0557",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "demander à la mairie hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0557"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0859",
+          "begin": 2265387,
+          "end": 2268861,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0558",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "bon alors vous allez interviewer XXX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0558"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0860",
+          "begin": 2265387,
+          "end": 2268861,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0558",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "téléphonez à monsieur + Béranger rue Saint-Denis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0558"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0861",
+          "begin": 2268861,
+          "end": 2271891,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0559",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "oui + oui oui j'vais j'vais peut-être le faire ouais mm + ouais ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0559"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0862",
+          "begin": 2268861,
+          "end": 2271891,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0559",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "(brouhaha) XXX tout hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0559"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0863",
+          "begin": 2271891,
+          "end": 2273630,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0560",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "d'abord il fait partie d'la Réa +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0560"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0864",
+          "begin": 2273630,
+          "end": 2277844,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0561",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + l'associa- historique ++ c'est c'est quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0561"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0865",
+          "begin": 2273630,
+          "end": 2277844,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0561",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'est: + X connaître la Réa"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0561"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0866",
+          "begin": 2277844,
+          "end": 2283201,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0562",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "un service historique de Saint-Ouen"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0562"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0867",
+          "begin": 2277844,
+          "end": 2283201,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0562",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'ai: rendez-vous avec un avocat là le vingt-sept j'demanderai l'avocat le: saura peut-être j'sais pas +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0562"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0868",
+          "begin": 2283201,
+          "end": 2287056,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0563",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "il s'occupe de: de l'association historique c'est ça ouais + sur Saint-Ouen ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0563"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0869",
+          "begin": 2283201,
+          "end": 2287056,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0563",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oui + oui avec Jean Lefort"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0563"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0870",
+          "begin": 2287056,
+          "end": 2291588,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0564",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais j'ai bien vu ++ ses articles dans le: + dans l'journal municipal"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0564"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0871",
+          "begin": 2287056,
+          "end": 2291588,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0564",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "c'est drôle il me semble pourtant que:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0564"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0872",
+          "begin": 2291588,
+          "end": 2297770,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0565",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ben + si vous voulez le contacter ben + sans l'déranger le mieux c'est + d'aller euh rue Anselme"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0565"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0873",
+          "begin": 2291588,
+          "end": 2297770,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0565",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "savez qu'il ait quitté XX hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0565"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0874",
+          "begin": 2297770,
+          "end": 2307193,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0566",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ++ d'accord + d'accord ++ ah: ok + ah ben c'est c'est un bon tuyau ouais merci ouais mm ouais + c'est un bon tuyau"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0566"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0875",
+          "begin": 2297770,
+          "end": 2307193,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0566",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "au jumelage + ils font leurs réunions au jumelage tous les jeudis après-midi +++ tous les jeudis après-midi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0566"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0876",
+          "begin": 2307193,
+          "end": 2308716,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0567",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "parce qu'il me semble quand même euh:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0567"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0877",
+          "begin": 2308716,
+          "end": 2324207,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0568",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "alors je: en j'vais vous: ramener à: au questionnaire donc euh en + j'voulais parler un petit peu des langues + qui se parlent donc euh dans la ville + euh: + est-ce que vous avez idée des langues qui se parlent: autour de vous euh? ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0568"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0878",
+          "begin": 2324207,
+          "end": 2326750,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0569",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben un petit peu [de;-] tout hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0569"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0879",
+          "begin": 2324207,
+          "end": 2326750,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0569",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "non pas trop (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0569"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0880",
+          "begin": 2326750,
+          "end": 2328256,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0570",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "je les connais pas toutes hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0570"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0881",
+          "begin": 2328256,
+          "end": 2329851,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0571",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0571"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0882",
+          "begin": 2329851,
+          "end": 2333812,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0572",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "vous avez pas assez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0572"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0883",
+          "begin": 2329851,
+          "end": 2333812,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0572",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "je trouve que justement on (n')entend plus suffisamment l'français"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0572"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0884",
+          "begin": 2333812,
+          "end": 2335932,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0573",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah ouais (rires) +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0573"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0885",
+          "begin": 2335932,
+          "end": 2337375,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0574",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "autour de nous +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0574"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0886",
+          "begin": 2337375,
+          "end": 2341272,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0575",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + et vous-même vous parlez pas d'autre langue que le: le français?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0575"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0887",
+          "begin": 2341272,
+          "end": 2345571,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0576",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "vous avez pas l'occasion de ++ mm + d'accord (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0576"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0888",
+          "begin": 2341272,
+          "end": 2345571,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0576",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "non: j'ai fait de l'anglais mais je l'ai pas continué alors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0576"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0889",
+          "begin": 2345571,
+          "end": 2353506,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0577",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "comme c'était Paul qui était: ++ enfin j'avais un professeur mais comme c'était Paul surtout qui me: ++ qui le parlait donc euh évidemment: +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0577"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0890",
+          "begin": 2353506,
+          "end": 2355647,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0578",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "Paul c'était votre compagnon c'est ça d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0578"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0891",
+          "begin": 2355647,
+          "end": 2357111,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0579",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "eh ben maintenant:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0579"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0892",
+          "begin": 2355647,
+          "end": 2357111,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0579",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "OK"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0579"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0893",
+          "begin": 2357111,
+          "end": 2365366,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0580",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ben si on parlait du français euh: + est-ce que vous voyez différentes façons de parler français dans euh + de de parler le français:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0580"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0894",
+          "begin": 2365366,
+          "end": 2369686,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0581",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "dans dans les différents quartiers: à Pa-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0581"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0895",
+          "begin": 2365366,
+          "end": 2369686,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0581",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ben: le le français si on le p- si on le parle bien +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0581"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0896",
+          "begin": 2369686,
+          "end": 2372589,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0582",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh il y avait les: les + les chiffonniers qui parlaient argot +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0582"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0897",
+          "begin": 2372589,
+          "end": 2375597,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0583",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'est une langue un peu fermée évidemment c'est hermétique"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0583"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0898",
+          "begin": 2372589,
+          "end": 2375597,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0583",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais ç-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0583"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0899",
+          "begin": 2375597,
+          "end": 2388232,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0584",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ben c'est comme les patois + ils ont tourné un film là sur les euh le Nord + là X quand ils vous parlent: + j'ai une amie qui est du Nord + alors elle disait euh + le: ils: faisaient le matin + ils buvaient d'la chicorée +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0584"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0900",
+          "begin": 2388232,
+          "end": 2388786,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0585",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0585"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0901",
+          "begin": 2388786,
+          "end": 2396407,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0586",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "X chicorée Leroux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0586"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0902",
+          "begin": 2388786,
+          "end": 2396407,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0586",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et puis + ils faisaient des tran- ils coupaient des tranches de pain + [et;ils] les tartinaient avec du maroual ++ [puis;-] ils trempaient ça dans le: chicorée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0586"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0903",
+          "begin": 2396407,
+          "end": 2399119,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0587",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah ouais ça dans l'Midi ça se fait beaucoup dans l'Nord ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0587"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0904",
+          "begin": 2396407,
+          "end": 2399119,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0587",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "c'est une marque c'est quoi le maroual?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0587"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0905",
+          "begin": 2399119,
+          "end": 2400985,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0588",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'est dans l'Nord elle [est;était] d'la région d'Lille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0588"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0906",
+          "begin": 2399119,
+          "end": 2400985,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0588",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "c'est du fromage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0588"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0907",
+          "begin": 2400985,
+          "end": 2402475,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0589",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "c'est un fromage très fort"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0589"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0908",
+          "begin": 2400985,
+          "end": 2402475,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0589",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah: d'accord + oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0589"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0909",
+          "begin": 2402475,
+          "end": 2404701,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0590",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "du fromage ++ du fromage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0590"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0910",
+          "begin": 2402475,
+          "end": 2404701,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0590",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "non ça y est je je vois oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0590"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0911",
+          "begin": 2404701,
+          "end": 2405827,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0591",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "sent fort"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0591"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0912",
+          "begin": 2404701,
+          "end": 2405827,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0591",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah ben dis donc +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0591"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0913",
+          "begin": 2405827,
+          "end": 2411078,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0592",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et vous vous vous souvenez de: d'exemples de leur euh: + argot + des chiffonniers euh +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0592"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0914",
+          "begin": 2411078,
+          "end": 2417620,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0593",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "alors euh: +++ l'argot"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0593"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0915",
+          "begin": 2411078,
+          "end": 2417620,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0593",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah oui ben moi j'ai connu les chiffonniers + comme comme j'ai connu les nomades euh: vous savez là euh: + où il y a"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0593"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0916",
+          "begin": 2417620,
+          "end": 2421517,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0594",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mais vous vous souvenez comment ils parlaient?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0594"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0917",
+          "begin": 2417620,
+          "end": 2421517,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0594",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "où Augusto Baldi avait son petit café là dans la rue euh +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0594"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0918",
+          "begin": 2421517,
+          "end": 2433454,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0595",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "le long du périphérique maintenant + à la place du péri- il y a l'périphérique maintenant + j'ai connu les nomades là euh + qui étaient très gentils tout l'monde en avait peur mais: moi j'en avais pas peur jamais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0595"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0919",
+          "begin": 2421517,
+          "end": 2433454,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0595",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui oui ben c'est au périphérique c'est sûr hein + oui + mm + XX tout ça + il y avait X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0595"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0920",
+          "begin": 2433454,
+          "end": 2433881,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0596",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0596"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0921",
+          "begin": 2433881,
+          "end": 2438222,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0597",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ils étaient très corrects et tout: ils m'demandaient l'heure les petits les petits bonhommes et puis bon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0597"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0922",
+          "begin": 2438222,
+          "end": 2440448,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0598",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah ouais + mm + (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0598"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0923",
+          "begin": 2438222,
+          "end": 2440448,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0598",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "non non moi +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0598"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0924",
+          "begin": 2440448,
+          "end": 2447683,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0599",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "jamais eu d'problèmes avec eux il y avait Augusto Baldi qu'avait son café euh: + il était pas dedans bien sûr pas s- oh en tous cas pas souvent +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0599"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0925",
+          "begin": 2447683,
+          "end": 2460381,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0600",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord donc euh le + non ça vous: + revient pas X ++ ouais ++ ouais ouais bien sûr oui des jargons: + mm ++ ouais + ouais:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0600"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0926",
+          "begin": 2447683,
+          "end": 2460381,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0600",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ben de l'argot c'est pas + évident c'est parce que + comme dans tous les métiers il y a de la: + X mots [ça;c'est] c'est typique + que vous: qui sont un peu imperméables + euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0600"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0927",
+          "begin": 2460381,
+          "end": 2463284,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0601",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'était fait pour ça dans les premiers temps"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0601"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0928",
+          "begin": 2460381,
+          "end": 2463284,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0601",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'ai pas parlé l'argot euh j'ai pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0601"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0929",
+          "begin": 2463284,
+          "end": 2468006,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0602",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et dans dans la autour de vous: vous sentez une différence entre par exemple les jeunes et les vieux: ou"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0602"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0930",
+          "begin": 2468006,
+          "end": 2469639,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0603",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "à l'époque non +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0603"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0931",
+          "begin": 2469639,
+          "end": 2470274,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0604",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "à l'époque non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0604"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0932",
+          "begin": 2470274,
+          "end": 2470553,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0605",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0605"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0933",
+          "begin": 2470553,
+          "end": 2471319,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0606",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "[-;et] aujourd'hui?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0606"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0934",
+          "begin": 2471319,
+          "end": 2472532,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0607",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "maintenant oui +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0607"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0935",
+          "begin": 2472532,
+          "end": 2473306,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0608",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "au fur à mesure"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0608"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0936",
+          "begin": 2472532,
+          "end": 2473306,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0608",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh aujourd'hui +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0608"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0937",
+          "begin": 2473306,
+          "end": 2482705,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0609",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'vis en pavillon j'suis: + chez moi + (rires Marc) elle connaît Jeanne + ben: ben Farah aussi elle est venue chez moi + là j'vois personne pratiquement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0609"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0938",
+          "begin": 2482705,
+          "end": 2483256,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0610",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0610"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0939",
+          "begin": 2483256,
+          "end": 2488274,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0611",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "puis à côté ben c'est une maison en ruines + et puis à droite: c'est ma voisine +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0611"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0940",
+          "begin": 2488274,
+          "end": 2492975,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0612",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui puis il y a pas d'enfants il y a rien donc euh vous pouvez pas: voir euh + des différences"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0612"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0941",
+          "begin": 2488274,
+          "end": 2492975,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0612",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ben: ++ ah non non non non ah non + non + non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0612"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0942",
+          "begin": 2492975,
+          "end": 2495201,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0613",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et vous avez des: des enfants des petits-enfants?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0613"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0943",
+          "begin": 2495201,
+          "end": 2497279,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0614",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "qui moi? + oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0614"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0944",
+          "begin": 2495201,
+          "end": 2497279,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0614",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ben vous deux vous ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0614"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0945",
+          "begin": 2497279,
+          "end": 2499780,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0615",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oui j'ai deux enfants moi + deux jeunes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0615"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0946",
+          "begin": 2499780,
+          "end": 2501985,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0616",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et des petits-enfants? ++ ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0616"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0947",
+          "begin": 2499780,
+          "end": 2501985,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0616",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oui:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0616"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0948",
+          "begin": 2501985,
+          "end": 2503936,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0617",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "puis j'vais être arrière-grand-mère au: mois prochain"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0617"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0949",
+          "begin": 2503936,
+          "end": 2512530,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0618",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah: félicitations (rires) + pour la première fois? + ouais ++ mm (rires) ++ mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0618"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0950",
+          "begin": 2503936,
+          "end": 2512530,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0618",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah oui ++ oui + ben oui oh ben ils se sont pas décidés de bonne heure + c'est ma petite fille elle a trente-et-un ans hein +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0618"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0951",
+          "begin": 2512530,
+          "end": 2514422,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0619",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "elle avait dit pour mes trente ans j'veux un enfant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0619"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0952",
+          "begin": 2514422,
+          "end": 2518256,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0620",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "(rires) un beau cadeau"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0620"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0953",
+          "begin": 2514422,
+          "end": 2518256,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0620",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "XXX + ça y est ils ont acheté un enfant X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0620"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0954",
+          "begin": 2518256,
+          "end": 2520291,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0621",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "ben ça y est + c'est X là hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0621"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0955",
+          "begin": 2520291,
+          "end": 2527679,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0622",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "et vous entre: + la façon d'parler français de vos: petits-enfants et votre façon d'parler vous voyez des: différences + [-;ou] pas spécialement +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0622"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0956",
+          "begin": 2520291,
+          "end": 2527679,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0622",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh non ben non + oh non: ben non +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0622"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0957",
+          "begin": 2527679,
+          "end": 2546964,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0623",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + OK + euh: ++ d'accord ++ hum + alors est-ce que: + le quartier où vous habitez à Saint-Ouen est-ce que est-ce que vous: + vous avez vu des: + des problèmes économiques ou est-ce que vous avez senti que: + que l'quartier a été touché par des: des problèmes économiques:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0623"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0958",
+          "begin": 2546964,
+          "end": 2547811,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0624",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "oh certainement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0624"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0959",
+          "begin": 2547811,
+          "end": 2548852,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0625",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0625"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0960",
+          "begin": 2548852,
+          "end": 2556071,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0626",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "certainement pour que + c'est malheureux à dire mais quand vous quittez votre pays c'est pas d'bon coeur + ou alors faut vraiment avoir une situation extraordinaire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0626"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0961",
+          "begin": 2556071,
+          "end": 2556477,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0627",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0627"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0962",
+          "begin": 2556477,
+          "end": 2562934,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0628",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais: Farah j'sais pas si c'est ++ vous êtes venue parce que vous étiez + on vous a mis un travail intéressant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0628"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0963",
+          "begin": 2562934,
+          "end": 2565625,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0629",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "non moi je suis venue ici quand j'avais deux ans et demi +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0629"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0964",
+          "begin": 2565625,
+          "end": 2567216,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0630",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah oui c'est: déjà les parents"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0630"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0965",
+          "begin": 2567216,
+          "end": 2571578,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0631",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "X vous êtes X quelle origine?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0631"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0966",
+          "begin": 2567216,
+          "end": 2571578,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0631",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "donc euh: algérienne ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0631"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0967",
+          "begin": 2571578,
+          "end": 2575010,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0632",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "c'est vrai que que quand j'vois mon pays je ça ça me crève le coeur quoi +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0632"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0968",
+          "begin": 2575010,
+          "end": 2579013,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0633",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "XX pauvre(s) X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0633"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0969",
+          "begin": 2575010,
+          "end": 2579013,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0633",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah oui ça c'est sûr + c'est sûr ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0633"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0970",
+          "begin": 2579013,
+          "end": 2585665,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0634",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "donc les dans dans le: dans Saint-Ouen les les problèmes économiques: + sont plus: marqués aujourd'hui que:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0634"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0971",
+          "begin": 2585665,
+          "end": 2589097,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0635",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "qu'il y a vingt ans trente ans + c'est + d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0635"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0972",
+          "begin": 2585665,
+          "end": 2589097,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0635",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'est différent c'est totalement différent ça n'a rien à voir"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0635"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0973",
+          "begin": 2589097,
+          "end": 2592211,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0636",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "autrefois X + oh c'était à peu près tout l'monde pareil"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0636"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0974",
+          "begin": 2592211,
+          "end": 2601930,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0637",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm +++ ouais + ouais ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0637"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0975",
+          "begin": 2592211,
+          "end": 2601930,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0637",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "les trois quarts ils travaillaient en usine dans notre mon quartier là + bon ben: tous les jours tous les jours ben ils allaient là rue Blanqui là + il y avait: j'sais plus + combien d'usines"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0637"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0976",
+          "begin": 2601930,
+          "end": 2604473,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0638",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "(brouhaha) oh il y avait X il y avait: j'sais plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0638"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0977",
+          "begin": 2604473,
+          "end": 2605472,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0639",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0639"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0978",
+          "begin": 2604473,
+          "end": 2605472,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0639",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0639"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0979",
+          "begin": 2605472,
+          "end": 2607000,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0640",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0640"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0980",
+          "begin": 2605472,
+          "end": 2607000,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0640",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "il y avait énormément de:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0640"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0981",
+          "begin": 2607000,
+          "end": 2610008,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0641",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ben il y avait des ouvriers spécialisés XX +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0641"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0982",
+          "begin": 2610008,
+          "end": 2615386,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0642",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm + mais ils étaient moins touchés par l'chômage paut-être ou euh + ouais +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0642"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0983",
+          "begin": 2610008,
+          "end": 2615386,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0642",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ah ben c'était différent ++"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0642"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0984",
+          "begin": 2615386,
+          "end": 2622266,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0643",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "on connaissait pas l'chômage + moi j'ai jamais connu + oh peut-être mais enfin moi j'en ai j-j'ai jamais connu l'chômage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0643"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0985",
+          "begin": 2615386,
+          "end": 2622266,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0643",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "complètement différent + oh XX il y en a toujours eu mais XX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0643"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0986",
+          "begin": 2622266,
+          "end": 2637588,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0644",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "j'ai payé + ma c- ma [cot-;côte] euh: + comme tout l'monde + j'voyais chômage sur ma feuille de paie + mais j'ai jamais été au chômage pas une seule journée + parce qu'à c-c'est une époque + euh vous vous: pouviez quitter une maison et hop sortir s- + aller dans l'autre le lendemain:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0644"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0987",
+          "begin": 2637588,
+          "end": 2641866,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0645",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais + ouais ouais + (rires)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0645"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0988",
+          "begin": 2637588,
+          "end": 2641866,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0645",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah oui vous avez du boulot partout ++ il y avait de l'emploi partout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0645"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0989",
+          "begin": 2641866,
+          "end": 2651539,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0646",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'me rappelle être allée au ministère du travail là quand mes parents ont: co- + comme j'travaillais avec eux + à un moment donné j'dis: quand ils vont prendre leur retraite qu'est-ce que j'fais moi?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0646"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0990",
+          "begin": 2641866,
+          "end": 2651539,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0646",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "avec un peu d'connaissances un peu d'intelligence: pff"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0646"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0991",
+          "begin": 2651539,
+          "end": 2652199,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0647",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah ben oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0647"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0992",
+          "begin": 2651539,
+          "end": 2652199,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0647",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0647"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0993",
+          "begin": 2652199,
+          "end": 2664939,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0648",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ça c'est l'problème hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0648"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0994",
+          "begin": 2652199,
+          "end": 2664939,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0648",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "alors j'ai été au ministère du travail et puis j'leur dis ben + j'habite Saint-Ouen ah + ben il y a du travail à Saint-Ouen mais vous allez peut-être pas en vouloir + j'dis pourquoi j'en voudrais pas? + c'est à côté + j'ai travaillé à l'Alstom"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0648"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0995",
+          "begin": 2664939,
+          "end": 2665282,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0649",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0649"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0996",
+          "begin": 2665282,
+          "end": 2667910,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0650",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "ah oui l'Alstom tout ça [moche comme tout;moi j'XX]"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0650"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0997",
+          "begin": 2665282,
+          "end": 2667910,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0650",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "service: + bureau(x) là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0650"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0998",
+          "begin": 2667910,
+          "end": 2668422,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0651",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0651"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a0999",
+          "begin": 2668422,
+          "end": 2675768,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0652",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "j'y allais à pieds j'prenais la rue: XXX c'était rue: + ça donnait sur le boulevard Victor Hugo"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0652"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1000",
+          "begin": 2668422,
+          "end": 2675768,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0652",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "dans la rue des Bateliers? (brouhaha) ++ ouais + ouais ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0652"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1001",
+          "begin": 2675768,
+          "end": 2677338,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0653",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "non + Docteur Bauer Alstom"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0653"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1002",
+          "begin": 2675768,
+          "end": 2677338,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0653",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "moi j'ai fait des: stages d'ailleurs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0653"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1003",
+          "begin": 2677338,
+          "end": 2678231,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0654",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "euh non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0654"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1004",
+          "begin": 2677338,
+          "end": 2678231,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0654",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "chez X là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0654"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1005",
+          "begin": 2678231,
+          "end": 2678933,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0655",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "non?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0655"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1006",
+          "begin": 2678231,
+          "end": 2678933,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0655",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "pour mon métier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0655"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1007",
+          "begin": 2678933,
+          "end": 2682132,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0656",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ben non + Alstom c'était la der- rue des Bateliers"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0656"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1008",
+          "begin": 2682132,
+          "end": 2684167,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0657",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "Bateliers ouais + ouais c'est ça mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0657"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1009",
+          "begin": 2682132,
+          "end": 2684167,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0657",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah aux Bateliers ah oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0657"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1010",
+          "begin": 2684167,
+          "end": 2685293,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0658",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "c'était là l'entrée X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0658"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1011",
+          "begin": 2685293,
+          "end": 2686059,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0659",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "près des petits jardins"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0659"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1012",
+          "begin": 2686059,
+          "end": 2688898,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0660",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et alors ce qu'il y avait + à l'époque"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0660"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1013",
+          "begin": 2686059,
+          "end": 2688898,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0660",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah oui derrière là-bas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0660"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1014",
+          "begin": 2688898,
+          "end": 2690574,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0661",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui c'est vrai"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0661"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1015",
+          "begin": 2688898,
+          "end": 2690574,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0661",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "(brouhaha) il y avait tous les petits jardins"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0661"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1016",
+          "begin": 2690574,
+          "end": 2695423,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0662",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "oui voilà c'est ça les jardins oui ++ c'est vrai?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0662"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1017",
+          "begin": 2690574,
+          "end": 2695423,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0662",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "c'était une grosse X + ben moi j'me suis trouvée enfermée moi un soir ben oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0662"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1018",
+          "begin": 2695423,
+          "end": 2697479,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0663",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "les jardins oui c'est ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0663"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1019",
+          "begin": 2695423,
+          "end": 2697479,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0663",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ils vendaient des légumes oh la"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0663"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1020",
+          "begin": 2697479,
+          "end": 2700297,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0664",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "me suis retrouvée enfermée dans les jardins"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0664"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1021",
+          "begin": 2697479,
+          "end": 2700297,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0664",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ah oui? ++ les les jardiniers?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0664"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1022",
+          "begin": 2700297,
+          "end": 2702861,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0665",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh oui il y avait des jardiniers mais c'étaient des ouvriers d'Alstom"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0665"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1023",
+          "begin": 2702861,
+          "end": 2708345,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0666",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "com-comment ça se passait la vente: + ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0666"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1024",
+          "begin": 2702861,
+          "end": 2708345,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0666",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "on leur concédait un morceau d'jardin + mais j'allais acheter les tomates oh ben dis donc alors +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0666"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1025",
+          "begin": 2708345,
+          "end": 2711653,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0667",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "(brouhaha) c'était: ponctuel les ventes: ou euh + comme ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0667"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1026",
+          "begin": 2708345,
+          "end": 2711653,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0667",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "oh c'était formidable X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0667"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1027",
+          "begin": 2711653,
+          "end": 2714958,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0668",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "est-ce qu'ils existent encore les petits jardins c'est tout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0668"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1028",
+          "begin": 2711653,
+          "end": 2714958,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0668",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "non: non: non non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0668"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1029",
+          "begin": 2714958,
+          "end": 2717501,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0669",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "XXX"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0669"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1030",
+          "begin": 2714958,
+          "end": 2717501,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0669",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "vous avez pas vu il y a cinq grues là dans les: terrains"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0669"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1031",
+          "begin": 2717501,
+          "end": 2722498,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0670",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et puis bon ben le: + le château d'Saint-Ouen + était concédé + à l'Alstom"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0670"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1032",
+          "begin": 2717501,
+          "end": 2722498,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0670",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ça construit [ça monte;XX] + pfff"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0670"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1033",
+          "begin": 2722498,
+          "end": 2728472,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0671",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "oui ils en ont fait euh des jardins dans le vieux Saint-Ouen euh: pour euh: + pour les personnes de la ville"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0671"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1034",
+          "begin": 2722498,
+          "end": 2728472,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0671",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "pour un: + un: + un bail + de quatre-vingt-dix-neuf ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0671"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1035",
+          "begin": 2728472,
+          "end": 2733000,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0672",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord + d'accord + oui oui oui mm + mm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0672"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1036",
+          "begin": 2728472,
+          "end": 2733000,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0672",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "où chaque année ils euh: cultivent un petit peu de: + de terre bien à eux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0672"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1037",
+          "begin": 2733000,
+          "end": 2733931,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0673",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "d'accord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0673"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1038",
+          "begin": 2733000,
+          "end": 2733931,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0673",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "et après la ville a"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0673"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1039",
+          "begin": 2733931,
+          "end": 2735813,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0674",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ah c'est peut-être vers le:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0674"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1040",
+          "begin": 2733931,
+          "end": 2735813,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0674",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais + ouais ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0674"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1041",
+          "begin": 2735813,
+          "end": 2736507,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0675",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "vous savez vers les"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0675"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1042",
+          "begin": 2735813,
+          "end": 2736507,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0675",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "maintenant ils cassent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0675"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1043",
+          "begin": 2736507,
+          "end": 2738648,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0676",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "vignes là les anciennes vignes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0676"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1044",
+          "begin": 2736507,
+          "end": 2738648,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0676",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "maintenant ils cassent: + oui c'est vrai"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0676"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1045",
+          "begin": 2738648,
+          "end": 2741230,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0677",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr002"
+              },
+              "content": "ben eux ils ont refait XXX (brouhaha)"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0677"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1046",
+          "begin": 2741230,
+          "end": 2744318,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0678",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "ben non il y a pas de terrain là + c'est indivisible"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0678"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1047",
+          "begin": 2741230,
+          "end": 2744318,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0678",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "le: TGV c'est Alstom encore"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0678"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1048",
+          "begin": 2744318,
+          "end": 2746032,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0679",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "mm ++ ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0679"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1049",
+          "begin": 2744318,
+          "end": 2746032,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0679",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr001"
+              },
+              "content": "mais c'était à Saint-Ouen avant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0679"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1050",
+          "begin": 2746032,
+          "end": 2747428,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0680",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "ah peut-être au fond"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0680"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1051",
+          "begin": 2746032,
+          "end": 2747428,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0680",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "ouais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0680"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1052",
+          "begin": 2747428,
+          "end": 2748296,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0681",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr004"
+              },
+              "content": "il y a rien +"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0681"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1053",
+          "begin": 2748296,
+          "end": 2750136,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0682",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr003"
+              },
+              "content": "je vais juste + euh:"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0682"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1054",
+          "begin": 2748296,
+          "end": 2750136,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0682",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "peut-être en bas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0682"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1055",
+          "begin": 2750136,
+          "end": 2752041,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0683",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr005"
+              },
+              "content": "je sais pas moi je sais que c'est j-j- X"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0683"
+          }
+        },
+        {
+          "id": "11280.100/crdo-CFPP2000_11_SOUND_a1056",
+          "begin": 2750136,
+          "end": 2752041,
+          "media": "11280.100/crdo-CFPP2000_11_SOUND_m1",
+          "type": "11280.100/crdo-CFPP2000_11_SOUND_trn0683",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_spkr006"
+              },
+              "content": "qu'est-ce qu'ils en ont fait:?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-CFPP2000_11_SOUND_trn0683"
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-FRA_PK_IV_10_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:51+00:00",
+        "dc:modified": "2016-06-01T23:47:51+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "Le jour des petits (B)"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/145183_IV_10_22km.wav",
+          "meta": {
+            "dc:duration": 821000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "Le jour des petits (B)"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/145183.wav",
+          "meta": {
+            "dc:duration": 821000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "Le jour des petits (B)"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/145183_IV_10_44k.mp3",
+          "meta": {
+            "dc:duration": 821000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "Le jour des petits (B)"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a001",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "44",
+              "content": "jaɛ̃mpsjøla / iladøtɛt / epijaɛ̃mɔl> + jaɑ̃kɔ:ɛ̃mpsjø + lakatpje / mpsjøa + isɛpama:ʃe / isɛpama:ʃe / isɛpama:ʃe / epʏilalɛ / ilakite / ɑ̃vənɑ̃jəpatɛ + opɔ̃(danma) + sɛajəvənɛ / sɛaləmpsjødaɛ(k) / døtɛtla / aɛklʏi - - - - / ledømɔ̃fɛpalab / jalodla(a)ʒəte + tɔnami + dɑ̃lo: / lodlalagynla /",
+              "transl": {
+                "@value": "il y a un monsieur là il a deux têtes et puis il y a un (mort) il y a encore un monsieur il a quatre pieds monsieur il sait pas marcher il sait pas marcher il sait pas marcher et puis il allait il a quitté en venant ouais il est parti au pont (XX) c'est là il est venu c'est là le monsieur avec deux têtes là avec lui (XXXX) les deux ont fait (des) palabres il y a l'autre-là (il) a jeté ton ami dans l'eau l'eau de (la) lagune-là",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 145.2,
+          "end": 31940.8
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a002",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "44",
+              "content": "/ lalʏilɛsɔ:timɛ̃nɑ̃ + pu:tyelodla / lamɛ̃nɑ̃ + jɛmwajf> + jɛf> / jɛfʏi + puvəni: / wɛi + selʏila / lʏisempsjø: / lamɛ̃nɑ̃ / lamɛ̃ntənɑ̃  + ajɛtroprɛse / jɛfʏimɛ̃dnɑ̃ + jəfraja + puvəni: / jɛfrajapuvəni: / sɛla + jsialedɔmialaga: /",
+              "transl": {
+                "@value": "là lui il est sorti maintenant pour tuer l'autre-là là maintenant moi j'ai [f] jai [f] j'ai fui pour venir ouais mon (X) lui là (ah ouais) c'est lui là lui c'est monsieur (j'ai oublié son nom) là maintenant là maintenant j'ai trop pressé c'est ça j'ai fui maintenant j'ai (fraya, fugué) pour venir j'ai (fraya, fugué) pour venir je suis allé dormir à la gare",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 31940.8,
+          "end": 70560.2
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a003",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "44",
+              "content": "/ sɛlaləmpsjømapuse + ʒykɑ̃: : : / jisajə -ɔ -e alaga: / aɛdepje / mapuse / salɛga:djɛ̃lõ + tye / kɑ̃lɛga:djɛ̃ + ɔ̃finidələtyela / ɑ̃sɔ:sɛlriɑ̃kɔ: + jɛvi> / lə(mɔʀɔsɑ̃)ləmɑ̃ʒe + sɛajɛfʏimɛ̃nɑ̃ + jsialɛ + tɔ̃tɔ̃konɑ̃ + maprimɛ̃nɑ̃ + pu:alealemezɔ̃ / dɑ̃ʀɛv: / jalətɔ̃tɔ̃konɑ̃ + imaprimɛ̃nɑ̃ + pu:mɑ̃vwajalamezɔ̃ / jɛfini",
+              "transl": {
+                "@value": "c'est là le monsieur m'a poursuivi (jusqu'en, pendant longtemps) c'est ça il est tombé à la gare avec deux pieds (il) m'a poursuivi jusqu'à (tomber) la gare (dedans, donc) les gardiens l'ont tué quand les gardiens ont fini de le tuer là en sorcellerie encore j'ai vu les (morts sont) allés manger (c'est un film maintenant) c'est ça il y avait tonton Konan il m'a pris pour aller à la maison dans (le) rêve donc le tonton Konan il m'a pris maintenant pour m'envoyer à la maison (c'est, j'ai) fini.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 70560.2,
+          "end": 94806.2
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a004",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "33",
+              "content": "// jaɛ̃mpsjø / ivɛ>irɛsetuʒu: + loɑ̃>ɑ̃ba / isapəlevɔpi / mɛntənɑ̃",
+              "transl": {
+                "@value": "il y a un monsieur il versait toujours l'eau en bas il s'appellait Vopi maintenant",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 101361.3,
+          "end": 109009.9
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a005",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "34",
+              "content": "sapɛkɔmɑ̃",
+              "transl": {
+                "@value": "il s'appelle comment.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 109034.4,
+          "end": 109861.3
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a006",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "33",
+              "content": "vɔpi / vɔpi (*) / mɛ̃tnɑ̃ + ɔ̃lapɛlɛ / ɔ̃di / vɔpi / dwavɛseloɑ̃baisi / idi + wi / kɑ̃jɛrɑ̃ntre / - - - vɛ:seloɑ̃ba / ɔ̃di + (pu)kwatyvɛ:sloɑ̃ba / ɛs>ɛsɔ̃papadi + dɛsɑ̃vit / vapati: / atʀapelola / lakurykurykury + napapyatrape / lo / dɔ̃loɛvɛ:seɑ̃ba /",
+              "transl": {
+                "@value": "Vopi. Vopi (*). maintenant on l'a appelé on dit Vopi (tu vas) verser l'eau en bas ici il dit oui quand je vais rentrer maintenant il a versé l'eau en bas on dit pourquoi tu verses l'eau en bas et et son papa dit descend vite vas partir rattraper l'eau-là il a couru couru couru (il) a pas pu rattraper l'eau donc l'eau est versée en bas.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 109861.3,
+          "end": 134736.5
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a007",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "33",
+              "content": "/ mɛdnɑ̃ / sɔ̃papalapɛle / sɔ̃ppaap>a:pəti / ilɛpatiapɛle + sezami / mɛ̃dnɑ̃ + idi / atrapevɔpilatrapevo + pil / øisavɛpa / ø(o)sizatrapelɛpil / mɛdnɑ̃ / mɛdnɑ̃ / ɔ̃di / tyɑ̃vwapilmɛ̃dnɑ̃ / tyɑ̃vwapilmɛ̃dnɑ̃ / vɔpilɛpa:ti / lɛpatidɑ̃laʀ> / ilɛpatidɑ̃laʀy / iletɛpati + truvesezami / lɛtɛlaʒue / mɛdnɑ̃ + lɛrɛselaba / sɛtu //",
+              "transl": {
+                "@value": "maintenant son papa l'appellait son papa (appelait) à petit il est parti appeler ses amis maintenant il dit attraper Vopi il attrapait Vopi eux ils savaient pas eux (aussi) s'ils attrapaient (Vopi) maintenant maintenant on dit tuez Vopi maintenant on l'a tué Vopi maintenant Vopi il est parti il est parti dans la [r] il est parti dans la rue il était parti trouver ses amis il était là à jouer maintenant il est resté là-bas c'est tout.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 134736.5,
+          "end": 167191.4
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a008",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "111",
+              "content": "œ̃ʒu: + jaɛ̃mpsjø / (*) / isapɛ + balaf: / izapɛbalaf / (**) / ømɛ̃dnɑ̃ / idi / idi + kəlavɛsɔnami / kitravaj / kisavɛkravat / iletɛpa:tiœ̃ʒu:oʃɑ̃ /",
+              "transl": {
+                "@value": "un jour il y a un monsieur (*) il s'appelle balafre il s'appelle balafre (**) et puis maintenant il dit il dit comme il avait son ami qui travaille il s'appelle Cravate ils étaient parti un jour au champs",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 174851.2,
+          "end": 204251.3
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a009",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "111",
+              "content": "/ tuʒu: : / tuʒu:sɔ̃> + kɑ̃sɔnamisɔ̃(ʃa) / igajamɑ̃ʒe / mɛdnɑ̃ + balafdi + sɛu + tigajn / mɑ̃ʒe / ɔ: : :",
+              "transl": {
+                "@value": "toujours toujours son quand son ami sort au champs il gagne à manger maintenant balafre dit c'est où (que) tu gagnes à manger maintenant",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 204469.7,
+          "end": 214598.9
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a010",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "34",
+              "content": "sɛpabagrɔsɔ: /",
+              "transl": {
+                "@value": "c'est pas bakro (X).",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 212526,
+          "end": 214463.9
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a011",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "43",
+              "content": "ta -i + -a - balaflamem",
+              "transl": {
+                "@value": "t'as vu tu as balafre là même.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 214540.7,
+          "end": 216750
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a012",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "41",
+              "content": "jakwamɛm",
+              "transl": {
+                "@value": "il y a quoi même.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 216012.7,
+          "end": 216747.7
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a013",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "34",
+              "content": "- - -̠ dəkipalɛ:",
+              "transl": {
+                "@value": "(XXX) de qui parler",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 216982.5,
+          "end": 218145.3
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a014",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "50",
+              "content": "tɔ̃dikɛ / ʒamɛ",
+              "transl": {
+                "@value": "(ils) t'ont dit que jamais",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 218146.1,
+          "end": 219076.3
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a015",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "34",
+              "content": "dɔ̃-ɛ-iba:lɛ / -ɛ-ipa:l + - tɔ̃kɔ̃sa",
+              "transl": {
+                "@value": "(XX) eux il parlent moi je (donne) comme ça",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 218931.7,
+          "end": 221787.6
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a016",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "50",
+              "content": "- - pualetɔs + atɛmɔ:",
+              "transl": {
+                "@value": "(XX) tu parlais (X) à tes morts",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 222242.9,
+          "end": 224974.6
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a017",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "34",
+              "content": "---- ɔ̃ -tɑ̃ / abɔ̃ / abɔ̃ / twata ---- brʏidədɑ̃ / takɔmprinɔ̃",
+              "transl": {
+                "@value": "(XXXX) (attend) ah bon ah bon toi tu as (XXXX) bruit dedans tu as compris non",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 227772.7,
+          "end": 232525.7
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a018",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "41",
+              "content": "fo + pa:le / fo + pa:le",
+              "transl": {
+                "@value": "(il) faut parler (il) faut parler",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 226645.7,
+          "end": 229487.7
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a019",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "34",
+              "content": "- - -tɛ>tɛdʒau --- la:bla - - / - - - kwamɛm / twatyapri / tapri ---",
+              "transl": {
+                "@value": "(XXXXXXXXXXXXXX) quoi même toi tu as pris tu as pris (XXX)",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 232373.1,
+          "end": 241592.7
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a020",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "41",
+              "content": "----",
+              "transl": {
+                "@value": "(XXXX)",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 238985.1,
+          "end": 243641.5
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a021",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "34",
+              "content": "---",
+              "transl": {
+                "@value": "(XXXXXX)",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 244054,
+          "end": 249063.3
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a022",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "41",
+              "content": "- - - a-oko",
+              "transl": {
+                "@value": "(XXXXXX)",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 249122.2,
+          "end": 254131.5
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a023",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "34",
+              "content": "a- - ɛburkinabe / samty / - - - - labanɔ̃",
+              "transl": {
+                "@value": "(XX) est Burkinabé (ça me tue) (XXXX) là-bas non",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 254092.6,
+          "end": 259313.6
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a024",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "111",
+              "content": "mɛdnɑ̃ + safametɛɑ̃sɛ̃t / inapa + la:ʒɑ̃ / inapalaʒɑ̃ / mɛdnɑ̃ + il> + iladəmɑ̃nde / pa:tulaprikredi / epʏi + mɛdnɑ̃ / kɑ̃ / ilaparɑ̃mbu:se + mɛdnɑ̃ / iletɛmɔ: /",
+              "transl": {
+                "@value": "maintenant sa femme était enceinte il n'a pas (l', d') argent il n'a pas (l', d') argent maintenant il il a demandé partout il a pris (du) crédit et puis maintenant quand il a pas remboursé maintenant il était mort.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 230386.3,
+          "end": 244930.6
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a025",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "111",
+              "content": "sə>sə>s + tuspkəʃezø:kə + laprikredi / isɔ̃pa:tiʃelʏi / mɛdnɑ̃ / iladəmɑ̃ndeasafam / uɛtɔ̃mari / safamdi- + sɔ̃mariɛmɔ: / sɔ̃mariɛmɔ: / mɛdnɑ̃ / - - di / ivɔ̃prɑ̃n + tuskətedɑ̃mezɔ̃la / epʏi / kɑ̃izɔ̃pri / lanʏi / mɛdnɑ̃ + balafla + ɛsɔ̃ti / (*) /  - - ɛsɔ:ti /",
+              "transl": {
+                "@value": "tous ceux que [ʃ] tous ceux que chez eux il a pris crédit ils sont partis chez lui maintenant ils ont demandé à sa femme où est ton mari sa femme dit ton mari est mort son mari est mort maintenant (il) dit ils vont prendre tous qui était dans (la) maison-là et puis quand ils ont pris la nuit maintenant (la) balafre-là est sorti (*) (XX) est sorti",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 245079.8,
+          "end": 267455.7
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a026",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "111",
+              "content": "kɑ̃lɛsɔ:ti + lɛvənilabufeɑ̃soslɛri / mɛdnɑ̃ / ʃos / iletɛpa> / idəmɑ̃ndɛdɑ̃ - - / isamyzɛ / ilavylɛzɑ̃fɑ̃ / ʒeni / lafama + krie / mɛdnɑ̃ / lezamisɔ̃vəni / - - - (ʃɛ:ʃe) / ɛlavylɛzanimo / ɛlamɑ̃ʒe / ɛlavɑ̃ndy / ɛlɛdɪvɪni + riʃ / mɛdnɑ̃ / mɛdnɑ̃ / jaɛ̃kɔk / ɛlatrapeləkɔk /",
+              "transl": {
+                "@value": "quand il est sorti il est venu (l') a bouffé en sorcellerie maintenant chose il était pas le moment dans la nuit il dormait il s'amusait il a vu les enfants (génie) la femme a crié maintenant les amis sont venus chercher elle a vu les animaux elle a mangé elle a vendu elle est devenue riche maintenant maintenant il y a un coq le coq elle a attrapé le coq",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 267455.7,
+          "end": 301616.2
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a027",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "111",
+              "content": "/ mɛdnɑ̃ / ləkɔkafɛlɛzø / ʒikɑ̃: : : / lɛdɪvɪni: / ɛlɛdəvɪniʀiʃ / ɛlakɔ̃strʏilɛmezɔ̃: / mɛdnɑ̃ɛdi + ɛva> / ɛ:di / ɛ:di / ɛva / ɛ:di + ɛ:vakɔ̃> / ɛ:di + ɛ:va / ʃos: / kɔ̃strʏilɛmezɔ̃ / ɛlakɔ̃strʏi + mɛdnɑ̃ / ɛladi + ɛvamɑ̃jləkɔkla / ɛ:di / epʏikɑ̃lamɑ̃ʒe / epʏi:ləkɔkl> + ləkɔklaʃɑ̃ntɛ /",
+              "transl": {
+                "@value": "maintenant le coq a fait les oeufs (jusqu'en, pendant longtemps) il a devenu elle a devenu riche elle a construit (les, des) maisons maintenant elle dit elle va elle dit elle +dit elle va elle va (X) elle va elle dit elle va chose construire les maisons elle a construit maintenant elle dit elle va (manger) le coq-là elle dit et puis quand elle a mangé lui le coq euh le coq a chanté",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 301616.2,
+          "end": 328318.1
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a028",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "111",
+              "content": "/ epʏimɛ̃dnɑ̃ / ɛ>ɛ>ɛ:di + ta + rɛzɔ̃ / kɑ̃tɛpaɑ̃kɔmɑ̃ʒe / sity>kɑ̃tɛpaɑ̃kɔ: / kɑ̃tɛpaɑ̃kɔ:tye / tyʃɑ̃nt / mɛdnɑ̃ + ɛlatyeləkɔklaʃɑ̃ntɛ / mɛdnɑ̃ / mɛdnɑ̃ / mɛdnɑ̃lafam> + ləkɔkla + ʃɑ̃ntɛtuʒu: / mɛdnɑ̃ / kã + ɛdi>ɛ:di / kɑ̃ + tɛpaɑ̃kɔ:mɑ̃ʒe / ɛ>tyʃɑ̃nt / ɛ:di + tyarɛzɔ̃ /",
+              "transl": {
+                "@value": "et puis maintenant elle elle dit tu as raison quand tu es pas encore mangé (si tu) quand tu es pas encore quand tu as pas encore tué tu chantes maintenant elle a tué le coq il a chanté maintenant maintenant maintenant la femme le coq-là chantait toujours mantenant quand elle dit elle dit quand t'es pas encore mangé euh tu chantes elle dit tu as raison",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 328318.1,
+          "end": 354581.8
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a029",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "111",
+              "content": "mɛdnɑ̃ + lamɑ̃ʒeləkɔk + ləʃɑ̃nt> + (kɑ̃mɛm~kɔkla) / ɑʃɑ̃ntedɑ̃sɔ̃vɑ̃ntr / sɔ̃vɑ̃nlaɛvəni + gro: : / elapɔtedɑ̃ - - + epiɛlɛmɔ:t //",
+              "transl": {
+                "@value": "maintenant elle a mangé le coq le chante (le) coq a chanté dans son ventre son ventre là est venu gros et l'a porté dedans et puis elle est morte.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 354581.8,
+          "end": 362385.4
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a030",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "00",
+              "content": "dakɔr / nɔ̃atɑ̃ /la + sete (NOM) + sesa",
+              "transl": {
+                "@value": "d'accord. non attends là c'était (NOM) c'est ça.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 362385.4,
+          "end": 367844.4
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a031",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "43",
+              "content": "nɔ̃ / sɛɛ̃ + vwojɛa + nɔ̃",
+              "transl": {
+                "@value": "// non. c'est un voyeur non.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 368773.6,
+          "end": 371677.3
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a032",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "111",
+              "content": "isapɛ + (NOM) / ila - - + - - / isapɛ (XXX) --->",
+              "transl": {
+                "@value": "il s'appelle (NOM) il a (XXXX) il s'appelle (NOM) (XXX)",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 373293.6,
+          "end": 381768.5
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a033",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "35",
+              "content": "jəɛtəfrape / jəɛtəfrapeɛ̃",
+              "transl": {
+                "@value": "je vais te frapper je vais te frapper hein",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 379586.8,
+          "end": 382775.4
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a034",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "111",
+              "content": "ɑ - - rakɔnsɔnistwa:",
+              "transl": {
+                "@value": "alors (NOM) ton histoire",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 382369.6,
+          "end": 384886.8
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a035",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "35",
+              "content": "(*) / bɔ̃iletɛynfwa / jve>javɛɛ̃nanaŋgo / avɛkɛ̃luba: / i> / jvɛasɛkafrika + ləluba:lʏi + spɔ:tɛafrika / l>lanaŋgo / lʏi + sypɔ:tɛ / sypɔ:tɛ + lasɛk / mɛ̃tənɑ̃ / ləmatɕ>ləmatɕakɔmɑ̃>matɕakɔmɑ̃se / ɔ̃di + asɛkipa: + asɛkipa: / asɛkika: + ɔ̃papu ---  / by /",
+              "transl": {
+                "@value": "bon il était une fois il y avait un anango avec un loubard qui il y avait ASEC Africa le loubard lui supportait Africa l'anango lui supportait il supportait l'ASEC maintenant le match a (commencé) (le) match a commencé on dit (c'est) ASEC qui part ASEC qui part ASEC qui part ASEC qui quoi (XXXXX) but",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 384886.8,
+          "end": 410563.1
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a036",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "35",
+              "content": "/ lanaŋgoprɑ̃s> / lanaŋgoapɛl / ləluba:idi + (bɔra) / ləlubaidi + wi / idi / amɛntwa + isi / lə>ləlanaŋgomɛ + pa: (*) + dɑ̃laʒudanaŋgo> + lə>lə> + luba: / ləlubanədirjɛ̃ / ɔ̃di + anaŋ>asɛk + kipa: + asɛk + asɛk / pa:ləpulasɛk + pulasɛk + typulasɛk / b:ylasɛk /",
+              "transl": {
+                "@value": "l'anango prend [s] l'anango appelle le loubard il dit (voilà) le loubard il dit oui il dit mets ta joue ici le l'anango (la) met pan dans (la) joue de l'anango le loubard le loubard ne dit rien on dit (l'anango) ASEC qui part ASEC ASEC part le pour l'ASEC pour l'ASEC [tyy] pour l'ASEC but d'ASEC",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 410563.1,
+          "end": 426776
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a037",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "35",
+              "content": "afr>asɛ:> + anaŋgoapri / anaŋgoapri + ləluba:laʒifleləluba: + laʒifleləluba: / mɛ̃ntnɑ̃ / mitɑ̃ + ɔ̃dipɛ:- + mitɑ̃ / lanaŋgoa>ləluba:a(diskyt)syltɛrɛ̃ / ilapɛlɛ / kɔmɑ̃napɛlɔ: : / kɔmɑ̃napɛ + sɔ̃nɔ̃lamɛm / anaŋgo / nɔ̃lodkiʒualafrikala / ɔ: / ɔnapɛ:sɛ:ʃ / idi + lapɛdje:sɛ:ʒ /",
+              "transl": {
+                "@value": "(Africa) (ASEC) (l') anango a pris l'anango a pris le loubard (il) a giflé le loubard (il) a giflé le loubard maintenant mi-temps on dit [pee] mi-temps l'anango le loubard a descendu sur le terrain il appellait comment on appelle euh comment on appelle son nom même. anango. non l'autre qui joue à l'Africa-là (on) on (l') appelle Serge il dit (que) (il) appelle [djesɛʒ̼]",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 426776,
+          "end": 445254.4
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a038",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "35",
+              "content": "/ idi / djesɛ:ʒ / s>s>s> + si:təplɛkp>kp>kp: + fo:mmake + ɛ̃>ɛ̃>ɛ̃ + bysplmɑ̃pumwa / ʒ>ʒ>jøvøpa + bo>bo>bo:ku + jəve + ɛ̃ / sɛ:jladi + ilakɔ̃mpri / ɔ̃di / pɛ: + matɕɛrkɔ>kɔmɑ̃se / pu:lafrika + lab>labalpulafrika: + lafrikakipa: / lafrika / py: + lafrika /",
+              "transl": {
+                "@value": "il dit [djesɛʒ] s'il te plait que (il) faut marquer un but seulement pour moi je veux pas beaucoup je (en) veux un Serge (l', lui) dit il a compris on dit [pee] (le) match est re commencé pour l'Africa la balle pour l'Africa l'Africa part l'Africa but (pour) l'Africa",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 445254.4,
+          "end": 463591.2
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a039",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "35",
+              "content": "/ ləluba:di + vwala / lə(lub)adi / namu (*) / + ɔ̃di + aprɔʃtwa + - ʒyisi / ɛmi / u:wa (**) / larjɛ̃di / lasɛ>djɛsɛ:j + djɛsɛ:jkipa: / bydə + djesɛ:j + bɔ̃ / ləluba:di / bwarɛ + nam(u) / bwa: (**) / safɛ + dødø /",
+              "transl": {
+                "@value": "le loubard (a) dit voilà le loubard dit [namu] (*) on dit approche-toi (X) jusqu'ici (j'ai mis). ouah. il a rien dit là c'est [djesɛʒ̼] [djesɛʒ̼] qui part but de [djesɛʒ̼] bon le loubard a dit bouah (XX) bouah ça fait deux deux",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 463591.2,
+          "end": 478954.5
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a040",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "35",
+              "content": "/ idi + vwala + vwala + vwala / b:wa + kɑ̃lamila / lɛbalafla (*) / lɛtrɛtrɛ + kisɔ̃isiɑ̃ola (**) / lɛtrɛla / sɛmɔ̃nte + -a-e-ʒysla / akozdəla(trɛdɛ)sɔ̃arivela (***) /",
+              "transl": {
+                "@value": "il dit voilà voilà voilà bouah quand (il) a mis là les balafres là (*) il est traits traits qui sont ici en haut-là (**) les traits-là (il sait monter (XXXX) là à cause de la (XX) (ils) sont arrivés ici là",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 478954.5,
+          "end": 490140.7
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a041",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "35",
+              "content": "/ mɛdnɑ̃ / uaf>uafrika + (makako) + lanaŋgolafraja + ilafʏi / mɛ̃nɑ̃jaɛ̃ / jaɛ̃kɔmɑ̃napɛlp: / nɔ̃ / kɔmɑ̃napɛlɛ: / lezotlasɔ̃kwa + ɔ: : / lɛzanji / jaɛ̃nanji + kiavisɛpase / idike + lʏivagifləluba:la / lanjila + lʏospɔtlasɛktuʒu: / mɛ̃dnɑ̃ / lanji / lanji + lʏilɛpa:ti / jyka: + asɛkama:keœ̃ʃ- + ləluba: /",
+              "transl": {
+                "@value": "maintenant ou Africa [macaco] l'anango (il) a (fraja, fugué) il a fui maintenant il y (en) a un comment on appelle euh non comment on appelle les autres-là sont quoi. euh les anyi il y a un anyi qui a vu (ce qui) s'est passé il dit que lui il va gifler (le) loubard-là l'anyi-là lui (aussi) supporte l'ASEC toujours maintenant l'anyi l'anyi lui il est parti (jusqu'à, un moment) ASEC à marqué dans (la) joue (de, du) loubard",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 490140.7,
+          "end": 516902.6
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a042",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "35",
+              "content": "/ kɑ̃afrika + ama:ketrwaby / lanjiafʏi / narjɛ̃di + ləluba:narjɛ̃di / ləluba:dikɛ + silʏitruv + tulezanjikɛ + tuvaleʒifle / mɛnɑ̃ / (mɛ)nɑ̃lɛpa:ti / nɑ̃lavisɔnami / idi + mɔnami + jaɛ̃>jaɛ̃jɑ̃ɛ̃ / kɔmɑ̃napɛl / jaɛ̃nanji + kimaʒiflela / epʏilafʏi / pu:lɛzatrape + - - - / idibɔ̃ / tyvwa + uɛga:dʒawalela / tyɛla /",
+              "transl": {
+                "@value": "quand (l') Africa a marqué trois buts l'anyi a fui (il) n'a rien dit le loubard n'a rien dit le loubard dit que si lui trouve tous les anyi que tous (il) va les gifler maintenant maintenant il est parti maintenant (il) a vu son ami il dit mon ami il y (en) a un comment on appelle un anyi qui m'a giflé là et puis il a fui pour les attraper il dit bon tu vois où est (le) gardien (XXXX) tué là",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 516902.6,
+          "end": 537372.2
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a043",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "35",
+              "content": "/ idi / jamo:j / jamo:j / jəvɛtujudi: + ja: : / kɑ̃isɔ̃arive / isɔ̃arive + jausɛgare + vulɛvolɛ dɛbanjila / ulɛvolɛ:dəbanjila + sɔ̃arive (*) / isɔ̃vəni / isɔ̃vəni + - - ʒueawaleawale / idi /",
+              "transl": {
+                "@value": "il dit il y a (X) il y a (X)  je vais toujours dire il ah quand ils sont arrivés ils sont arrivés il y a où s'est garé (voulait voler) de bangui-là où les voleurs de bangui-là sont arrivés (*) ils sont venus ils sont venus jouer awalé awalé il dit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 537372.2,
+          "end": 557085.2
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a044",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "34",
+              "content": "(*) / kitlamɛm (**) / (***)",
+              "transl": {
+                "@value": "(*) quitte-là même (**) (***)",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 557085.2,
+          "end": 559833.1
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a045",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "44",
+              "content": "kɔntiny + kɔntiny / - - mɛdnɑ̃ / kɔntiny",
+              "transl": {
+                "@value": "continue continue (XX) maintenant continue",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 570187.4,
+          "end": 573453
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a046",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "35",
+              "content": "(*) / mɛdnɑ̃ / mɛdnɑ̃ + isɔ̃ale / lɛrive + ulɛgazetɛ(trɛ̃d)jueawale / ladi / jamoj + jamoj / (**) jalɛdjula: / bete: / (***) bete / djula / (****) / - - osi / ta:pløre /",
+              "transl": {
+                "@value": "(*) maintenant + maintenant ils sont allés il est arrivé où le gars était en train (de) jouer awalé (il, il lui) il y a (X) il y a (X) (**) il y a les dioula bété (***) bété dioula (****). (XX) aussi tu vas pleurer.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 573453,
+          "end": 588546.4
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a047",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "35",
+              "content": "/ akodəmaʒ-nu-ɛ (*) // mɛ̃nɑ̃ + kɑ̃ladi + jamo> + jalɛgere / jalɛguro: / lɛjakuba / tutɛmelaŋje / kɑ̃ladi + jamo(j) + jamo(j) / ø(tusɔ̃)di / ja: + a + jakwa + ʒ:ifle(ʒve) / pɑ̃ + lɛʃjɛ̃ / vuzɛ(tsi) / -- kuʃe + pɑ̃ + pɑ̃ / sɛfini //",
+              "transl": {
+                "@value": "à cause de mon genou (*) maintenant quand (il, il lui) a dit il y a (X) il y a les guéré il y a les gouro les jacouba tout est mélangé quand (il, il lui) a dit il y a (X) il y a (X) eux tous ont dit il y a quoi. gifler (je vais) pan le chien vous êtes ici (XX) couché pan pan c'est fini.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 588546.4,
+          "end": 609244.1
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a048",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "33",
+              "content": "// tɛlmɑ̃fɛ̃fɛ̃ / setɛovilaʒ / mɛdnɑ̃ + ipasɛ / dɑ̃lɛʃɑ̃dəmaɲɔk / mɛdnɑ̃ + ilɛvənidɑ̃kwɛ̃ / dɑ̃ʀa(sĩ)dɛ + maɲɔk / mɛdnɑ̃ + idi / ai / kimakɔɲe / idisɛ + mwa / idi + sɛmwa / idisɛm>iladej>adisɛ + m:wa / mɛdnɑ̃di + arɛɲe / tyafɛ̃ / idi + wiwi / bokudəmɑ̃ʒeɛsɔtis> / bokudəmɑ̃ʒeɛsɔ:ti / lɛ>lɛ + (i)latumɑ̃ʒe /",
+              "transl": {
+                "@value": "tellement faim faim c'était au village maintenant il passait dans les champs de manioc maintenant il est venu (cogner) (une) racine de manioc il dit aïe qui m'a cogné il dit c'est moi il dit c'est moi (il a déjà dit) c'est moi maintenant (il) dit araignée tu as faim il dit oui oui beaucoup de manger est sorti beaucoup de manger est sorti le (il) a tout mangé.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 610988.3,
+          "end": 645174.4
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a049",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "33",
+              "content": "/ mɛdnɑ̃ / isɛavɑ̃se + dɪvɑ̃dɪvɑ̃dɪvɑ̃ / (i)lavi / ɛ̃baʀigdə + m:jɛl / mɛdnɑ̃ / ləpətisuləgudrɔ̃ / ila / kʀøzeɛ̃tʀu / metənɑ̃ + ila(mi~mjɛl)dədɑ̃ / tuʒu: / kɑ̃ikitovilaʒ / kɑ̃ivjɛ̃ / kɑ̃laswaf / ivjɛ̃ / i(vaprɑ̃n) / m:m:m (*) / epʏi + ibwa / isɑ̃va /",
+              "transl": {
+                "@value": "maintenant il s'est avancé devant devant devant (il) a vu (un, une) barrique de miel maintenant le petit se soulait (dans le) goudron il a creusé un trou maintenant il a mis (le) miel dedans toujours quand il (quitte, part) (au) village quand il vient quand il a soif il vient il va prendre mh (*) et puis il boit il s'en va",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 645584.8,
+          "end": 666612
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a050",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "33",
+              "content": "/ kɑ̃ivɛ̃ + kɑ̃laswaf + ibwa / m:m:m / kɑ̃: : + sɛfini / ipa:tɛɑ̃kɔ:la + kɔɲe / ila + kɔɲeɑ̃kɔ: / ilakɔɲeɑ̃kɔ: + dɑ̃rasindəmaɲɔk / idi / ai / kimakɔɲe / idi + sɛm:wa / ɛ̃kɛtyafɛ̃ / idi + wi / bokudəmjɛl + sɔ:tɛɑ̃kɔ:sylʏi / ilamɑ̃ʒe + tu / mɛdnɑ̃ + idi / mɛdnɑ̃ / i:idi / mɛdnɑ̃ + idi / i>i + iʃoz /",
+              "transl": {
+                "@value": "quand il vient quand il a soif il boit mh quand c'est fini il partait encore (là, il a) cogné il a cogné encore il a cogné encore dans (la) racine de manioc il dit aïe qui m'a cogné il dit c'est moi hein que tu as faim il dit oui beaucoup de miel sortait encore sur lui il a mangé tout maintenant il dit maintenant il dit maintenant il dit [i] chose",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 666612,
+          "end": 697674.9
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a051",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "33",
+              "content": "/ ila>lavy + ɛ̃baʀidəmjɛl / jal>ɛfɛpaɛspʀɛ / lafɛpaɛspʀɛ / ilakɔɲe / ɛ̃ʀasidəmaɲɔkɑ̃kɔ: / bokudəmɑ̃ʒeɛsɔ:ti / ilatumɑ̃ʒe + ilapry / ləmjɛl / lavyɛ̃mjɛlɑ̃kɔ: + laprypwalealamezɔ̃ / tu: + safɑmiavɛswaf / tusafamavɛswaf / mɛdnɑ̃isəkaʃ + epʏi:bwa /",
+              "transl": {
+                "@value": "il a vu (un, une) barrique de miel il y a (elle, il) fait pas exprès (elle, il) fait pas exprès il a cogné (un, une) racine de manioc encore beaucoup de manger est sorti il a tout mangé il a pris le miel il a vu un miel encore il a pris pour aller à la maison (tout, toute) sa (famille) avait soif (tout, toute) sa famille ils avaient soif maintenant il se cache et puis (il) boit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 697674.9,
+          "end": 722365.9
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a052",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "33",
+              "content": "/ idikp + nɔ̃ + sasɛrjɛ̃ / kɛ + isamys / ʒykɑ̃: : : / jalɛsɛ̃n>alɛsɛ̃napadəbu / ilalɛɑ̃kɔ:oʃɑ̃ / mɛdnɑ̃ / sɔ̃pətifrɛ + aʀɛɲe + sɔ̃pətifrɛ: / lɛvəni + latuby / latubyləmjɛl / mɛdnɑ̃ / (djɛ)kʀaze>laekʀazepimɑ̃ / boku + lamidɑ̃labaʀik / lami + lola + (kulekule~tunetune) / mɛdnɑ̃ / (ja)aʀɛɲe /",
+              "transl": {
+                "@value": "il dit que non ça c'est rien que il s'amuse (jusqu'en, pendent longtemps) il a laissé il a laissé n'a pas bu il allait encore au champs maintenant son petit frère araignée son petit frère (il) est venu il a tout bu il a tout bu le miel maintenant (de) écraser il a écrasé (du) piment beaucoup il (l') a mis dans la barrique il a mis l'eau-là (coulait, tournait) maintenant il y a (l') araignée-là",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 722365.9,
+          "end": 748809.2
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a053",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "33",
+              "content": "/ lɛ>kɑ̃lɛ -a -o la + - - - + - - - / ilavɛswaf / ikuʀɛkuʀɛ + ʀəvəni: / mɛdnɑ̃ + kɑ̃laby / ila>laʒ:əte / ph: (*) / dikɛ + nɔ̃ + sɛpabɔ̃ / jaləpətipʀɑ̃laɑ̃kɔ: + laby / di + nɔ̃ + sɛpimɑ̃ / mɛ̃tənɑ̃ / lʏikjafɛsa + mɛ̃tənɑ̃ + ilafɛpaɛspɛ + lʏimɛm + ilɛvəni /",
+              "transl": {
+                "@value": "quand il est (XXXXXXXXX) il avait soif il courait courait (revenir, revenu) maintenant quand il a bu il a jeté pff (*) (il) dit que non c'est pas bon il y a le petit (il) prend là encore il a bu il dit non c'est (du) piment maintenant lui qui a fait ça maintenant il a fait pas exprès lui-même il est venu",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 748809.2,
+          "end": 766889.4
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a054",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "33",
+              "content": "/ ph: (*) / ilaʒəte / mɛdnɑ̃ / idsa> + idi>ɛ> / idisɛ: / idi + sɛ>sɛpabɔ̃ + kəsɛpimɑ̃ / mɛdnɑ̃ + ilɛpa:tioʃɑ̃ / lafɛpaɛsprɛ / ilakɔɲe / ɛ̃ʀasindɛ>ɛ̃>ɛ / də> / ɛ̃ / lakɔɲelaʀasindəmaɲɔkɑ̃kɔ: / maɲɔkladəmãnde / tyafɛ / idi + wiwi / kɛlafɛ /",
+              "transl": {
+                "@value": "pff (*) il a jeté maintenant il dit ça il dit ah il dit c'est il dit c'est pas bon que c'est (du) piment maintenant il est parti au champs il a fait pas exprès il a cogné (un, une) racine de un il a cogné la racine de manioc encore manioc (l', lui) a demandé tu as faim il dit oui oui que il a faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 766908.2,
+          "end": 790404.5
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a055",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "33",
+              "content": "/ mɛ̃dnɑ̃ / ɛ̃ / ɛ̃ / ləmaɲɔklamɛ̃nɑ̃ / izɔ̃pryʃikɔt / (ɛtuʒu:)ɔ̃pryʃikɔt / mɛdnɑ̃ / javɛlɛmaɲɔkkɔmsa / javɛləmaɲɔk / maɲɔk / maɲɔk / maɲɔk / maɲɔkisi + maɲɔkisi + maɲɔkisi (*) / mɛdnɑ̃ / arɛɲelɛvəni + letɛla (**) /",
+              "transl": {
+                "@value": "maintenant euh le manioc là maintenant ils ont pris (une) chicotte (est toujours) (ils) ont pris (une) chicotte maintenant il y avait (les, le) manioc comme ça il y avait le manioc manioc manioc manioc ici manioc ici manioc ici maintenant (l') araignée il était là (**)",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 790404.5,
+          "end": 809520.1
+        },
+        {
+          "id": "11280.100/crdo-FRA_PK_IV_10_SOUND_a056",
+          "media": "11280.100/crdo-FRA_PK_IV_10_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": "33",
+              "content": "/ mɛdnɑ̃ + ladi / jɛfɛ̃ / mɛdnɑ̃ + lɔ̃tuʒu: - - ʃikɔt / ɔ̃kmɑ̃sela / ʃikote + ʃikote + ʃikote / wala / zɔ̃ʃikote + ʒyskɑ̃: : : / ʃikote + ʃikote / mɛdnɑ̃ / laf:ʏi / lɛpa:ti /  (sakɔ̃:saeble) / lakɔ̃(mɑ̃)selaʀɛɲemɛdnɑ̃ / kɑ̃ / kɑ̃tivjɛ̃ / imɔ̃(t)syləmy: / kɑ̃ntivølɛtye + imɔ̃sylɛmy / sɛtu //",
+              "transl": {
+                "@value": "maintenant (il, il lui) a dit j'ai faim maintenant (ils, ils l') ont toujours (la) chicotte (ils) ont commencé là chicotter chicotter chicotter voilà ils ont chicotté (jusqu'en, pendant longtemps) chicotter chicotter maintenant il a fui il est parti ça comme ça (XX) il a commencé l'araignée maintenant quand il vient il monte sur le mur quand il veut le tuer il monte sur le mur c'est tout.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 809520.1,
+          "end": 835326.3
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-FSL-CUC023_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:52+00:00",
+        "dc:modified": "2016-06-01T23:47:52+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "Corpus LS-Colin sur plusieurs genres discursifs (Josette Bouchauveau et Henri Attia)"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/cuxac/CUC023_low.mp4",
+          "meta": {
+            "dc:duration": 1628000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "Corpus LS-Colin sur plusieurs genres discursifs (Josette Bouchauveau et Henri Attia)"
+            },
+            "dc:format": "video/mp4",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/cuxac/masters/CUC023.mp4",
+          "meta": {
+            "dc:duration": 1628000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "Corpus LS-Colin sur plusieurs genres discursifs (Josette Bouchauveau et Henri Attia)"
+            },
+            "dc:format": "video/mp4",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/cuxac/CUC023_low.ogg",
+          "meta": {
+            "dc:duration": 1628000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "Corpus LS-Colin sur plusieurs genres discursifs (Josette Bouchauveau et Henri Attia)"
+            },
+            "dc:format": "video/ogg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a001",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 2290
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a002",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": " C'est l'histoire d'un cheval. Dans la campagne, sur une étendue vallonnée, il y a de l'herbe verte partout.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 2290,
+          "end": 11670
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a003",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Un cheval galope, il est content de galoper. Soudain, il s'arrête, surpris.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 11670,
+          "end": 16150
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a004",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Il aperçoit une vache qui le regarde : « Tiens, voilà, une vache qui est là, elle rumine ! » se dit-il.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 16150,
+          "end": 20510
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a005",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "\"Oh! J'ai bien envie de la rejoindre!\" se dit le cheval. Il galope pour prendre de l'élan, saute, mais s'emmêle les jambes. La vache s'en approche et le regarde.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 20510,
+          "end": 30480
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a006",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Puis elle regarde vers le haut: c'est l'oiseau qui revient avec une trousse à pharmacie et la dépose par terre.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 30480,
+          "end": 35990
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a007",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "La vache s'approche, saisit quelque chose (une bande) et l'enroule autour de la jambe du cheval, qui se laisse faire. Il se remet debout, tout content de pouvoir marcher. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 35990,
+          "end": 43670
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a008",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Et tous les trois sont contents/ils s'entendent bien. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 43670,
+          "end": 47260
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a009",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 47260,
+          "end": 50150
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a010",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Ça y est..  ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 50150,
+          "end": 52160
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a011",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "La deuxième histoire: \"Les Oiseaux\". ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 52160,
+          "end": 55570
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a012",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Oh là là ! ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 55570,
+          "end": 57050
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a013",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "A la campagne, dans un jardin à la surface bosselée, il y a un arbre. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 57050,
+          "end": 61950
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a014",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Sur une branche fine et ondulée de l'arbre, il y a un nid d'oiseau. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 61950,
+          "end": 67840
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a015",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "L'oiseau s'approche du nid, regarde dedans, il y ses oisillons.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 67840,
+          "end": 70710
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a016",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "L'oiseau est perché sur le nid. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 70710,
+          "end": 71470
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a017",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Un chat s'approche, la queue en l'air, et regarde vers le nid. Il pense: \"J'ai envie de manger les oisillons…\" ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 71470,
+          "end": 78310
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a018",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Puis il voit la mère oiseau qui s'en va. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 78310,
+          "end": 80270
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a019",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Il se demande : \"Ouh...Comment je vais atteindre la branche?\" Il réfléchit, s'approche de l'arbre et grimpe.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 80270,
+          "end": 85950
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a020",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Le chien s'approche et attrape la queue du chat; celui-ci s'agrippe à l'arbre tant qu'il peut mais lâcle prise, tombe par terre et s'enfuit. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 85950,
+          "end": 90790
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a021",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Le chien le poursuit. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 90790,
+          "end": 93160
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a022",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "L'oiseau arrive, avec un ver de terre et donne la becquée à ses oisillons. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 93160,
+          "end": 97290
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a023",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Les oisillons gobent le ver. Et voilà! ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 97290,
+          "end": 99550
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a024",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 99550,
+          "end": 398879
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a025",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Maintenant, je vais vous expliquer une recette de cuisine, j'en choisis une qui vient de mon pays natal. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 398879,
+          "end": 409239
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a026",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Ma grand mère cuisinait et je la regardais, c'est une véritable tradition familliale, une spécialité typique d'une région: l'Allier. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 409239,
+          "end": 423319
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a027",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "C'est du paté Boubonnais. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 423319,
+          "end": 433479
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a028",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "En fait, c'est pas du paté, c'est rond et épais : une tourte, voilà. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 433479,
+          "end": 440159
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a029",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "dans ce plat, il y a des pommes de terre. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 440159,
+          "end": 442079
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a030",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Comment faire ? Donc, on prend de la pâte brisée.              On peut l'acheter toute faite déjà enroulée, on ouvre et elle se déroule très vite.  ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 442079,
+          "end": 454359
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a031",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "c'était la première chose, deuxièmement, on peut la faire avec de la farine, on forme un puit  ...et on y verse de l'eau ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 454359,
+          "end": 460879
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a032",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "on mélange, puis on fait fondre le beurre avec un peu d'eau , du sel et on verse le tout dans la pâte. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 460879,
+          "end": 468359
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a033",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "on mélange avec les mains,  puis on forme une boule qu'on laisse reposer environ 1/2 heure. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 468359,
+          "end": 475559
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a034",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "voilà, ou bien on  achète  tout fait , c'est bien et c'est bon. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 475559,
+          "end": 481159
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a035",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "L'autre pâte, faite à la main, a un meilleur goût mais on peut la rater... ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 481159,
+          "end": 485519
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a036",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Elle peut être trop liquide, tandis que l'autre pâte c'est plus facile, il suffit de l'acheter. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 485519,
+          "end": 488239
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a037",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Alors, on pose la pâte sur le plat et on l'aplatit. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 488239,
+          "end": 492439
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a038",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "L'autre pâte, il faut l'étaler au rouleau, la mettre bien à plat et la laisser. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 492439,
+          "end": 495829
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a039",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "On prend des pommes de terre de belle grosseur, quelques unes ou plusieurs, environ un kilo, peu importe, une certaine quantité. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 495829,
+          "end": 501959
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a040",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "On épluche les pommes de terre, on les lave, puis les sécher avec une serviette. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 501959,
+          "end": 506999
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a041",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Lorqu'elles sont sèches, on les coupe en fines tranches et on les met sur la pâte, on répartit bien et on sale un peu.  ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 506999,
+          "end": 514389
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a042",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "On remet une couche de tranches de pommes de terre, on étale bien puis on sale, et ainsi de suite jusq'à bien remplir le plat. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 514389,
+          "end": 520599
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a043",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "on prend une deuxième pâte qu'on met par dessus les pommes de terre et on ourle les bords. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 520599,
+          "end": 525529
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a044",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "on fait le tour du plat en ourlant, il ne faut pas oublier les œufs. On sépare le blanc du jaune et on jette le blanc. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 525529,
+          "end": 532639
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a045",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "On bat le jaune d'œuf, puis on l'étale sur la pâte, à la main ou avec un pinceau. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 532639,
+          "end": 536359
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a046",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "lorque c'est bien étalé, on met dans le four. Mais avant le four doit être chaud. Environ 10 min à préchauffer, ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 536359,
+          "end": 542679
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a047",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "on enfourne le plat et on met le minuteur sur 30 min environ. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 542679,
+          "end": 546679
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a048",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Le thermostat du four doit être à peu près à 7, …7 c'est environ 180 à 200 degrés. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 546679,
+          "end": 552989
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a049",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Le four chauffe, et lorsqu'on aperçoit, tout dépend du temps, parfois c'est rapide ou lent, on aperçoit la pâte dorée, ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 552989,
+          "end": 559509
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a050",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "lègèrement marron sur le dessus de la tarte, c'est parfait ! On sort le plat. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 559509,
+          "end": 564399
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a051",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Il faut attendre pour découper la pâte. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 564399,
+          "end": 568839
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a052",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "La pâte de dessus, comme un couvercle, avec un couteau, on découpe tout autour",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 568839,
+          "end": 574029
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a053",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "On enlève la pâte et on la pose à côté, et on verse un bon pot de crème fraîche. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 574029,
+          "end": 580599
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a054",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "on l'étale , puis il faut remettre la croûte sur la crème fraîche, et en plus couvrir avec un torchon pour bien garder au chaud. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 580599,
+          "end": 591559
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a055",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "On attend que la crème se diffuse, les pommes de terre… ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 591559,
+          "end": 595559
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a056",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "la crème passe à travers les couches de pommes de terre, puis forme une couche de crème au fond. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 595559,
+          "end": 598959
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a057",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Ceci pendant environ 1/2 heure. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 598959,
+          "end": 602999
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a058",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Ensuite, on porte le plat, on coupe les tranches avec un couteau. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 602999,
+          "end": 608359
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a059",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "La famille ou des amis, sont tous autour à regarder avec gourmandise. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 608359,
+          "end": 611999
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a060",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Cela sort de l'ordinaire, c'est original ! ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 611999,
+          "end": 614359
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a061",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Je leur dis qu'ils vont aimer, c'est facile d'être tenté d'en manger!",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 614359,
+          "end": 620159
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a062",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "On sert des tranches, ils mangent :\"Qu'est-ce que c'est bon!\", ça fond dans la bouche et fait saliver, on en rêve. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 620159,
+          "end": 625389
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a063",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 625389,
+          "end": 625396
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a064",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Ce plat est soit une entrée, soit il se mange avec un rôti, ou bien avec une salade. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 625396,
+          "end": 632316
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a065",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Pas la peine d'ajouter des légumes, ce plat fait office de légume.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 632316,
+          "end": 633996
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a066",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Voilà. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 633996,
+          "end": 634526
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a067",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 634526,
+          "end": 782179
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a068",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "C'est l'histoire d'un cheval.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 782179,
+          "end": 785959
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a069",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Dans un champ vallonné, il y a un cheval qui s'approche d'une barrière et dit: \"bonjour \"",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 785959,
+          "end": 792599
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a070",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "de l'autre côté , la vache répond : \"bonjour\". Sur la barrière, un oiseau est perché. Le cheval avance et dit :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 792599,
+          "end": 797879
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a071",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "\"je veux jouer avec toi\" , la vache répond : \"c'est impossible, la barrière",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 797879,
+          "end": 800919
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a072",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "nous sépare\" \"moi je peux sauter\" dit le cheval. La vache : \"Attention, c'est dangereux\". Le cheval reprend : ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 800919,
+          "end": 806519
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a073",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "\"Attends!\" , il recule, galope, la barrière se rapproche, il saute, mais heurte maladroitement la barrière, ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 806519,
+          "end": 812009
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a074",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "tombe et se blesse. La vache :\" Ben voilà ! Je te l'avais dit de faire attention, c'est dangereux. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 812009,
+          "end": 815599
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a075",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "\"Voilà, je te l'avais bien dit!\". \"Hey, l'oiseau, va chercher (ce qu'il faut)!\" L'oiseau répond: \"Oui\" et il s'envole, saisis quelque chose et revient",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 815599,
+          "end": 820029
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a076",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "là dedans, il y a une boite à pharmacie, et la dépose. La vache saisis une bande avec sa bouche, ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 820029,
+          "end": 824399
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a077",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "et le cheval tend sa jambe, la vache le soigne en enroulant la bande. Et voilà ! ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 824399,
+          "end": 831519
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a078",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 831519,
+          "end": 833929
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a079",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Le deuxième thème est celui des oiseaux. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 833929,
+          "end": 838229
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a080",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Sur le tronc d'un arbre, il y a une branche avec un nid. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 838229,
+          "end": 841839
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a081",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Dans le nid, il y a un oiseau. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 841839,
+          "end": 843119
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a082",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Et là, dans le nid, il y a des bébés oiseaux. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 843119,
+          "end": 845279
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a083",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "L'oiseau sent qu'il a faim, il faut nourrir les petits. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 845279,
+          "end": 848399
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a084",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "L'oiseau part chercher des vers de terre et prend son envol et s'en va. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 848399,
+          "end": 851549
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a085",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Un chat s'approche de l'arbre, il a envie de manger ces bébés qui sont là haut . ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 851549,
+          "end": 855119
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a086",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Il avance et grimpe à l'arbre. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 855119,
+          "end": 857759
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a087",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Un autre (animal), un chien l'aperçoit et s'avance pour attraper la queue du chat qui grimpe. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 857759,
+          "end": 863159
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a088",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Sa queue pendouille, le chien saisit la queue du chat qui s'agrippe à l'arbre mais il lâche prise et tombe. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 863159,
+          "end": 868859
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a089",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Le chien et le chat s'enfuient. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 868859,
+          "end": 871709
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a090",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "L'oiseau revient avec des ver dans le bec et, sans se rendre compte de ce qui s'est passé, donne la becquée aux oisillons. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 871709,
+          "end": 878359
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a091",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 878359,
+          "end": 987409
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a092",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Maintenant, le thème de la cuisine. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 987409,
+          "end": 991599
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a093",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "D'abord, il s'agit d'une recette avec des pommes de terre. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 991599,
+          "end": 995959
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a094",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "En premier, on prend des pommes de terre de belle grosseur, comme ça, puis on les râpe. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 995959,
+          "end": 1000879
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a095",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Les pommes de terre sont râpées. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1000879,
+          "end": 1005119
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a096",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Ensuite on met la râpe de côté. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1005119,
+          "end": 1006479
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a097",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "On râpe deux pommes de terre, c'est tout, puis on les met de côté. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1006479,
+          "end": 1008669
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a098",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Deuxièmement, on prend un oignon assez gros et on le râpe. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1008669,
+          "end": 1013399
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a099",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "De même, les oignons sont râpés. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1013399,
+          "end": 1016599
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a100",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "On ajoute de l'ail, qu'on râpe aussi. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1016599,
+          "end": 1021719
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a101",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "On mélange le tout dans un saladier. Dedans, il y a donc les pommes de terre, l'oignon et l'ail. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1021719,
+          "end": 1025879
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a102",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "On mélange. Moi, j'ajoute deux cuillères à soupe de farine, ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1025879,
+          "end": 1033839
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a103",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Ensuite, on verse un peu d'huile. On malaxe bien, on mélange tout. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1033839,
+          "end": 1039109
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a104",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Il y a aussi un œuf à casser et à jeter dans le mélange. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1039109,
+          "end": 1042469
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a105",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Malaxer et mélanger. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1042469,
+          "end": 1045159
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a106",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Dans une casserole… ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1045159,
+          "end": 1046839
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a107",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "une poëlle moyenne, ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1046839,
+          "end": 1047439
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a108",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "la poser sur le gaz, y verser de l'huile. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1047439,
+          "end": 1051119
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a109",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Chauffer et lorsque c'est bien chaud, je fais une galette et ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1051119,
+          "end": 1052349
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a110",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "je la dépose dans la poëlle. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1052349,
+          "end": 1054759
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a111",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Elle frit, lorsque c' est bien cuit, secouer un peu la poëlle. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1054759,
+          "end": 1057439
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a112",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Le mélange devient marron et un peu dur. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1057439,
+          "end": 1059359
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a113",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Prendre la galette et la mettre à côté. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1059359,
+          "end": 1060719
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a114",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Ah! C'est délicieux à manger!...",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1060719,
+          "end": 1062679
+        },
+        {
+          "id": "11280.100/crdo-FSL-CUC023_SOUND_a115",
+          "media": "11280.100/crdo-FSL-CUC023_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "transl": {
+                "@value": "Voilà. ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1062679,
+          "end": 1063079
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:52+00:00",
+        "dc:modified": "2016-06-01T23:47:52+00:00",
+        "dc:title": {
+          "@language": "en",
+          "@value": "Kijin i khîââk ma ko-ak."
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/145138_KHIAAK_KO_AK_22km.wav",
+          "meta": {
+            "dc:duration": 90000,
+            "dc:title": {
+              "@language": "en",
+              "@value": "Kijin i khîââk ma ko-ak."
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/145138.wav",
+          "meta": {
+            "dc:duration": 90000,
+            "dc:title": {
+              "@language": "en",
+              "@value": "Kijin i khîââk ma ko-ak."
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/145138_KHIAAK_KO_AK_44k.mp3",
+          "meta": {
+            "dc:duration": 90000,
+            "dc:title": {
+              "@language": "en",
+              "@value": "Kijin i khîââk ma ko-ak."
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a001",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Vhajama nai khîââk ma ko-ak.",
+              "transl": {
+                "@value": "Conte de la poule sultane et du coq.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 1824,
+          "end": 6004
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a002",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ni naxâât pwagiik xe hli thu gaan khîââk ma ko-ak.",
+              "transl": {
+                "@value": "Un jour, tous deux coloriaient, la poule sultane et le coq.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 6004,
+          "end": 13474
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a003",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "I khabwe a khîââk shi ko-ak khabwe: \"êna xe co taabwa me na diya gââlâ-m\".",
+              "transl": {
+                "@value": "La poule sultane dit au coq: \"maintenant assieds-toi pour que je te colorie\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 13474,
+          "end": 20284
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a004",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "I taabwa axaleny ko-ak ma i u thu gââlâ-n a axaleny khîââk,",
+              "transl": {
+                "@value": "Le coq s'assoit pour que la poule sultane le colorie ;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 20284,
+          "end": 26544
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a005",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "thu gaan khîââk me i na roven yayamewu gaan bwe axaleny ko.",
+              "transl": {
+                "@value": "la poule sultane colorie et met toutes sortes de couleurs sur le coq.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 26544,
+          "end": 32154
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a006",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mon le dua i toven na i khabwe a ko-ak khabwe: \"êna xe mwaa co. Co mwaa taabwa me na diya gââlâ-m\".",
+              "transl": {
+                "@value": "Après, quand elle a fini, le coq dit \"maintenant à ton tour, à ton tour de t'asseoir pour que je te colorie\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 32154,
+          "end": 40934
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a007",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Na i taabwa axaleny khîââk me i thu gââlâ-n a ko.",
+              "transl": {
+                "@value": "La poule sultane s'assoit pour que le coq la colorie.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 40934,
+          "end": 46984
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a008",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Kia fo i diya axaleny ko, i xam tii axaleny me i xau dadan, dadan xûûlî fagau-n na pwâ ulo bwaa-n.",
+              "transl": {
+                "@value": "Ce coq ne s'en fait pas, lui par contre la barbouille et son corps est entièrement noir avec un peu de rouge sur la tête.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 46984,
+          "end": 53954
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a009",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Na i khabwe shi khîââk khabwe: \"Xu toven. Ena xe co tu bwaxexet me yo axe hâlûû-m na ni gelac.\"",
+              "transl": {
+                "@value": "Alors il dit à la poule sultane: \"C'est fini. Maintenant, va au miroir pour voir ton image dans la glace.\"",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 53954,
+          "end": 60984
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a010",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "I khabwe a khîââk khabwe: \"elo\".",
+              "transl": {
+                "@value": "La poule sultane dit \"oui\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 60984,
+          "end": 67024
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a011",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "I tu khîââk xa bwaxexet.",
+              "transl": {
+                "@value": "La poule sultane va se regarder.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 67024,
+          "end": 68564
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a012",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "I u axe xe mwang hlaleny i diya a ko na bwe-n na i u tîlîxââc me i thodavi ko khabwe:",
+              "transl": {
+                "@value": "Elle voit la laideur de ce que le coq a fait sur elle, elle se met en colère et maudit le coq disant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 68564,
+          "end": 76364
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a013",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "\"Thaxapuxet êna ni taan hleny xe co ko xe co khuwo bwa ja, na na xe e (=io) na khuwo habuxi hlaabai aayo.",
+              "transl": {
+                "@value": "\"A partir de maintenant, de ce jour, toi le coq, tu mangeras sur les détritus, mais moi, je mangerai avant les chefs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 76364,
+          "end": 85916
+        },
+        {
+          "id": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_a014",
+          "media": "11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Toven.",
+              "transl": {
+                "@value": "Fin.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 85916,
+          "end": 87456
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-ESLO1_ENT_047",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:53+00:00",
+        "dc:modified": "2016-06-01T23:47:53+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ESLO1: entretien 047"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/eslo/ESLO1_ENT_047.mp3",
+          "meta": {
+            "dc:duration": 3779000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ESLO1: entretien 047"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/eslo/masters/ESLO1_ENT_047.wav",
+          "meta": {
+            "dc:duration": 3779000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ESLO1: entretien 047"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/eslo/ESLO1_ENT_047_22km.wav",
+          "meta": {
+            "dc:duration": 3779000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ESLO1: entretien 047"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [
+        {
+          "id": "topics",
+          "content": {
+            "mimetype": "application/json",
+            "data": [
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc001",
+                "desc": "QP1"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc002",
+                "desc": "QP3"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc003",
+                "desc": "QP4"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc004",
+                "desc": "T1"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc005",
+                "desc": "T2"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc006",
+                "desc": "T3"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc007",
+                "desc": "T4"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc008",
+                "desc": "T5"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc009",
+                "desc": "T7"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc010",
+                "desc": "T8"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc011",
+                "desc": "T9"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc012",
+                "desc": "T10"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc013",
+                "desc": "T11"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc014",
+                "desc": "L1"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc015",
+                "desc": "L2"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc016",
+                "desc": "L3"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc017",
+                "desc": "L4"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc018",
+                "desc": "E1"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc019",
+                "desc": "E2"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc020",
+                "desc": "E3"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc021",
+                "desc": "E4"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc022",
+                "desc": "E5"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc023",
+                "desc": "E6"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc024",
+                "desc": "E7"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc025",
+                "desc": "E8"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc026",
+                "desc": "E9"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc027",
+                "desc": "E12"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc028",
+                "desc": "E13"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc029",
+                "desc": "P1"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc030",
+                "desc": "P3"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc031",
+                "desc": "P4"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc032",
+                "desc": "QHQ1"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc033",
+                "desc": "P5"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc034",
+                "desc": "P6"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc035",
+                "desc": "P7"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc036",
+                "desc": "P8"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc037",
+                "desc": "P9"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc038",
+                "desc": "P10"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc039",
+                "desc": "BLC7"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc040",
+                "desc": "QS1"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc041",
+                "desc": "QS3"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc042",
+                "desc": "QS5"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc043",
+                "desc": "QS7"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc044",
+                "desc": "QS8"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc045",
+                "desc": "QS9"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc046",
+                "desc": "QS10"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc047",
+                "desc": "QS11"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc048",
+                "desc": "QS12"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc049",
+                "desc": "QS13"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc050",
+                "desc": "QS14"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc051",
+                "desc": "QS15"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc052",
+                "desc": "QS16"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc053",
+                "desc": "QS17"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc054",
+                "desc": "QS18"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc055",
+                "desc": "QS19"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc056",
+                "desc": "QS20"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc057",
+                "desc": "QS21"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc058",
+                "desc": "QS22"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc059",
+                "desc": "QS23"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc060",
+                "desc": "QS24"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc061",
+                "desc": "QS25"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc062",
+                "desc": "QS26"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc063",
+                "desc": "QS27"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc064",
+                "desc": "QS28"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc065",
+                "desc": "QS29"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc066",
+                "desc": "QS32"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc067",
+                "desc": "QS34"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc068",
+                "desc": "QS35"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc069",
+                "desc": "QS36"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc070",
+                "desc": "BLC1"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc071",
+                "desc": "BLC2"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc072",
+                "desc": "BLC3"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc073",
+                "desc": "BLC4"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc074",
+                "desc": "BLC5"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_tpc075",
+                "desc": "BLC6"
+              }
+            ]
+          }
+        },
+        {
+          "id": "speakers",
+          "content": {
+            "mimetype": "application/json",
+            "data": [
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_spkr001",
+                "name": "CS"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_spkr002",
+                "name": "BX11"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_spkr003",
+                "name": "047INC1"
+              },
+              {
+                "id": "11280.100/crdo-ESLO1_ENT_047_spkr004",
+                "name": "047INC2"
+              }
+            ]
+          }
+        }
+      ],
+      "lists": [
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn001",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0001"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0002"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0003"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0004"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0005"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0006"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc001"
+            },
+            "corpus:begin": 0,
+            "corpus:end": 19456
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn002",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0007"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0008"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0009"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0010"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0011"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0012"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0013"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0014"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0015"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0016"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc002"
+            },
+            "corpus:begin": 19456,
+            "corpus:end": 35517
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn003",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0017"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0018"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0019"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0020"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0021"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0022"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0023"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0024"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0025"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0026"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0027"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc003"
+            },
+            "corpus:begin": 35517,
+            "corpus:end": 56515
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn004",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0028"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0029"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0030"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0031"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0032"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0033"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0034"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0035"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0036"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0037"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0038"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc004"
+            },
+            "corpus:begin": 56515,
+            "corpus:end": 70014
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn005",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0039"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0040"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0041"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0042"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0043"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0044"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0045"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0046"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0047"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0048"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0049"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0050"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0051"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0052"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0053"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0054"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0055"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0056"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0057"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0058"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0059"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0060"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0061"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0062"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0063"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0064"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0065"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0066"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0067"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0068"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0069"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0070"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0071"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0072"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0073"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0074"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0075"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc005"
+            },
+            "corpus:begin": 70014,
+            "corpus:end": 166752
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn006",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0076"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0077"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0078"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0079"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0080"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0081"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0082"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0083"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0084"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0085"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0086"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0087"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0088"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0089"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0090"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0091"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0092"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0093"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0094"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0095"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0096"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0097"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0098"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0099"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0100"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0101"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0102"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0103"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0104"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc006"
+            },
+            "corpus:begin": 166752,
+            "corpus:end": 245708
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn007",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0105"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0106"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0107"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0108"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0109"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0110"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0111"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0112"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0113"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0114"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0115"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0116"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0117"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0118"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0119"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0120"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0121"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0122"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0123"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0124"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0125"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0126"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0127"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0128"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0129"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0130"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0131"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0132"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0133"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0134"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0135"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0136"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0137"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0138"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0139"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0140"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0142"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0143"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0144"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0145"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0146"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0147"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0148"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0149"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0150"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0151"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0152"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0153"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0154"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0155"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0156"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0157"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0158"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0159"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0160"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0161"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0162"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0163"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc007"
+            },
+            "corpus:begin": 245708,
+            "corpus:end": 386678
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn008",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0165"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0166"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0167"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0168"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0169"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0170"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0171"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0172"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0173"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0174"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0175"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0176"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0177"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0178"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0179"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0180"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0181"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0182"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0183"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0184"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0185"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0186"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0187"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0188"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0189"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0190"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc008"
+            },
+            "corpus:begin": 386678,
+            "corpus:end": 467850
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn009",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0191"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0192"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0193"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0194"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0195"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0196"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc009"
+            },
+            "corpus:begin": 467850,
+            "corpus:end": 480993
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn010",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0197"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0198"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0199"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0201"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0202"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0203"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0204"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0205"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0206"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0207"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0208"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0209"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0210"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc010"
+            },
+            "corpus:begin": 480993,
+            "corpus:end": 530904
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn011",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0211"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0212"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0213"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0214"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0215"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0216"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0217"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc011"
+            },
+            "corpus:begin": 530904,
+            "corpus:end": 542144
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn012",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0218"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0219"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0220"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0221"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0222"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0223"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc012"
+            },
+            "corpus:begin": 542144,
+            "corpus:end": 560616
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn013",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0224"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0225"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0226"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0227"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0228"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0229"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0230"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0231"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0232"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0233"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc013"
+            },
+            "corpus:begin": 560616,
+            "corpus:end": 585902
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn014",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0235"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0236"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0237"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0238"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0239"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0240"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0241"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0242"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0243"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0244"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0245"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0246"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0247"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0248"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0249"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0250"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc014"
+            },
+            "corpus:begin": 585902,
+            "corpus:end": 615718
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn015",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0251"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0252"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0253"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0254"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0255"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0256"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0257"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0258"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0259"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0260"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0261"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0262"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0263"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0264"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0265"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0266"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0267"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0268"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc015"
+            },
+            "corpus:begin": 615718,
+            "corpus:end": 649519
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn016",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0269"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0270"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0271"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0272"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0273"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0274"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0275"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0276"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc016"
+            },
+            "corpus:begin": 649519,
+            "corpus:end": 663127
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn017",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0278"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0279"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0280"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0281"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0282"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0283"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0284"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc017"
+            },
+            "corpus:begin": 663127,
+            "corpus:end": 684099
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn018",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0285"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0286"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0287"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0289"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0290"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0291"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0292"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0293"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0294"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0296"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0297"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0298"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0299"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0300"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0301"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0302"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0304"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0305"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0306"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0307"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0308"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0309"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0310"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0311"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0312"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0313"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0314"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0315"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0316"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0317"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0318"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc018"
+            },
+            "corpus:begin": 684099,
+            "corpus:end": 818988
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn019",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0319"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0321"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0322"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0323"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0324"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0325"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0326"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0327"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0328"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0329"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0331"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0332"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0333"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0334"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0335"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0336"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0337"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0338"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0339"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc019"
+            },
+            "corpus:begin": 818988,
+            "corpus:end": 908743
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn020",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0340"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0341"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0342"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0343"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0344"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0345"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0346"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0348"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc020"
+            },
+            "corpus:begin": 908743,
+            "corpus:end": 935786
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn021",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0349"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0350"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0352"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0353"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0354"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0355"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0356"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0357"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0358"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0359"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0360"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0361"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0362"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc021"
+            },
+            "corpus:begin": 935786,
+            "corpus:end": 991844
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn022",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0363"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0364"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0366"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0368"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0369"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0370"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0371"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0372"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0373"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0374"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0375"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0376"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0377"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0378"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0379"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc022"
+            },
+            "corpus:begin": 991844,
+            "corpus:end": 1048937
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn023",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0380"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0381"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0382"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0384"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0385"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0386"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0387"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0388"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc023"
+            },
+            "corpus:begin": 1048937,
+            "corpus:end": 1084973
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn024",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0389"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0390"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0391"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0392"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0393"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0394"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0395"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0397"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0398"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0399"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0400"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0402"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0403"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0404"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0405"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0406"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0407"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0408"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0409"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc024"
+            },
+            "corpus:begin": 1084973,
+            "corpus:end": 1201006
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn025",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0410"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0412"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0413"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0414"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0415"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc025"
+            },
+            "corpus:begin": 1201006,
+            "corpus:end": 1232303
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn026",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0416"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0417"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0418"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0419"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0420"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0421"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0422"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0423"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0424"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0425"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0426"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0427"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0428"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0429"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0430"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0431"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0432"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0433"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0434"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0435"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0436"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0437"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0438"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0439"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0440"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0441"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0442"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0443"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0444"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0445"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0446"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0447"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0448"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc026"
+            },
+            "corpus:begin": 1232303,
+            "corpus:end": 1320256
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn027",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0449"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0450"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0452"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0454"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0455"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc027"
+            },
+            "corpus:begin": 1320256,
+            "corpus:end": 1353464
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn028",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0456"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0457"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0458"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0460"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0461"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0462"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0463"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc028"
+            },
+            "corpus:begin": 1353464,
+            "corpus:end": 1402104
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn029",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0464"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0466"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0467"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0468"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0469"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0470"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0471"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc029"
+            },
+            "corpus:begin": 1402104,
+            "corpus:end": 1447976
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn030",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0472"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0473"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0474"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0475"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0476"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0477"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0478"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0479"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0480"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0481"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0482"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc030"
+            },
+            "corpus:begin": 1447976,
+            "corpus:end": 1492094
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn031",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0483"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0484"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0485"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0486"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0487"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0488"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0489"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0490"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0492"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0493"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0494"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0495"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0497"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0498"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0499"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0500"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0501"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0502"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc031"
+            },
+            "corpus:begin": 1492094,
+            "corpus:end": 1625611
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn032",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0504"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0506"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc032"
+            },
+            "corpus:begin": 1625611,
+            "corpus:end": 1651033
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn033",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0507"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0508"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0509"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0510"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0511"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0512"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0513"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0514"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0515"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0516"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0517"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0518"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0519"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0520"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0521"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc033"
+            },
+            "corpus:begin": 1651033,
+            "corpus:end": 1716957
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn034",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0522"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0523"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0524"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0525"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0526"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0527"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0528"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0529"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0530"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0531"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc034"
+            },
+            "corpus:begin": 1716957,
+            "corpus:end": 1743094
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn035",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0532"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0533"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0534"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0535"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc035"
+            },
+            "corpus:begin": 1743094,
+            "corpus:end": 1757678
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn036",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0536"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0537"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0538"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0539"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0540"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0541"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0542"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0543"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0544"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0545"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc036"
+            },
+            "corpus:begin": 1757678,
+            "corpus:end": 1800489
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn037",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0546"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0548"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0549"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc037"
+            },
+            "corpus:begin": 1800489,
+            "corpus:end": 1847833
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn038",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0550"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0551"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0552"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0554"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0555"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0556"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0557"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0558"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0559"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0560"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc038"
+            },
+            "corpus:begin": 1847833,
+            "corpus:end": 1881416
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn039",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0561"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0562"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0564"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0565"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0566"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0567"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0568"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0569"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0570"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0571"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0572"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0573"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0574"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc039"
+            },
+            "corpus:begin": 1881416,
+            "corpus:end": 1944521
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn040",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0575"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0576"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0577"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0578"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0579"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0580"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0581"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0582"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0583"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0584"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0585"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0586"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0587"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0588"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0589"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0590"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0591"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0592"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0593"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0594"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0595"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0596"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0597"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0598"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0599"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0600"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0601"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0602"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0603"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0604"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0605"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0606"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0607"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0608"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0609"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0610"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0611"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0612"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0613"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0614"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0615"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0616"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0617"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0618"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0619"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0620"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0621"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0622"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0623"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0624"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0625"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0626"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0627"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0628"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0629"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0630"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0631"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0632"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0633"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0634"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0635"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0636"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0637"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0638"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0639"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0640"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0641"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0642"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0643"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0644"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0645"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0646"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0647"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0648"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0649"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0650"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0651"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0652"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0653"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0654"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0655"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0656"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0657"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0658"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc040"
+            },
+            "corpus:begin": 1944521,
+            "corpus:end": 2180940
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn041",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0659"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0660"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0661"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0662"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0663"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0664"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0665"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0666"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0667"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0668"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0669"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc041"
+            },
+            "corpus:begin": 2180940,
+            "corpus:end": 2215813
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn042",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0670"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0671"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0672"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0673"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0675"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0676"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0677"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0678"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc042"
+            },
+            "corpus:begin": 2215813,
+            "corpus:end": 2243056
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn043",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0679"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0680"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0681"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0682"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0683"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0684"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0685"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0686"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0687"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0688"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0689"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0690"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0691"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0692"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0693"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0694"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0695"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0696"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0697"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0698"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0699"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0700"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0701"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0702"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0703"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0704"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc043"
+            },
+            "corpus:begin": 2243056,
+            "corpus:end": 2312432
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn044",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0705"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0706"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0707"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0708"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0709"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0710"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0712"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0713"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0714"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0715"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0716"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0717"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0718"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0719"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0720"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0721"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0722"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc044"
+            },
+            "corpus:begin": 2312432,
+            "corpus:end": 2388158
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn045",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0723"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0725"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0726"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0727"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0728"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0729"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0730"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0731"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0732"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0733"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc045"
+            },
+            "corpus:begin": 2388158,
+            "corpus:end": 2428438
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn046",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0734"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0735"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0736"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0737"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0738"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0739"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0740"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0741"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc046"
+            },
+            "corpus:begin": 2428438,
+            "corpus:end": 2453030
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn047",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0742"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0743"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0744"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0745"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0746"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0747"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0748"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0749"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0750"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0751"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0752"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0753"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0754"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0755"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0756"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc047"
+            },
+            "corpus:begin": 2453030,
+            "corpus:end": 2499753
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn048",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0757"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0758"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0759"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0760"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0761"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0762"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0763"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0764"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0765"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0766"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0767"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0768"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0769"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0770"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0771"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0772"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0773"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0774"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0775"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0776"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0777"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0778"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0779"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0780"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0781"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0782"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0783"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0784"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc048"
+            },
+            "corpus:begin": 2499753,
+            "corpus:end": 2595246
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn049",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0785"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0786"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0787"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0789"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0790"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0791"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0792"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0793"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0794"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0795"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0796"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0797"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0798"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0799"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0800"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0801"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0802"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc049"
+            },
+            "corpus:begin": 2595246,
+            "corpus:end": 2672084
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn050",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0803"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0804"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0805"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0806"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0807"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0808"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc050"
+            },
+            "corpus:begin": 2672084,
+            "corpus:end": 2693333
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn051",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0809"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0810"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0811"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0812"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0813"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0814"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0815"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0816"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0817"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0818"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0819"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0820"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0821"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0822"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0823"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0824"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc051"
+            },
+            "corpus:begin": 2693333,
+            "corpus:end": 2719698
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn052",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0825"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0826"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0827"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0828"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0829"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0830"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0831"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc052"
+            },
+            "corpus:begin": 2719698,
+            "corpus:end": 2750667
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn053",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0832"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0833"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0834"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0835"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0836"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0837"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0838"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0839"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0840"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0841"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc053"
+            },
+            "corpus:begin": 2750667,
+            "corpus:end": 2774288
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn054",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0842"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0843"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0844"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc054"
+            },
+            "corpus:begin": 2774288,
+            "corpus:end": 2784767
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn055",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0845"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0846"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc055"
+            },
+            "corpus:begin": 2784767,
+            "corpus:end": 2791620
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn056",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0847"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0848"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0849"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0850"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0851"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0852"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0853"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0854"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0855"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0856"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0857"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0858"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0859"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0860"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0861"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0862"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0863"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0864"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0865"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0866"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0867"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0868"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0869"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0870"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0871"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0872"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0873"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc056"
+            },
+            "corpus:begin": 2791620,
+            "corpus:end": 2856603
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn057",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0874"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0875"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0876"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0877"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0878"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0879"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0880"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0881"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0882"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0883"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0884"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0885"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0886"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0887"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0888"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0889"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0890"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0891"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0892"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0893"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc057"
+            },
+            "corpus:begin": 2856603,
+            "corpus:end": 2914680
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn058",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0894"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0895"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0896"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0897"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0898"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc058"
+            },
+            "corpus:begin": 2914680,
+            "corpus:end": 2931962
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn059",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0899"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0900"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0901"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0902"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0903"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0904"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0905"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0906"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0907"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0908"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc059"
+            },
+            "corpus:begin": 2931962,
+            "corpus:end": 2965129
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn060",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0909"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0910"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0911"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0912"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0913"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0914"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0915"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0916"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0917"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0918"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0919"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0920"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0921"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0922"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0923"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0924"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0925"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0926"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc060"
+            },
+            "corpus:begin": 2965129,
+            "corpus:end": 3023350
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn061",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0927"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0928"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0929"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0930"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0931"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0932"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0933"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0934"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0935"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0936"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0937"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0938"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0939"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0940"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0941"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0942"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0943"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0944"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0945"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0946"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0947"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0948"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0949"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0950"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0951"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0952"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0953"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc061"
+            },
+            "corpus:begin": 3023350,
+            "corpus:end": 3073982
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn062",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0954"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0955"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0956"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0957"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0958"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0959"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0960"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0961"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0962"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc062"
+            },
+            "corpus:begin": 3073982,
+            "corpus:end": 3106917
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn063",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0963"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0964"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0965"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0966"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0967"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0968"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0969"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0970"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0971"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0972"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0973"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0974"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0975"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc063"
+            },
+            "corpus:begin": 3106917,
+            "corpus:end": 3148115
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn064",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0976"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0977"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0978"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0979"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0980"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0981"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0982"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0983"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0984"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0985"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0986"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0987"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0988"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0989"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0990"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0991"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0992"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0993"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0994"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0995"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0996"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0997"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0998"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0999"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1000"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1001"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1002"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1003"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1004"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1005"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1006"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc064"
+            },
+            "corpus:begin": 3148115,
+            "corpus:end": 3239411
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn065",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1007"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1008"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1009"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1010"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1011"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1012"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1013"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1014"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1015"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1016"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1017"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1018"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1019"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc065"
+            },
+            "corpus:begin": 3239411,
+            "corpus:end": 3282501
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn066",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1020"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1021"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1022"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1023"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1024"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1025"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1026"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1027"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1028"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1029"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1030"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1031"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1032"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1033"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1034"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1035"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1036"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1037"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1038"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1039"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc066"
+            },
+            "corpus:begin": 3282501,
+            "corpus:end": 3324811
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn067",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1040"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1041"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1042"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1043"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1044"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc067"
+            },
+            "corpus:begin": 3324811,
+            "corpus:end": 3340299
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn068",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1045"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1046"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1047"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1048"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1049"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1050"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1051"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1052"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1053"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1054"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1055"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1056"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1057"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1058"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1059"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1060"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1061"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1062"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1063"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1064"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1065"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1066"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1067"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc068"
+            },
+            "corpus:begin": 3340299,
+            "corpus:end": 3417399
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn069",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1068"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1069"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1070"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1071"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1072"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1073"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1074"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1075"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1076"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1077"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1078"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1079"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1080"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1081"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1082"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1083"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1084"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1085"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1086"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1087"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc069"
+            },
+            "corpus:begin": 3417399,
+            "corpus:end": 3488335
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn070",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1088"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1089"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1090"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1091"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1092"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1093"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1094"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1095"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1096"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1097"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1098"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1099"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1100"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1101"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1102"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1103"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1104"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1105"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1106"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1107"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1108"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1109"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1110"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1111"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1112"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1113"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1114"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1115"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1116"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1117"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1118"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1119"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1120"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1121"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1122"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1123"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1125"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1126"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1127"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1128"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1129"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1130"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1131"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1132"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1133"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1134"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1135"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1136"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc070"
+            },
+            "corpus:begin": 3488335,
+            "corpus:end": 3636546
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn071",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1137"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1138"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1139"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1140"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1141"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1142"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1143"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1144"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1145"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1146"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1147"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1148"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1149"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1150"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1151"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1152"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1153"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1154"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1155"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1156"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc071"
+            },
+            "corpus:begin": 3636546,
+            "corpus:end": 3684982
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn072",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1157"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1158"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1159"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1160"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1161"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1162"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1163"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc072"
+            },
+            "corpus:begin": 3684982,
+            "corpus:end": 3705102
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn073",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1165"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1166"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1167"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1168"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1169"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1170"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1171"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1172"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1173"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1174"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc073"
+            },
+            "corpus:begin": 3705102,
+            "corpus:end": 3740039
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn074",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1175"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1176"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1177"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1178"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc074"
+            },
+            "corpus:begin": 3740039,
+            "corpus:end": 3747708
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_sctn075",
+          "items": [
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1179"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1180"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1181"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1182"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1183"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1184"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1185"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1186"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1187"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1188"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1189"
+            },
+            {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1190"
+            }
+          ],
+          "meta": {
+            "corpus:topic": {
+              "id-ref": "11280.100/crdo-ESLO1_ENT_047_tpc075"
+            },
+            "corpus:begin": 3747708,
+            "corpus:end": 3779059
+          }
+        }
+      ],
+      "annotation-types": [
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0001",
+          "dc:title": "Turn 1",
+          "corpus:begin": 0,
+          "corpus:end": 7709
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0002",
+          "dc:title": "Turn 2",
+          "corpus:begin": 7709,
+          "corpus:end": 9333
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0003",
+          "dc:title": "Turn 3",
+          "corpus:begin": 9333,
+          "corpus:end": 10832
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0004",
+          "dc:title": "Turn 4",
+          "corpus:begin": 10832,
+          "corpus:end": 11792
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0005",
+          "dc:title": "Turn 5",
+          "corpus:begin": 11792,
+          "corpus:end": 13760
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0006",
+          "dc:title": "Turn 6",
+          "corpus:begin": 13760,
+          "corpus:end": 19456
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0007",
+          "dc:title": "Turn 7",
+          "corpus:begin": 19456,
+          "corpus:end": 22158
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0008",
+          "dc:title": "Turn 8",
+          "corpus:begin": 22158,
+          "corpus:end": 23205
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0009",
+          "dc:title": "Turn 9",
+          "corpus:begin": 23205,
+          "corpus:end": 23678
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0010",
+          "dc:title": "Turn 10",
+          "corpus:begin": 23678,
+          "corpus:end": 27388
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0011",
+          "dc:title": "Turn 11",
+          "corpus:begin": 27388,
+          "corpus:end": 28066
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0012",
+          "dc:title": "Turn 12",
+          "corpus:begin": 28066,
+          "corpus:end": 32259
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0013",
+          "dc:title": "Turn 13",
+          "corpus:begin": 32259,
+          "corpus:end": 32746
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0014",
+          "dc:title": "Turn 14",
+          "corpus:begin": 32746,
+          "corpus:end": 33918
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0015",
+          "dc:title": "Turn 15",
+          "corpus:begin": 33918,
+          "corpus:end": 34196
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0016",
+          "dc:title": "Turn 16",
+          "corpus:begin": 34196,
+          "corpus:end": 35517
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0017",
+          "dc:title": "Turn 17",
+          "corpus:begin": 35517,
+          "corpus:end": 39898
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0018",
+          "dc:title": "Turn 18",
+          "corpus:begin": 39898,
+          "corpus:end": 40559
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0019",
+          "dc:title": "Turn 19",
+          "corpus:begin": 40559,
+          "corpus:end": 41376
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0020",
+          "dc:title": "Turn 20",
+          "corpus:begin": 41376,
+          "corpus:end": 44123
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0021",
+          "dc:title": "Turn 21",
+          "corpus:begin": 44123,
+          "corpus:end": 44405
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0022",
+          "dc:title": "Turn 22",
+          "corpus:begin": 44405,
+          "corpus:end": 48934
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0023",
+          "dc:title": "Turn 23",
+          "corpus:begin": 48934,
+          "corpus:end": 49163
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0024",
+          "dc:title": "Turn 24",
+          "corpus:begin": 49163,
+          "corpus:end": 50402
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0025",
+          "dc:title": "Turn 25",
+          "corpus:begin": 50402,
+          "corpus:end": 53191
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0026",
+          "dc:title": "Turn 26",
+          "corpus:begin": 53191,
+          "corpus:end": 54776
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0027",
+          "dc:title": "Turn 27",
+          "corpus:begin": 54776,
+          "corpus:end": 56515
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0028",
+          "dc:title": "Turn 28",
+          "corpus:begin": 56515,
+          "corpus:end": 58435
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0029",
+          "dc:title": "Turn 29",
+          "corpus:begin": 58435,
+          "corpus:end": 60351
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0030",
+          "dc:title": "Turn 30",
+          "corpus:begin": 60351,
+          "corpus:end": 61467
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0031",
+          "dc:title": "Turn 31",
+          "corpus:begin": 61467,
+          "corpus:end": 64071
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0032",
+          "dc:title": "Turn 32",
+          "corpus:begin": 64071,
+          "corpus:end": 64235
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0033",
+          "dc:title": "Turn 33",
+          "corpus:begin": 64235,
+          "corpus:end": 65000
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0034",
+          "dc:title": "Turn 34",
+          "corpus:begin": 65000,
+          "corpus:end": 65855
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0035",
+          "dc:title": "Turn 35",
+          "corpus:begin": 65855,
+          "corpus:end": 67142
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0036",
+          "dc:title": "Turn 36",
+          "corpus:begin": 67142,
+          "corpus:end": 67580
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0037",
+          "dc:title": "Turn 37",
+          "corpus:begin": 67580,
+          "corpus:end": 68484
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0038",
+          "dc:title": "Turn 38",
+          "corpus:begin": 68484,
+          "corpus:end": 70014
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0039",
+          "dc:title": "Turn 39",
+          "corpus:begin": 70014,
+          "corpus:end": 80842
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0040",
+          "dc:title": "Turn 40",
+          "corpus:begin": 80842,
+          "corpus:end": 81311
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0041",
+          "dc:title": "Turn 41",
+          "corpus:begin": 81311,
+          "corpus:end": 82163
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0042",
+          "dc:title": "Turn 42",
+          "corpus:begin": 82163,
+          "corpus:end": 88912
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0043",
+          "dc:title": "Turn 43",
+          "corpus:begin": 88912,
+          "corpus:end": 89416
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0044",
+          "dc:title": "Turn 44",
+          "corpus:begin": 89416,
+          "corpus:end": 93297
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0045",
+          "dc:title": "Turn 45",
+          "corpus:begin": 93297,
+          "corpus:end": 93575
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0046",
+          "dc:title": "Turn 46",
+          "corpus:begin": 93575,
+          "corpus:end": 95974
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0047",
+          "dc:title": "Turn 47",
+          "corpus:begin": 95974,
+          "corpus:end": 96618
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0048",
+          "dc:title": "Turn 48",
+          "corpus:begin": 96618,
+          "corpus:end": 103643
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0049",
+          "dc:title": "Turn 49",
+          "corpus:begin": 103643,
+          "corpus:end": 104380
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0050",
+          "dc:title": "Turn 50",
+          "corpus:begin": 104380,
+          "corpus:end": 112023
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0051",
+          "dc:title": "Turn 51",
+          "corpus:begin": 112023,
+          "corpus:end": 113449
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0052",
+          "dc:title": "Turn 52",
+          "corpus:begin": 113449,
+          "corpus:end": 113835
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0053",
+          "dc:title": "Turn 53",
+          "corpus:begin": 113835,
+          "corpus:end": 114968
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0054",
+          "dc:title": "Turn 54",
+          "corpus:begin": 114968,
+          "corpus:end": 115594
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0055",
+          "dc:title": "Turn 55",
+          "corpus:begin": 115594,
+          "corpus:end": 120674
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0056",
+          "dc:title": "Turn 56",
+          "corpus:begin": 120674,
+          "corpus:end": 121039
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0057",
+          "dc:title": "Turn 57",
+          "corpus:begin": 121039,
+          "corpus:end": 125389
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0058",
+          "dc:title": "Turn 58",
+          "corpus:begin": 125389,
+          "corpus:end": 126015
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0059",
+          "dc:title": "Turn 59",
+          "corpus:begin": 126015,
+          "corpus:end": 127806
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0060",
+          "dc:title": "Turn 60",
+          "corpus:begin": 127806,
+          "corpus:end": 132528
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0061",
+          "dc:title": "Turn 61",
+          "corpus:begin": 132528,
+          "corpus:end": 137208
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0062",
+          "dc:title": "Turn 62",
+          "corpus:begin": 137208,
+          "corpus:end": 137750
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0063",
+          "dc:title": "Turn 63",
+          "corpus:begin": 137750,
+          "corpus:end": 141092
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0064",
+          "dc:title": "Turn 64",
+          "corpus:begin": 141092,
+          "corpus:end": 141579
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0065",
+          "dc:title": "Turn 65",
+          "corpus:begin": 141579,
+          "corpus:end": 149127
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0066",
+          "dc:title": "Turn 66",
+          "corpus:begin": 149127,
+          "corpus:end": 149371
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0067",
+          "dc:title": "Turn 67",
+          "corpus:begin": 149371,
+          "corpus:end": 154147
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0068",
+          "dc:title": "Turn 68",
+          "corpus:begin": 154147,
+          "corpus:end": 155159
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0069",
+          "dc:title": "Turn 69",
+          "corpus:begin": 155159,
+          "corpus:end": 157596
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0070",
+          "dc:title": "Turn 70",
+          "corpus:begin": 157596,
+          "corpus:end": 158869
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0071",
+          "dc:title": "Turn 71",
+          "corpus:begin": 158869,
+          "corpus:end": 163633
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0072",
+          "dc:title": "Turn 72",
+          "corpus:begin": 163633,
+          "corpus:end": 164141
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0073",
+          "dc:title": "Turn 73",
+          "corpus:begin": 164141,
+          "corpus:end": 164892
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0074",
+          "dc:title": "Turn 74",
+          "corpus:begin": 164892,
+          "corpus:end": 165257
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0075",
+          "dc:title": "Turn 75",
+          "corpus:begin": 165257,
+          "corpus:end": 166752
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0076",
+          "dc:title": "Turn 76",
+          "corpus:begin": 166752,
+          "corpus:end": 170511
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0077",
+          "dc:title": "Turn 77",
+          "corpus:begin": 170511,
+          "corpus:end": 172688
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0078",
+          "dc:title": "Turn 78",
+          "corpus:begin": 172688,
+          "corpus:end": 172952
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0079",
+          "dc:title": "Turn 79",
+          "corpus:begin": 172952,
+          "corpus:end": 177302
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0080",
+          "dc:title": "Turn 80",
+          "corpus:begin": 177302,
+          "corpus:end": 178314
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0081",
+          "dc:title": "Turn 81",
+          "corpus:begin": 178314,
+          "corpus:end": 183672
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0082",
+          "dc:title": "Turn 82",
+          "corpus:begin": 183672,
+          "corpus:end": 184771
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0083",
+          "dc:title": "Turn 83",
+          "corpus:begin": 184771,
+          "corpus:end": 185209
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0084",
+          "dc:title": "Turn 84",
+          "corpus:begin": 185209,
+          "corpus:end": 192302
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0085",
+          "dc:title": "Turn 85",
+          "corpus:begin": 192302,
+          "corpus:end": 193119
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0086",
+          "dc:title": "Turn 86",
+          "corpus:begin": 193119,
+          "corpus:end": 193484
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0087",
+          "dc:title": "Turn 87",
+          "corpus:begin": 193484,
+          "corpus:end": 197239
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0088",
+          "dc:title": "Turn 88",
+          "corpus:begin": 197239,
+          "corpus:end": 202110
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0089",
+          "dc:title": "Turn 89",
+          "corpus:begin": 202110,
+          "corpus:end": 202531
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0090",
+          "dc:title": "Turn 90",
+          "corpus:begin": 202531,
+          "corpus:end": 208567
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0091",
+          "dc:title": "Turn 91",
+          "corpus:begin": 208567,
+          "corpus:end": 209127
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0092",
+          "dc:title": "Turn 92",
+          "corpus:begin": 209127,
+          "corpus:end": 212907
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0093",
+          "dc:title": "Turn 93",
+          "corpus:begin": 212907,
+          "corpus:end": 213276
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0094",
+          "dc:title": "Turn 94",
+          "corpus:begin": 213276,
+          "corpus:end": 219837
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0095",
+          "dc:title": "Turn 95",
+          "corpus:begin": 219837,
+          "corpus:end": 221510
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0096",
+          "dc:title": "Turn 96",
+          "corpus:begin": 221510,
+          "corpus:end": 226350
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0097",
+          "dc:title": "Turn 97",
+          "corpus:begin": 226350,
+          "corpus:end": 229983
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0098",
+          "dc:title": "Turn 98",
+          "corpus:begin": 229983,
+          "corpus:end": 233443
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0099",
+          "dc:title": "Turn 99",
+          "corpus:begin": 233443,
+          "corpus:end": 236367
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0100",
+          "dc:title": "Turn 100",
+          "corpus:begin": 236367,
+          "corpus:end": 237501
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0101",
+          "dc:title": "Turn 101",
+          "corpus:begin": 237501,
+          "corpus:end": 242081
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0102",
+          "dc:title": "Turn 102",
+          "corpus:begin": 242081,
+          "corpus:end": 242589
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0103",
+          "dc:title": "Turn 103",
+          "corpus:begin": 242589,
+          "corpus:end": 244905
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0104",
+          "dc:title": "Turn 104",
+          "corpus:begin": 244905,
+          "corpus:end": 245708
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0105",
+          "dc:title": "Turn 105",
+          "corpus:begin": 245708,
+          "corpus:end": 246230
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0106",
+          "dc:title": "Turn 106",
+          "corpus:begin": 246230,
+          "corpus:end": 247763
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0107",
+          "dc:title": "Turn 107",
+          "corpus:begin": 247763,
+          "corpus:end": 250197
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0108",
+          "dc:title": "Turn 108",
+          "corpus:begin": 250197,
+          "corpus:end": 251153
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0109",
+          "dc:title": "Turn 109",
+          "corpus:begin": 251153,
+          "corpus:end": 252043
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0110",
+          "dc:title": "Turn 110",
+          "corpus:begin": 252043,
+          "corpus:end": 252495
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0111",
+          "dc:title": "Turn 111",
+          "corpus:begin": 252495,
+          "corpus:end": 253768
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0112",
+          "dc:title": "Turn 112",
+          "corpus:begin": 253768,
+          "corpus:end": 263584
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0113",
+          "dc:title": "Turn 113",
+          "corpus:begin": 263584,
+          "corpus:end": 264648
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0114",
+          "dc:title": "Turn 114",
+          "corpus:begin": 264648,
+          "corpus:end": 266581
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0115",
+          "dc:title": "Turn 115",
+          "corpus:begin": 266581,
+          "corpus:end": 270692
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0116",
+          "dc:title": "Turn 116",
+          "corpus:begin": 270692,
+          "corpus:end": 271339
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0117",
+          "dc:title": "Turn 117",
+          "corpus:begin": 271339,
+          "corpus:end": 276801
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0118",
+          "dc:title": "Turn 118",
+          "corpus:begin": 276801,
+          "corpus:end": 277045
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0119",
+          "dc:title": "Turn 119",
+          "corpus:begin": 277045,
+          "corpus:end": 278096
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0120",
+          "dc:title": "Turn 120",
+          "corpus:begin": 278096,
+          "corpus:end": 278795
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0121",
+          "dc:title": "Turn 121",
+          "corpus:begin": 278795,
+          "corpus:end": 280624
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0122",
+          "dc:title": "Turn 122",
+          "corpus:begin": 280624,
+          "corpus:end": 280853
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0123",
+          "dc:title": "Turn 123",
+          "corpus:begin": 280853,
+          "corpus:end": 283687
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0124",
+          "dc:title": "Turn 124",
+          "corpus:begin": 283687,
+          "corpus:end": 284052
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0125",
+          "dc:title": "Turn 125",
+          "corpus:begin": 284052,
+          "corpus:end": 284539
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0126",
+          "dc:title": "Turn 126",
+          "corpus:begin": 284539,
+          "corpus:end": 284904
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0127",
+          "dc:title": "Turn 127",
+          "corpus:begin": 284904,
+          "corpus:end": 287112
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0128",
+          "dc:title": "Turn 128",
+          "corpus:begin": 287112,
+          "corpus:end": 288354
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0129",
+          "dc:title": "Turn 129",
+          "corpus:begin": 288354,
+          "corpus:end": 293660
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0130",
+          "dc:title": "Turn 130",
+          "corpus:begin": 293660,
+          "corpus:end": 294081
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0131",
+          "dc:title": "Turn 131",
+          "corpus:begin": 294081,
+          "corpus:end": 297443
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0132",
+          "dc:title": "Turn 132",
+          "corpus:begin": 297443,
+          "corpus:end": 307290
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0133",
+          "dc:title": "Turn 133",
+          "corpus:begin": 307290,
+          "corpus:end": 307899
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0134",
+          "dc:title": "Turn 134",
+          "corpus:begin": 307899,
+          "corpus:end": 311244
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0135",
+          "dc:title": "Turn 135",
+          "corpus:begin": 311244,
+          "corpus:end": 311647
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0136",
+          "dc:title": "Turn 136",
+          "corpus:begin": 311647,
+          "corpus:end": 313911
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0137",
+          "dc:title": "Turn 137",
+          "corpus:begin": 313911,
+          "corpus:end": 316036
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0138",
+          "dc:title": "Turn 138",
+          "corpus:begin": 316036,
+          "corpus:end": 317674
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0139",
+          "dc:title": "Turn 139",
+          "corpus:begin": 317674,
+          "corpus:end": 319753
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0140",
+          "dc:title": "Turn 140",
+          "corpus:begin": 319753,
+          "corpus:end": 320991
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0141",
+          "dc:title": "Turn 141",
+          "corpus:begin": 320991,
+          "corpus:end": 341127
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0142",
+          "dc:title": "Turn 142",
+          "corpus:begin": 341127,
+          "corpus:end": 342208
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0143",
+          "dc:title": "Turn 143",
+          "corpus:begin": 342208,
+          "corpus:end": 343777
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0144",
+          "dc:title": "Turn 144",
+          "corpus:begin": 343777,
+          "corpus:end": 343867
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0145",
+          "dc:title": "Turn 145",
+          "corpus:begin": 343867,
+          "corpus:end": 346110
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0146",
+          "dc:title": "Turn 146",
+          "corpus:begin": 346110,
+          "corpus:end": 346423
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0147",
+          "dc:title": "Turn 147",
+          "corpus:begin": 346423,
+          "corpus:end": 347748
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0148",
+          "dc:title": "Turn 148",
+          "corpus:begin": 347748,
+          "corpus:end": 348203
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0149",
+          "dc:title": "Turn 149",
+          "corpus:begin": 348203,
+          "corpus:end": 348673
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0150",
+          "dc:title": "Turn 150",
+          "corpus:begin": 348673,
+          "corpus:end": 349233
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0151",
+          "dc:title": "Turn 151",
+          "corpus:begin": 349233,
+          "corpus:end": 352627
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0152",
+          "dc:title": "Turn 152",
+          "corpus:begin": 352627,
+          "corpus:end": 353952
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0153",
+          "dc:title": "Turn 153",
+          "corpus:begin": 353952,
+          "corpus:end": 356528
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0154",
+          "dc:title": "Turn 154",
+          "corpus:begin": 356528,
+          "corpus:end": 363585
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0155",
+          "dc:title": "Turn 155",
+          "corpus:begin": 363585,
+          "corpus:end": 364003
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0156",
+          "dc:title": "Turn 156",
+          "corpus:begin": 364003,
+          "corpus:end": 365780
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0157",
+          "dc:title": "Turn 157",
+          "corpus:begin": 365780,
+          "corpus:end": 366149
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0158",
+          "dc:title": "Turn 158",
+          "corpus:begin": 366149,
+          "corpus:end": 374307
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0159",
+          "dc:title": "Turn 159",
+          "corpus:begin": 374307,
+          "corpus:end": 374626
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0160",
+          "dc:title": "Turn 160",
+          "corpus:begin": 374626,
+          "corpus:end": 376554
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0161",
+          "dc:title": "Turn 161",
+          "corpus:begin": 376554,
+          "corpus:end": 377592
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0162",
+          "dc:title": "Turn 162",
+          "corpus:begin": 377592,
+          "corpus:end": 385263
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0163",
+          "dc:title": "Turn 163",
+          "corpus:begin": 385263,
+          "corpus:end": 386678
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0164",
+          "dc:title": "Turn 164",
+          "corpus:begin": 386678,
+          "corpus:end": 395190
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0165",
+          "dc:title": "Turn 165",
+          "corpus:begin": 395190,
+          "corpus:end": 396505
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0166",
+          "dc:title": "Turn 166",
+          "corpus:begin": 396505,
+          "corpus:end": 401598
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0167",
+          "dc:title": "Turn 167",
+          "corpus:begin": 401598,
+          "corpus:end": 405909
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0168",
+          "dc:title": "Turn 168",
+          "corpus:begin": 405909,
+          "corpus:end": 406041
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0169",
+          "dc:title": "Turn 169",
+          "corpus:begin": 406041,
+          "corpus:end": 410667
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0170",
+          "dc:title": "Turn 170",
+          "corpus:begin": 410667,
+          "corpus:end": 411173
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0171",
+          "dc:title": "Turn 171",
+          "corpus:begin": 411173,
+          "corpus:end": 417648
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0172",
+          "dc:title": "Turn 172",
+          "corpus:begin": 417648,
+          "corpus:end": 418015
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0173",
+          "dc:title": "Turn 173",
+          "corpus:begin": 418015,
+          "corpus:end": 421075
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0174",
+          "dc:title": "Turn 174",
+          "corpus:begin": 421075,
+          "corpus:end": 421423
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0175",
+          "dc:title": "Turn 175",
+          "corpus:begin": 421423,
+          "corpus:end": 426720
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0176",
+          "dc:title": "Turn 176",
+          "corpus:begin": 426720,
+          "corpus:end": 430668
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0177",
+          "dc:title": "Turn 177",
+          "corpus:begin": 430668,
+          "corpus:end": 436390
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0178",
+          "dc:title": "Turn 178",
+          "corpus:begin": 436390,
+          "corpus:end": 437452
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0179",
+          "dc:title": "Turn 179",
+          "corpus:begin": 437452,
+          "corpus:end": 445411
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0180",
+          "dc:title": "Turn 180",
+          "corpus:begin": 445411,
+          "corpus:end": 445859
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0181",
+          "dc:title": "Turn 181",
+          "corpus:begin": 445859,
+          "corpus:end": 447404
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0182",
+          "dc:title": "Turn 182",
+          "corpus:begin": 447404,
+          "corpus:end": 448409
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0183",
+          "dc:title": "Turn 183",
+          "corpus:begin": 448409,
+          "corpus:end": 452334
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0184",
+          "dc:title": "Turn 184",
+          "corpus:begin": 452334,
+          "corpus:end": 453914
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0185",
+          "dc:title": "Turn 185",
+          "corpus:begin": 453914,
+          "corpus:end": 455884
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0186",
+          "dc:title": "Turn 186",
+          "corpus:begin": 455884,
+          "corpus:end": 460672
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0187",
+          "dc:title": "Turn 187",
+          "corpus:begin": 460672,
+          "corpus:end": 461912
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0188",
+          "dc:title": "Turn 188",
+          "corpus:begin": 461912,
+          "corpus:end": 462704
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0189",
+          "dc:title": "Turn 189",
+          "corpus:begin": 462704,
+          "corpus:end": 464269
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0190",
+          "dc:title": "Turn 190",
+          "corpus:begin": 464269,
+          "corpus:end": 467850
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0191",
+          "dc:title": "Turn 191",
+          "corpus:begin": 467850,
+          "corpus:end": 471737
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0192",
+          "dc:title": "Turn 192",
+          "corpus:begin": 471737,
+          "corpus:end": 473421
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0193",
+          "dc:title": "Turn 193",
+          "corpus:begin": 473421,
+          "corpus:end": 474754
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0194",
+          "dc:title": "Turn 194",
+          "corpus:begin": 474754,
+          "corpus:end": 478038
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0195",
+          "dc:title": "Turn 195",
+          "corpus:begin": 478038,
+          "corpus:end": 478405
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0196",
+          "dc:title": "Turn 196",
+          "corpus:begin": 478405,
+          "corpus:end": 480993
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0197",
+          "dc:title": "Turn 197",
+          "corpus:begin": 480993,
+          "corpus:end": 486951
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0198",
+          "dc:title": "Turn 198",
+          "corpus:begin": 486951,
+          "corpus:end": 497201
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0199",
+          "dc:title": "Turn 199",
+          "corpus:begin": 497201,
+          "corpus:end": 497464
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0200",
+          "dc:title": "Turn 200",
+          "corpus:begin": 497464,
+          "corpus:end": 509855
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0201",
+          "dc:title": "Turn 201",
+          "corpus:begin": 509855,
+          "corpus:end": 510322
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0202",
+          "dc:title": "Turn 202",
+          "corpus:begin": 510322,
+          "corpus:end": 513027
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0203",
+          "dc:title": "Turn 203",
+          "corpus:begin": 513027,
+          "corpus:end": 513301
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0204",
+          "dc:title": "Turn 204",
+          "corpus:begin": 513301,
+          "corpus:end": 514499
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0205",
+          "dc:title": "Turn 205",
+          "corpus:begin": 514499,
+          "corpus:end": 517284
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0206",
+          "dc:title": "Turn 206",
+          "corpus:begin": 517284,
+          "corpus:end": 518463
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0207",
+          "dc:title": "Turn 207",
+          "corpus:begin": 518463,
+          "corpus:end": 526824
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0208",
+          "dc:title": "Turn 208",
+          "corpus:begin": 526824,
+          "corpus:end": 527095
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0209",
+          "dc:title": "Turn 209",
+          "corpus:begin": 527095,
+          "corpus:end": 529552
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0210",
+          "dc:title": "Turn 210",
+          "corpus:begin": 529552,
+          "corpus:end": 530904
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0211",
+          "dc:title": "Turn 211",
+          "corpus:begin": 530904,
+          "corpus:end": 533299
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0212",
+          "dc:title": "Turn 212",
+          "corpus:begin": 533299,
+          "corpus:end": 533782
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0213",
+          "dc:title": "Turn 213",
+          "corpus:begin": 533782,
+          "corpus:end": 537925
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0214",
+          "dc:title": "Turn 214",
+          "corpus:begin": 537925,
+          "corpus:end": 540722
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0215",
+          "dc:title": "Turn 215",
+          "corpus:begin": 540722,
+          "corpus:end": 540977
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0216",
+          "dc:title": "Turn 216",
+          "corpus:begin": 540977,
+          "corpus:end": 541696
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0217",
+          "dc:title": "Turn 217",
+          "corpus:begin": 541696,
+          "corpus:end": 542144
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0218",
+          "dc:title": "Turn 218",
+          "corpus:begin": 542144,
+          "corpus:end": 543767
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0219",
+          "dc:title": "Turn 219",
+          "corpus:begin": 543767,
+          "corpus:end": 551231
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0220",
+          "dc:title": "Turn 220",
+          "corpus:begin": 551231,
+          "corpus:end": 552166
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0221",
+          "dc:title": "Turn 221",
+          "corpus:begin": 552166,
+          "corpus:end": 552436
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0222",
+          "dc:title": "Turn 222",
+          "corpus:begin": 552436,
+          "corpus:end": 557834
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0223",
+          "dc:title": "Turn 223",
+          "corpus:begin": 557834,
+          "corpus:end": 560616
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0224",
+          "dc:title": "Turn 224",
+          "corpus:begin": 560616,
+          "corpus:end": 565226
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0225",
+          "dc:title": "Turn 225",
+          "corpus:begin": 565226,
+          "corpus:end": 568823
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0226",
+          "dc:title": "Turn 226",
+          "corpus:begin": 568823,
+          "corpus:end": 571952
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0227",
+          "dc:title": "Turn 227",
+          "corpus:begin": 571952,
+          "corpus:end": 572512
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0228",
+          "dc:title": "Turn 228",
+          "corpus:begin": 572512,
+          "corpus:end": 574077
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0229",
+          "dc:title": "Turn 229",
+          "corpus:begin": 574077,
+          "corpus:end": 574351
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0230",
+          "dc:title": "Turn 230",
+          "corpus:begin": 574351,
+          "corpus:end": 581015
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0231",
+          "dc:title": "Turn 231",
+          "corpus:begin": 581015,
+          "corpus:end": 581421
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0232",
+          "dc:title": "Turn 232",
+          "corpus:begin": 581421,
+          "corpus:end": 584009
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0233",
+          "dc:title": "Turn 233",
+          "corpus:begin": 584009,
+          "corpus:end": 585902
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0234",
+          "dc:title": "Turn 234",
+          "corpus:begin": 585902,
+          "corpus:end": 593719
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0235",
+          "dc:title": "Turn 235",
+          "corpus:begin": 593719,
+          "corpus:end": 596794
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0236",
+          "dc:title": "Turn 236",
+          "corpus:begin": 596794,
+          "corpus:end": 597316
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0237",
+          "dc:title": "Turn 237",
+          "corpus:begin": 597316,
+          "corpus:end": 599483
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0238",
+          "dc:title": "Turn 238",
+          "corpus:begin": 599483,
+          "corpus:end": 600314
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0239",
+          "dc:title": "Turn 239",
+          "corpus:begin": 600314,
+          "corpus:end": 601970
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0240",
+          "dc:title": "Turn 240",
+          "corpus:begin": 601970,
+          "corpus:end": 602380
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0241",
+          "dc:title": "Turn 241",
+          "corpus:begin": 602380,
+          "corpus:end": 603678
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0242",
+          "dc:title": "Turn 242",
+          "corpus:begin": 603678,
+          "corpus:end": 604045
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0243",
+          "dc:title": "Turn 243",
+          "corpus:begin": 604045,
+          "corpus:end": 606363
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0244",
+          "dc:title": "Turn 244",
+          "corpus:begin": 606363,
+          "corpus:end": 608395
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0245",
+          "dc:title": "Turn 245",
+          "corpus:begin": 608395,
+          "corpus:end": 608646
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0246",
+          "dc:title": "Turn 246",
+          "corpus:begin": 608646,
+          "corpus:end": 612325
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0247",
+          "dc:title": "Turn 247",
+          "corpus:begin": 612325,
+          "corpus:end": 612619
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0248",
+          "dc:title": "Turn 248",
+          "corpus:begin": 612619,
+          "corpus:end": 614130
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0249",
+          "dc:title": "Turn 249",
+          "corpus:begin": 614130,
+          "corpus:end": 615331
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0250",
+          "dc:title": "Turn 250",
+          "corpus:begin": 615331,
+          "corpus:end": 615718
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0251",
+          "dc:title": "Turn 251",
+          "corpus:begin": 615718,
+          "corpus:end": 618774
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0252",
+          "dc:title": "Turn 252",
+          "corpus:begin": 618774,
+          "corpus:end": 621328
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0253",
+          "dc:title": "Turn 253",
+          "corpus:begin": 621328,
+          "corpus:end": 622723
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0254",
+          "dc:title": "Turn 254",
+          "corpus:begin": 622723,
+          "corpus:end": 622959
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0255",
+          "dc:title": "Turn 255",
+          "corpus:begin": 622959,
+          "corpus:end": 624160
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0256",
+          "dc:title": "Turn 256",
+          "corpus:begin": 624160,
+          "corpus:end": 624354
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0257",
+          "dc:title": "Turn 257",
+          "corpus:begin": 624354,
+          "corpus:end": 630142
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0258",
+          "dc:title": "Turn 258",
+          "corpus:begin": 630142,
+          "corpus:end": 630300
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0259",
+          "dc:title": "Turn 259",
+          "corpus:begin": 630300,
+          "corpus:end": 635911
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0260",
+          "dc:title": "Turn 260",
+          "corpus:begin": 635911,
+          "corpus:end": 636011
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0261",
+          "dc:title": "Turn 261",
+          "corpus:begin": 636011,
+          "corpus:end": 638832
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0262",
+          "dc:title": "Turn 262",
+          "corpus:begin": 638832,
+          "corpus:end": 639184
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0263",
+          "dc:title": "Turn 263",
+          "corpus:begin": 639184,
+          "corpus:end": 641177
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0264",
+          "dc:title": "Turn 264",
+          "corpus:begin": 641177,
+          "corpus:end": 641622
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0265",
+          "dc:title": "Turn 265",
+          "corpus:begin": 641622,
+          "corpus:end": 641800
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0266",
+          "dc:title": "Turn 266",
+          "corpus:begin": 641800,
+          "corpus:end": 643117
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0267",
+          "dc:title": "Turn 267",
+          "corpus:begin": 643117,
+          "corpus:end": 644817
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0268",
+          "dc:title": "Turn 268",
+          "corpus:begin": 644817,
+          "corpus:end": 649519
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0269",
+          "dc:title": "Turn 269",
+          "corpus:begin": 649519,
+          "corpus:end": 652463
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0270",
+          "dc:title": "Turn 270",
+          "corpus:begin": 652463,
+          "corpus:end": 655515
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0271",
+          "dc:title": "Turn 271",
+          "corpus:begin": 655515,
+          "corpus:end": 655902
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0272",
+          "dc:title": "Turn 272",
+          "corpus:begin": 655902,
+          "corpus:end": 659228
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0273",
+          "dc:title": "Turn 273",
+          "corpus:begin": 659228,
+          "corpus:end": 659753
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0274",
+          "dc:title": "Turn 274",
+          "corpus:begin": 659753,
+          "corpus:end": 661357
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0275",
+          "dc:title": "Turn 275",
+          "corpus:begin": 661357,
+          "corpus:end": 662076
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0276",
+          "dc:title": "Turn 276",
+          "corpus:begin": 662076,
+          "corpus:end": 663127
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0277",
+          "dc:title": "Turn 277",
+          "corpus:begin": 663127,
+          "corpus:end": 672071
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0278",
+          "dc:title": "Turn 278",
+          "corpus:begin": 672071,
+          "corpus:end": 673617
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0279",
+          "dc:title": "Turn 279",
+          "corpus:begin": 673617,
+          "corpus:end": 676219
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0280",
+          "dc:title": "Turn 280",
+          "corpus:begin": 676219,
+          "corpus:end": 678609
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0281",
+          "dc:title": "Turn 281",
+          "corpus:begin": 678609,
+          "corpus:end": 679791
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0282",
+          "dc:title": "Turn 282",
+          "corpus:begin": 679791,
+          "corpus:end": 680158
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0283",
+          "dc:title": "Turn 283",
+          "corpus:begin": 680158,
+          "corpus:end": 682862
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0284",
+          "dc:title": "Turn 284",
+          "corpus:begin": 682862,
+          "corpus:end": 684099
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0285",
+          "dc:title": "Turn 285",
+          "corpus:begin": 684099,
+          "corpus:end": 690713
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0286",
+          "dc:title": "Turn 286",
+          "corpus:begin": 690713,
+          "corpus:end": 690983
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0287",
+          "dc:title": "Turn 287",
+          "corpus:begin": 690983,
+          "corpus:end": 701693
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0288",
+          "dc:title": "Turn 288",
+          "corpus:begin": 701693,
+          "corpus:end": 715652
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0289",
+          "dc:title": "Turn 289",
+          "corpus:begin": 715652,
+          "corpus:end": 716850
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0290",
+          "dc:title": "Turn 290",
+          "corpus:begin": 716850,
+          "corpus:end": 717940
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0291",
+          "dc:title": "Turn 291",
+          "corpus:begin": 717940,
+          "corpus:end": 722773
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0292",
+          "dc:title": "Turn 292",
+          "corpus:begin": 722773,
+          "corpus:end": 722970
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0293",
+          "dc:title": "Turn 293",
+          "corpus:begin": 722970,
+          "corpus:end": 727494
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0294",
+          "dc:title": "Turn 294",
+          "corpus:begin": 727494,
+          "corpus:end": 727803
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "dc:title": "Turn 295",
+          "corpus:begin": 727803,
+          "corpus:end": 747631
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0296",
+          "dc:title": "Turn 296",
+          "corpus:begin": 747631,
+          "corpus:end": 748250
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0297",
+          "dc:title": "Turn 297",
+          "corpus:begin": 748250,
+          "corpus:end": 751402
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0298",
+          "dc:title": "Turn 298",
+          "corpus:begin": 751402,
+          "corpus:end": 751692
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0299",
+          "dc:title": "Turn 299",
+          "corpus:begin": 751692,
+          "corpus:end": 754223
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0300",
+          "dc:title": "Turn 300",
+          "corpus:begin": 754223,
+          "corpus:end": 757781
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0301",
+          "dc:title": "Turn 301",
+          "corpus:begin": 757781,
+          "corpus:end": 764183
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0302",
+          "dc:title": "Turn 302",
+          "corpus:begin": 764183,
+          "corpus:end": 764550
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0303",
+          "dc:title": "Turn 303",
+          "corpus:begin": 764550,
+          "corpus:end": 774974
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0304",
+          "dc:title": "Turn 304",
+          "corpus:begin": 774974,
+          "corpus:end": 775573
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0305",
+          "dc:title": "Turn 305",
+          "corpus:begin": 775573,
+          "corpus:end": 781496
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0306",
+          "dc:title": "Turn 306",
+          "corpus:begin": 781496,
+          "corpus:end": 782504
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0307",
+          "dc:title": "Turn 307",
+          "corpus:begin": 782504,
+          "corpus:end": 783142
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0308",
+          "dc:title": "Turn 308",
+          "corpus:begin": 783142,
+          "corpus:end": 783320
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0309",
+          "dc:title": "Turn 309",
+          "corpus:begin": 783320,
+          "corpus:end": 785124
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0310",
+          "dc:title": "Turn 310",
+          "corpus:begin": 785124,
+          "corpus:end": 785201
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0311",
+          "dc:title": "Turn 311",
+          "corpus:begin": 785201,
+          "corpus:end": 790576
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0312",
+          "dc:title": "Turn 312",
+          "corpus:begin": 790576,
+          "corpus:end": 791685
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0313",
+          "dc:title": "Turn 313",
+          "corpus:begin": 791685,
+          "corpus:end": 799512
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0314",
+          "dc:title": "Turn 314",
+          "corpus:begin": 799512,
+          "corpus:end": 800756
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0315",
+          "dc:title": "Turn 315",
+          "corpus:begin": 800756,
+          "corpus:end": 801143
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0316",
+          "dc:title": "Turn 316",
+          "corpus:begin": 801143,
+          "corpus:end": 803870
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0317",
+          "dc:title": "Turn 317",
+          "corpus:begin": 803870,
+          "corpus:end": 807950
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0318",
+          "dc:title": "Turn 318",
+          "corpus:begin": 807950,
+          "corpus:end": 818988
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0319",
+          "dc:title": "Turn 319",
+          "corpus:begin": 818988,
+          "corpus:end": 821546
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0320",
+          "dc:title": "Turn 320",
+          "corpus:begin": 821546,
+          "corpus:end": 833782
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0321",
+          "dc:title": "Turn 321",
+          "corpus:begin": 833782,
+          "corpus:end": 834226
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0322",
+          "dc:title": "Turn 322",
+          "corpus:begin": 834226,
+          "corpus:end": 838650
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0323",
+          "dc:title": "Turn 323",
+          "corpus:begin": 838650,
+          "corpus:end": 840218
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0324",
+          "dc:title": "Turn 324",
+          "corpus:begin": 840218,
+          "corpus:end": 840779
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0325",
+          "dc:title": "Turn 325",
+          "corpus:begin": 840779,
+          "corpus:end": 841598
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0326",
+          "dc:title": "Turn 326",
+          "corpus:begin": 841598,
+          "corpus:end": 849218
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0327",
+          "dc:title": "Turn 327",
+          "corpus:begin": 849218,
+          "corpus:end": 849531
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0328",
+          "dc:title": "Turn 328",
+          "corpus:begin": 849531,
+          "corpus:end": 857825
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0329",
+          "dc:title": "Turn 329",
+          "corpus:begin": 857825,
+          "corpus:end": 857999
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "dc:title": "Turn 330",
+          "corpus:begin": 857999,
+          "corpus:end": 896785
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0331",
+          "dc:title": "Turn 331",
+          "corpus:begin": 896785,
+          "corpus:end": 897017
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0332",
+          "dc:title": "Turn 332",
+          "corpus:begin": 897017,
+          "corpus:end": 898717
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0333",
+          "dc:title": "Turn 333",
+          "corpus:begin": 898717,
+          "corpus:end": 898798
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0334",
+          "dc:title": "Turn 334",
+          "corpus:begin": 898798,
+          "corpus:end": 902858
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0335",
+          "dc:title": "Turn 335",
+          "corpus:begin": 902858,
+          "corpus:end": 904597
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0336",
+          "dc:title": "Turn 336",
+          "corpus:begin": 904597,
+          "corpus:end": 905412
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0337",
+          "dc:title": "Turn 337",
+          "corpus:begin": 905412,
+          "corpus:end": 905489
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0338",
+          "dc:title": "Turn 338",
+          "corpus:begin": 905489,
+          "corpus:end": 906185
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0339",
+          "dc:title": "Turn 339",
+          "corpus:begin": 906185,
+          "corpus:end": 908743
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0340",
+          "dc:title": "Turn 340",
+          "corpus:begin": 908743,
+          "corpus:end": 913314
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0341",
+          "dc:title": "Turn 341",
+          "corpus:begin": 913314,
+          "corpus:end": 915597
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0342",
+          "dc:title": "Turn 342",
+          "corpus:begin": 915597,
+          "corpus:end": 916293
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0343",
+          "dc:title": "Turn 343",
+          "corpus:begin": 916293,
+          "corpus:end": 921192
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0344",
+          "dc:title": "Turn 344",
+          "corpus:begin": 921192,
+          "corpus:end": 923650
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0345",
+          "dc:title": "Turn 345",
+          "corpus:begin": 923650,
+          "corpus:end": 924079
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0346",
+          "dc:title": "Turn 346",
+          "corpus:begin": 924079,
+          "corpus:end": 924527
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0347",
+          "dc:title": "Turn 347",
+          "corpus:begin": 924527,
+          "corpus:end": 934430
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0348",
+          "dc:title": "Turn 348",
+          "corpus:begin": 934430,
+          "corpus:end": 935786
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0349",
+          "dc:title": "Turn 349",
+          "corpus:begin": 935786,
+          "corpus:end": 942927
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0350",
+          "dc:title": "Turn 350",
+          "corpus:begin": 942927,
+          "corpus:end": 945944
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0351",
+          "dc:title": "Turn 351",
+          "corpus:begin": 945944,
+          "corpus:end": 964513
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0352",
+          "dc:title": "Turn 352",
+          "corpus:begin": 964513,
+          "corpus:end": 964923
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0353",
+          "dc:title": "Turn 353",
+          "corpus:begin": 964923,
+          "corpus:end": 967747
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0354",
+          "dc:title": "Turn 354",
+          "corpus:begin": 967747,
+          "corpus:end": 968848
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0355",
+          "dc:title": "Turn 355",
+          "corpus:begin": 968848,
+          "corpus:end": 979650
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0356",
+          "dc:title": "Turn 356",
+          "corpus:begin": 979650,
+          "corpus:end": 982764
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0357",
+          "dc:title": "Turn 357",
+          "corpus:begin": 982764,
+          "corpus:end": 984352
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0358",
+          "dc:title": "Turn 358",
+          "corpus:begin": 984352,
+          "corpus:end": 984472
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0359",
+          "dc:title": "Turn 359",
+          "corpus:begin": 984472,
+          "corpus:end": 986064
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0360",
+          "dc:title": "Turn 360",
+          "corpus:begin": 986064,
+          "corpus:end": 986450
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0361",
+          "dc:title": "Turn 361",
+          "corpus:begin": 986450,
+          "corpus:end": 990275
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0362",
+          "dc:title": "Turn 362",
+          "corpus:begin": 990275,
+          "corpus:end": 991844
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0363",
+          "dc:title": "Turn 363",
+          "corpus:begin": 991844,
+          "corpus:end": 997241
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0364",
+          "dc:title": "Turn 364",
+          "corpus:begin": 997241,
+          "corpus:end": 998551
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "dc:title": "Turn 365",
+          "corpus:begin": 998551,
+          "corpus:end": 1021444
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0366",
+          "dc:title": "Turn 366",
+          "corpus:begin": 1021444,
+          "corpus:end": 1022548
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0367",
+          "dc:title": "Turn 367",
+          "corpus:begin": 1022548,
+          "corpus:end": 1033899
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0368",
+          "dc:title": "Turn 368",
+          "corpus:begin": 1033899,
+          "corpus:end": 1034556
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0369",
+          "dc:title": "Turn 369",
+          "corpus:begin": 1034556,
+          "corpus:end": 1037106
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0370",
+          "dc:title": "Turn 370",
+          "corpus:begin": 1037106,
+          "corpus:end": 1037535
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0371",
+          "dc:title": "Turn 371",
+          "corpus:begin": 1037535,
+          "corpus:end": 1039556
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0372",
+          "dc:title": "Turn 372",
+          "corpus:begin": 1039556,
+          "corpus:end": 1039634
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0373",
+          "dc:title": "Turn 373",
+          "corpus:begin": 1039634,
+          "corpus:end": 1041260
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0374",
+          "dc:title": "Turn 374",
+          "corpus:begin": 1041260,
+          "corpus:end": 1041647
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0375",
+          "dc:title": "Turn 375",
+          "corpus:begin": 1041647,
+          "corpus:end": 1044548
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0376",
+          "dc:title": "Turn 376",
+          "corpus:begin": 1044548,
+          "corpus:end": 1045012
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0377",
+          "dc:title": "Turn 377",
+          "corpus:begin": 1045012,
+          "corpus:end": 1047778
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0378",
+          "dc:title": "Turn 378",
+          "corpus:begin": 1047778,
+          "corpus:end": 1048029
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0379",
+          "dc:title": "Turn 379",
+          "corpus:begin": 1048029,
+          "corpus:end": 1048937
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0380",
+          "dc:title": "Turn 380",
+          "corpus:begin": 1048937,
+          "corpus:end": 1051708
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0381",
+          "dc:title": "Turn 381",
+          "corpus:begin": 1051708,
+          "corpus:end": 1054474
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0382",
+          "dc:title": "Turn 382",
+          "corpus:begin": 1054474,
+          "corpus:end": 1056753
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0383",
+          "dc:title": "Turn 383",
+          "corpus:begin": 1056753,
+          "corpus:end": 1072474
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0384",
+          "dc:title": "Turn 384",
+          "corpus:begin": 1072474,
+          "corpus:end": 1072822
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0385",
+          "dc:title": "Turn 385",
+          "corpus:begin": 1072822,
+          "corpus:end": 1073811
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0386",
+          "dc:title": "Turn 386",
+          "corpus:begin": 1073811,
+          "corpus:end": 1074336
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0387",
+          "dc:title": "Turn 387",
+          "corpus:begin": 1074336,
+          "corpus:end": 1084041
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0388",
+          "dc:title": "Turn 388",
+          "corpus:begin": 1084041,
+          "corpus:end": 1084973
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0389",
+          "dc:title": "Turn 389",
+          "corpus:begin": 1084973,
+          "corpus:end": 1095663
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0390",
+          "dc:title": "Turn 390",
+          "corpus:begin": 1095663,
+          "corpus:end": 1106036
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0391",
+          "dc:title": "Turn 391",
+          "corpus:begin": 1106036,
+          "corpus:end": 1107377
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0392",
+          "dc:title": "Turn 392",
+          "corpus:begin": 1107377,
+          "corpus:end": 1116461
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0393",
+          "dc:title": "Turn 393",
+          "corpus:begin": 1116461,
+          "corpus:end": 1116596
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0394",
+          "dc:title": "Turn 394",
+          "corpus:begin": 1116596,
+          "corpus:end": 1120680
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0395",
+          "dc:title": "Turn 395",
+          "corpus:begin": 1120680,
+          "corpus:end": 1120835
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0396",
+          "dc:title": "Turn 396",
+          "corpus:begin": 1120835,
+          "corpus:end": 1141622
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0397",
+          "dc:title": "Turn 397",
+          "corpus:begin": 1141622,
+          "corpus:end": 1143345
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0398",
+          "dc:title": "Turn 398",
+          "corpus:begin": 1143345,
+          "corpus:end": 1146436
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0399",
+          "dc:title": "Turn 399",
+          "corpus:begin": 1146436,
+          "corpus:end": 1149743
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0400",
+          "dc:title": "Turn 400",
+          "corpus:begin": 1149743,
+          "corpus:end": 1156956
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0401",
+          "dc:title": "Turn 401",
+          "corpus:begin": 1156956,
+          "corpus:end": 1177926
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0402",
+          "dc:title": "Turn 402",
+          "corpus:begin": 1177926,
+          "corpus:end": 1179974
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0403",
+          "dc:title": "Turn 403",
+          "corpus:begin": 1179974,
+          "corpus:end": 1181948
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0404",
+          "dc:title": "Turn 404",
+          "corpus:begin": 1181948,
+          "corpus:end": 1183188
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0405",
+          "dc:title": "Turn 405",
+          "corpus:begin": 1183188,
+          "corpus:end": 1190760
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0406",
+          "dc:title": "Turn 406",
+          "corpus:begin": 1190760,
+          "corpus:end": 1191011
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0407",
+          "dc:title": "Turn 407",
+          "corpus:begin": 1191011,
+          "corpus:end": 1195126
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0408",
+          "dc:title": "Turn 408",
+          "corpus:begin": 1195126,
+          "corpus:end": 1195574
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0409",
+          "dc:title": "Turn 409",
+          "corpus:begin": 1195574,
+          "corpus:end": 1201006
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0410",
+          "dc:title": "Turn 410",
+          "corpus:begin": 1201006,
+          "corpus:end": 1206527
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0411",
+          "dc:title": "Turn 411",
+          "corpus:begin": 1206527,
+          "corpus:end": 1226910
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0412",
+          "dc:title": "Turn 412",
+          "corpus:begin": 1226910,
+          "corpus:end": 1227667
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0413",
+          "dc:title": "Turn 413",
+          "corpus:begin": 1227667,
+          "corpus:end": 1228092
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0414",
+          "dc:title": "Turn 414",
+          "corpus:begin": 1228092,
+          "corpus:end": 1231955
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0415",
+          "dc:title": "Turn 415",
+          "corpus:begin": 1231955,
+          "corpus:end": 1232303
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0416",
+          "dc:title": "Turn 416",
+          "corpus:begin": 1232303,
+          "corpus:end": 1243414
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0417",
+          "dc:title": "Turn 417",
+          "corpus:begin": 1243414,
+          "corpus:end": 1244824
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0418",
+          "dc:title": "Turn 418",
+          "corpus:begin": 1244824,
+          "corpus:end": 1246427
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0419",
+          "dc:title": "Turn 419",
+          "corpus:begin": 1246427,
+          "corpus:end": 1248765
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0420",
+          "dc:title": "Turn 420",
+          "corpus:begin": 1248765,
+          "corpus:end": 1250338
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0421",
+          "dc:title": "Turn 421",
+          "corpus:begin": 1250338,
+          "corpus:end": 1257300
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0422",
+          "dc:title": "Turn 422",
+          "corpus:begin": 1257300,
+          "corpus:end": 1259530
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0423",
+          "dc:title": "Turn 423",
+          "corpus:begin": 1259530,
+          "corpus:end": 1265245
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0424",
+          "dc:title": "Turn 424",
+          "corpus:begin": 1265245,
+          "corpus:end": 1266369
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0425",
+          "dc:title": "Turn 425",
+          "corpus:begin": 1266369,
+          "corpus:end": 1271473
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0426",
+          "dc:title": "Turn 426",
+          "corpus:begin": 1271473,
+          "corpus:end": 1271960
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0427",
+          "dc:title": "Turn 427",
+          "corpus:begin": 1271960,
+          "corpus:end": 1273200
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0428",
+          "dc:title": "Turn 428",
+          "corpus:begin": 1273200,
+          "corpus:end": 1274093
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0429",
+          "dc:title": "Turn 429",
+          "corpus:begin": 1274093,
+          "corpus:end": 1277211
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0430",
+          "dc:title": "Turn 430",
+          "corpus:begin": 1277211,
+          "corpus:end": 1278509
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0431",
+          "dc:title": "Turn 431",
+          "corpus:begin": 1278509,
+          "corpus:end": 1280402
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0432",
+          "dc:title": "Turn 432",
+          "corpus:begin": 1280402,
+          "corpus:end": 1281522
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0433",
+          "dc:title": "Turn 433",
+          "corpus:begin": 1281522,
+          "corpus:end": 1284787
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0434",
+          "dc:title": "Turn 434",
+          "corpus:begin": 1284787,
+          "corpus:end": 1285023
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0435",
+          "dc:title": "Turn 435",
+          "corpus:begin": 1285023,
+          "corpus:end": 1286109
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0436",
+          "dc:title": "Turn 436",
+          "corpus:begin": 1286109,
+          "corpus:end": 1286538
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0437",
+          "dc:title": "Turn 437",
+          "corpus:begin": 1286538,
+          "corpus:end": 1287855
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0438",
+          "dc:title": "Turn 438",
+          "corpus:begin": 1287855,
+          "corpus:end": 1288300
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0439",
+          "dc:title": "Turn 439",
+          "corpus:begin": 1288300,
+          "corpus:end": 1293748
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0440",
+          "dc:title": "Turn 440",
+          "corpus:begin": 1293748,
+          "corpus:end": 1294486
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0441",
+          "dc:title": "Turn 441",
+          "corpus:begin": 1294486,
+          "corpus:end": 1299265
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0442",
+          "dc:title": "Turn 442",
+          "corpus:begin": 1299265,
+          "corpus:end": 1300463
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0443",
+          "dc:title": "Turn 443",
+          "corpus:begin": 1300463,
+          "corpus:end": 1300873
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0444",
+          "dc:title": "Turn 444",
+          "corpus:begin": 1300873,
+          "corpus:end": 1309751
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0445",
+          "dc:title": "Turn 445",
+          "corpus:begin": 1309751,
+          "corpus:end": 1310099
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0446",
+          "dc:title": "Turn 446",
+          "corpus:begin": 1310099,
+          "corpus:end": 1310760
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0447",
+          "dc:title": "Turn 447",
+          "corpus:begin": 1310760,
+          "corpus:end": 1311227
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0448",
+          "dc:title": "Turn 448",
+          "corpus:begin": 1311227,
+          "corpus:end": 1320256
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0449",
+          "dc:title": "Turn 449",
+          "corpus:begin": 1320256,
+          "corpus:end": 1326898
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0450",
+          "dc:title": "Turn 450",
+          "corpus:begin": 1326898,
+          "corpus:end": 1330228
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0451",
+          "dc:title": "Turn 451",
+          "corpus:begin": 1330228,
+          "corpus:end": 1340223
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0452",
+          "dc:title": "Turn 452",
+          "corpus:begin": 1340223,
+          "corpus:end": 1342274
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0453",
+          "dc:title": "Turn 453",
+          "corpus:begin": 1342274,
+          "corpus:end": 1349747
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0454",
+          "dc:title": "Turn 454",
+          "corpus:begin": 1349747,
+          "corpus:end": 1351049
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0455",
+          "dc:title": "Turn 455",
+          "corpus:begin": 1351049,
+          "corpus:end": 1353464
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0456",
+          "dc:title": "Turn 456",
+          "corpus:begin": 1353464,
+          "corpus:end": 1363710
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0457",
+          "dc:title": "Turn 457",
+          "corpus:begin": 1363710,
+          "corpus:end": 1364371
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0458",
+          "dc:title": "Turn 458",
+          "corpus:begin": 1364371,
+          "corpus:end": 1364742
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0459",
+          "dc:title": "Turn 459",
+          "corpus:begin": 1364742,
+          "corpus:end": 1385598
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0460",
+          "dc:title": "Turn 460",
+          "corpus:begin": 1385598,
+          "corpus:end": 1386699
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0461",
+          "dc:title": "Turn 461",
+          "corpus:begin": 1386699,
+          "corpus:end": 1388805
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0462",
+          "dc:title": "Turn 462",
+          "corpus:begin": 1388805,
+          "corpus:end": 1391711
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0463",
+          "dc:title": "Turn 463",
+          "corpus:begin": 1391711,
+          "corpus:end": 1402104
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0464",
+          "dc:title": "Turn 464",
+          "corpus:begin": 1402104,
+          "corpus:end": 1412373
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0465",
+          "dc:title": "Turn 465",
+          "corpus:begin": 1412373,
+          "corpus:end": 1436949
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0466",
+          "dc:title": "Turn 466",
+          "corpus:begin": 1436949,
+          "corpus:end": 1437451
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0467",
+          "dc:title": "Turn 467",
+          "corpus:begin": 1437451,
+          "corpus:end": 1439827
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0468",
+          "dc:title": "Turn 468",
+          "corpus:begin": 1439827,
+          "corpus:end": 1440349
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0469",
+          "dc:title": "Turn 469",
+          "corpus:begin": 1440349,
+          "corpus:end": 1445592
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0470",
+          "dc:title": "Turn 470",
+          "corpus:begin": 1445592,
+          "corpus:end": 1447489
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0471",
+          "dc:title": "Turn 471",
+          "corpus:begin": 1447489,
+          "corpus:end": 1447976
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0472",
+          "dc:title": "Turn 472",
+          "corpus:begin": 1447976,
+          "corpus:end": 1452369
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0473",
+          "dc:title": "Turn 473",
+          "corpus:begin": 1452369,
+          "corpus:end": 1454787
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0474",
+          "dc:title": "Turn 474",
+          "corpus:begin": 1454787,
+          "corpus:end": 1455290
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0475",
+          "dc:title": "Turn 475",
+          "corpus:begin": 1455290,
+          "corpus:end": 1458446
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0476",
+          "dc:title": "Turn 476",
+          "corpus:begin": 1458446,
+          "corpus:end": 1459741
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0477",
+          "dc:title": "Turn 477",
+          "corpus:begin": 1459741,
+          "corpus:end": 1464269
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0478",
+          "dc:title": "Turn 478",
+          "corpus:begin": 1464269,
+          "corpus:end": 1465757
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0479",
+          "dc:title": "Turn 479",
+          "corpus:begin": 1465757,
+          "corpus:end": 1474206
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0480",
+          "dc:title": "Turn 480",
+          "corpus:begin": 1474206,
+          "corpus:end": 1478962
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0481",
+          "dc:title": "Turn 481",
+          "corpus:begin": 1478962,
+          "corpus:end": 1491475
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0482",
+          "dc:title": "Turn 482",
+          "corpus:begin": 1491475,
+          "corpus:end": 1492094
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0483",
+          "dc:title": "Turn 483",
+          "corpus:begin": 1492094,
+          "corpus:end": 1497742
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0484",
+          "dc:title": "Turn 484",
+          "corpus:begin": 1497742,
+          "corpus:end": 1497993
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0485",
+          "dc:title": "Turn 485",
+          "corpus:begin": 1497993,
+          "corpus:end": 1510109
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0486",
+          "dc:title": "Turn 486",
+          "corpus:begin": 1510109,
+          "corpus:end": 1513787
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0487",
+          "dc:title": "Turn 487",
+          "corpus:begin": 1513787,
+          "corpus:end": 1515568
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0488",
+          "dc:title": "Turn 488",
+          "corpus:begin": 1515568,
+          "corpus:end": 1515958
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0489",
+          "dc:title": "Turn 489",
+          "corpus:begin": 1515958,
+          "corpus:end": 1517639
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0490",
+          "dc:title": "Turn 490",
+          "corpus:begin": 1517639,
+          "corpus:end": 1523519
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "dc:title": "Turn 491",
+          "corpus:begin": 1523519,
+          "corpus:end": 1556257
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0492",
+          "dc:title": "Turn 492",
+          "corpus:begin": 1556257,
+          "corpus:end": 1559718
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0493",
+          "dc:title": "Turn 493",
+          "corpus:begin": 1559718,
+          "corpus:end": 1560182
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0494",
+          "dc:title": "Turn 494",
+          "corpus:begin": 1560182,
+          "corpus:end": 1564470
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0495",
+          "dc:title": "Turn 495",
+          "corpus:begin": 1564470,
+          "corpus:end": 1565707
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0496",
+          "dc:title": "Turn 496",
+          "corpus:begin": 1565707,
+          "corpus:end": 1580717
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0497",
+          "dc:title": "Turn 497",
+          "corpus:begin": 1580717,
+          "corpus:end": 1580798
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0498",
+          "dc:title": "Turn 498",
+          "corpus:begin": 1580798,
+          "corpus:end": 1586091
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0499",
+          "dc:title": "Turn 499",
+          "corpus:begin": 1586091,
+          "corpus:end": 1586868
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0500",
+          "dc:title": "Turn 500",
+          "corpus:begin": 1586868,
+          "corpus:end": 1596686
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0501",
+          "dc:title": "Turn 501",
+          "corpus:begin": 1596686,
+          "corpus:end": 1600735
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0502",
+          "dc:title": "Turn 502",
+          "corpus:begin": 1600735,
+          "corpus:end": 1603188
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0503",
+          "dc:title": "Turn 503",
+          "corpus:begin": 1603188,
+          "corpus:end": 1625611
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0504",
+          "dc:title": "Turn 504",
+          "corpus:begin": 1625611,
+          "corpus:end": 1628915
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0505",
+          "dc:title": "Turn 505",
+          "corpus:begin": 1628915,
+          "corpus:end": 1650685
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0506",
+          "dc:title": "Turn 506",
+          "corpus:begin": 1650685,
+          "corpus:end": 1651033
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0507",
+          "dc:title": "Turn 507",
+          "corpus:begin": 1651033,
+          "corpus:end": 1658030
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0508",
+          "dc:title": "Turn 508",
+          "corpus:begin": 1658030,
+          "corpus:end": 1658227
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0509",
+          "dc:title": "Turn 509",
+          "corpus:begin": 1658227,
+          "corpus:end": 1666421
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0510",
+          "dc:title": "Turn 510",
+          "corpus:begin": 1666421,
+          "corpus:end": 1672851
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0511",
+          "dc:title": "Turn 511",
+          "corpus:begin": 1672851,
+          "corpus:end": 1673999
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0512",
+          "dc:title": "Turn 512",
+          "corpus:begin": 1673999,
+          "corpus:end": 1690808
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0513",
+          "dc:title": "Turn 513",
+          "corpus:begin": 1690808,
+          "corpus:end": 1691136
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0514",
+          "dc:title": "Turn 514",
+          "corpus:begin": 1691136,
+          "corpus:end": 1692991
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0515",
+          "dc:title": "Turn 515",
+          "corpus:begin": 1692991,
+          "corpus:end": 1693690
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0516",
+          "dc:title": "Turn 516",
+          "corpus:begin": 1693690,
+          "corpus:end": 1706448
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0517",
+          "dc:title": "Turn 517",
+          "corpus:begin": 1706448,
+          "corpus:end": 1708287
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0518",
+          "dc:title": "Turn 518",
+          "corpus:begin": 1708287,
+          "corpus:end": 1708890
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0519",
+          "dc:title": "Turn 519",
+          "corpus:begin": 1708890,
+          "corpus:end": 1709203
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0520",
+          "dc:title": "Turn 520",
+          "corpus:begin": 1709203,
+          "corpus:end": 1715025
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0521",
+          "dc:title": "Turn 521",
+          "corpus:begin": 1715025,
+          "corpus:end": 1716957
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0522",
+          "dc:title": "Turn 522",
+          "corpus:begin": 1716957,
+          "corpus:end": 1723397
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0523",
+          "dc:title": "Turn 523",
+          "corpus:begin": 1723397,
+          "corpus:end": 1727014
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0524",
+          "dc:title": "Turn 524",
+          "corpus:begin": 1727014,
+          "corpus:end": 1729112
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0525",
+          "dc:title": "Turn 525",
+          "corpus:begin": 1729112,
+          "corpus:end": 1732106
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0526",
+          "dc:title": "Turn 526",
+          "corpus:begin": 1732106,
+          "corpus:end": 1732666
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0527",
+          "dc:title": "Turn 527",
+          "corpus:begin": 1732666,
+          "corpus:end": 1734637
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0528",
+          "dc:title": "Turn 528",
+          "corpus:begin": 1734637,
+          "corpus:end": 1735240
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0529",
+          "dc:title": "Turn 529",
+          "corpus:begin": 1735240,
+          "corpus:end": 1741348
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0530",
+          "dc:title": "Turn 530",
+          "corpus:begin": 1741348,
+          "corpus:end": 1742202
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0531",
+          "dc:title": "Turn 531",
+          "corpus:begin": 1742202,
+          "corpus:end": 1743094
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0532",
+          "dc:title": "Turn 532",
+          "corpus:begin": 1743094,
+          "corpus:end": 1745760
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0533",
+          "dc:title": "Turn 533",
+          "corpus:begin": 1745760,
+          "corpus:end": 1750280
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0534",
+          "dc:title": "Turn 534",
+          "corpus:begin": 1750280,
+          "corpus:end": 1751265
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0535",
+          "dc:title": "Turn 535",
+          "corpus:begin": 1751265,
+          "corpus:end": 1757678
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0536",
+          "dc:title": "Turn 536",
+          "corpus:begin": 1757678,
+          "corpus:end": 1762951
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0537",
+          "dc:title": "Turn 537",
+          "corpus:begin": 1762951,
+          "corpus:end": 1764713
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0538",
+          "dc:title": "Turn 538",
+          "corpus:begin": 1764713,
+          "corpus:end": 1779077
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0539",
+          "dc:title": "Turn 539",
+          "corpus:begin": 1779077,
+          "corpus:end": 1779970
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0540",
+          "dc:title": "Turn 540",
+          "corpus:begin": 1779970,
+          "corpus:end": 1786531
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0541",
+          "dc:title": "Turn 541",
+          "corpus:begin": 1786531,
+          "corpus:end": 1792160
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0542",
+          "dc:title": "Turn 542",
+          "corpus:begin": 1792160,
+          "corpus:end": 1794536
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0543",
+          "dc:title": "Turn 543",
+          "corpus:begin": 1794536,
+          "corpus:end": 1797899
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0544",
+          "dc:title": "Turn 544",
+          "corpus:begin": 1797899,
+          "corpus:end": 1799056
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0545",
+          "dc:title": "Turn 545",
+          "corpus:begin": 1799056,
+          "corpus:end": 1800489
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0546",
+          "dc:title": "Turn 546",
+          "corpus:begin": 1800489,
+          "corpus:end": 1809784
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "dc:title": "Turn 547",
+          "corpus:begin": 1809784,
+          "corpus:end": 1841912
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0548",
+          "dc:title": "Turn 548",
+          "corpus:begin": 1841912,
+          "corpus:end": 1842145
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0549",
+          "dc:title": "Turn 549",
+          "corpus:begin": 1842145,
+          "corpus:end": 1847833
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0550",
+          "dc:title": "Turn 550",
+          "corpus:begin": 1847833,
+          "corpus:end": 1852193
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0551",
+          "dc:title": "Turn 551",
+          "corpus:begin": 1852193,
+          "corpus:end": 1852442
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0552",
+          "dc:title": "Turn 552",
+          "corpus:begin": 1852442,
+          "corpus:end": 1853268
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0553",
+          "dc:title": "Turn 553",
+          "corpus:begin": 1853268,
+          "corpus:end": 1864537
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0554",
+          "dc:title": "Turn 554",
+          "corpus:begin": 1864537,
+          "corpus:end": 1864942
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0555",
+          "dc:title": "Turn 555",
+          "corpus:begin": 1864942,
+          "corpus:end": 1869460
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0556",
+          "dc:title": "Turn 556",
+          "corpus:begin": 1869460,
+          "corpus:end": 1869942
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0557",
+          "dc:title": "Turn 557",
+          "corpus:begin": 1869942,
+          "corpus:end": 1871131
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0558",
+          "dc:title": "Turn 558",
+          "corpus:begin": 1871131,
+          "corpus:end": 1871667
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0559",
+          "dc:title": "Turn 559",
+          "corpus:begin": 1871667,
+          "corpus:end": 1872856
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0560",
+          "dc:title": "Turn 560",
+          "corpus:begin": 1872856,
+          "corpus:end": 1881416
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0561",
+          "dc:title": "Turn 561",
+          "corpus:begin": 1881416,
+          "corpus:end": 1893663
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0562",
+          "dc:title": "Turn 562",
+          "corpus:begin": 1893663,
+          "corpus:end": 1894792
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0563",
+          "dc:title": "Turn 563",
+          "corpus:begin": 1894792,
+          "corpus:end": 1905039
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0564",
+          "dc:title": "Turn 564",
+          "corpus:begin": 1905039,
+          "corpus:end": 1909479
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0565",
+          "dc:title": "Turn 565",
+          "corpus:begin": 1909479,
+          "corpus:end": 1916292
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0566",
+          "dc:title": "Turn 566",
+          "corpus:begin": 1916292,
+          "corpus:end": 1916581
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0567",
+          "dc:title": "Turn 567",
+          "corpus:begin": 1916581,
+          "corpus:end": 1922334
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0568",
+          "dc:title": "Turn 568",
+          "corpus:begin": 1922334,
+          "corpus:end": 1924489
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0569",
+          "dc:title": "Turn 569",
+          "corpus:begin": 1924489,
+          "corpus:end": 1928853
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0570",
+          "dc:title": "Turn 570",
+          "corpus:begin": 1928853,
+          "corpus:end": 1930062
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0571",
+          "dc:title": "Turn 571",
+          "corpus:begin": 1930062,
+          "corpus:end": 1935677
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0572",
+          "dc:title": "Turn 572",
+          "corpus:begin": 1935677,
+          "corpus:end": 1936022
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0573",
+          "dc:title": "Turn 573",
+          "corpus:begin": 1936022,
+          "corpus:end": 1942761
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0574",
+          "dc:title": "Turn 574",
+          "corpus:begin": 1942761,
+          "corpus:end": 1944521
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0575",
+          "dc:title": "Turn 575",
+          "corpus:begin": 1944521,
+          "corpus:end": 1951050
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0576",
+          "dc:title": "Turn 576",
+          "corpus:begin": 1951050,
+          "corpus:end": 1956347
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0577",
+          "dc:title": "Turn 577",
+          "corpus:begin": 1956347,
+          "corpus:end": 1963408
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0578",
+          "dc:title": "Turn 578",
+          "corpus:begin": 1963408,
+          "corpus:end": 1966176
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0579",
+          "dc:title": "Turn 579",
+          "corpus:begin": 1966176,
+          "corpus:end": 1968934
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0580",
+          "dc:title": "Turn 580",
+          "corpus:begin": 1968934,
+          "corpus:end": 1971118
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0581",
+          "dc:title": "Turn 581",
+          "corpus:begin": 1971118,
+          "corpus:end": 1972786
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0582",
+          "dc:title": "Turn 582",
+          "corpus:begin": 1972786,
+          "corpus:end": 1975677
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0583",
+          "dc:title": "Turn 583",
+          "corpus:begin": 1975677,
+          "corpus:end": 1976423
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0584",
+          "dc:title": "Turn 584",
+          "corpus:begin": 1976423,
+          "corpus:end": 1976844
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0585",
+          "dc:title": "Turn 585",
+          "corpus:begin": 1976844,
+          "corpus:end": 1982604
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0586",
+          "dc:title": "Turn 586",
+          "corpus:begin": 1982604,
+          "corpus:end": 1983889
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0587",
+          "dc:title": "Turn 587",
+          "corpus:begin": 1983889,
+          "corpus:end": 1984099
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0588",
+          "dc:title": "Turn 588",
+          "corpus:begin": 1984099,
+          "corpus:end": 1987848
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0589",
+          "dc:title": "Turn 589",
+          "corpus:begin": 1987848,
+          "corpus:end": 1988445
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0590",
+          "dc:title": "Turn 590",
+          "corpus:begin": 1988445,
+          "corpus:end": 1990036
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0591",
+          "dc:title": "Turn 591",
+          "corpus:begin": 1990036,
+          "corpus:end": 1990457
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0592",
+          "dc:title": "Turn 592",
+          "corpus:begin": 1990457,
+          "corpus:end": 1991188
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0593",
+          "dc:title": "Turn 593",
+          "corpus:begin": 1991188,
+          "corpus:end": 1999036
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0594",
+          "dc:title": "Turn 594",
+          "corpus:begin": 1999036,
+          "corpus:end": 2001220
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0595",
+          "dc:title": "Turn 595",
+          "corpus:begin": 2001220,
+          "corpus:end": 2002065
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0596",
+          "dc:title": "Turn 596",
+          "corpus:begin": 2002065,
+          "corpus:end": 2002486
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0597",
+          "dc:title": "Turn 597",
+          "corpus:begin": 2002486,
+          "corpus:end": 2005492
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0598",
+          "dc:title": "Turn 598",
+          "corpus:begin": 2005492,
+          "corpus:end": 2005894
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0599",
+          "dc:title": "Turn 599",
+          "corpus:begin": 2005894,
+          "corpus:end": 2012963
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0600",
+          "dc:title": "Turn 600",
+          "corpus:begin": 2012963,
+          "corpus:end": 2016971
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0601",
+          "dc:title": "Turn 601",
+          "corpus:begin": 2016971,
+          "corpus:end": 2017376
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0602",
+          "dc:title": "Turn 602",
+          "corpus:begin": 2017376,
+          "corpus:end": 2020857
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0603",
+          "dc:title": "Turn 603",
+          "corpus:begin": 2020857,
+          "corpus:end": 2021129
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0604",
+          "dc:title": "Turn 604",
+          "corpus:begin": 2021129,
+          "corpus:end": 2027520
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0605",
+          "dc:title": "Turn 605",
+          "corpus:begin": 2027520,
+          "corpus:end": 2028327
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0606",
+          "dc:title": "Turn 606",
+          "corpus:begin": 2028327,
+          "corpus:end": 2029363
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0607",
+          "dc:title": "Turn 607",
+          "corpus:begin": 2029363,
+          "corpus:end": 2035505
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0608",
+          "dc:title": "Turn 608",
+          "corpus:begin": 2035505,
+          "corpus:end": 2036940
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0609",
+          "dc:title": "Turn 609",
+          "corpus:begin": 2036940,
+          "corpus:end": 2041293
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0610",
+          "dc:title": "Turn 610",
+          "corpus:begin": 2041293,
+          "corpus:end": 2044835
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0611",
+          "dc:title": "Turn 611",
+          "corpus:begin": 2044835,
+          "corpus:end": 2046560
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0612",
+          "dc:title": "Turn 612",
+          "corpus:begin": 2046560,
+          "corpus:end": 2051030
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0613",
+          "dc:title": "Turn 613",
+          "corpus:begin": 2051030,
+          "corpus:end": 2054285
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0614",
+          "dc:title": "Turn 614",
+          "corpus:begin": 2054285,
+          "corpus:end": 2055639
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0615",
+          "dc:title": "Turn 615",
+          "corpus:begin": 2055639,
+          "corpus:end": 2056542
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0616",
+          "dc:title": "Turn 616",
+          "corpus:begin": 2056542,
+          "corpus:end": 2056928
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0617",
+          "dc:title": "Turn 617",
+          "corpus:begin": 2056928,
+          "corpus:end": 2059594
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0618",
+          "dc:title": "Turn 618",
+          "corpus:begin": 2059594,
+          "corpus:end": 2060313
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0619",
+          "dc:title": "Turn 619",
+          "corpus:begin": 2060313,
+          "corpus:end": 2060858
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0620",
+          "dc:title": "Turn 620",
+          "corpus:begin": 2060858,
+          "corpus:end": 2068615
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0621",
+          "dc:title": "Turn 621",
+          "corpus:begin": 2068615,
+          "corpus:end": 2069681
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0622",
+          "dc:title": "Turn 622",
+          "corpus:begin": 2069681,
+          "corpus:end": 2070705
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0623",
+          "dc:title": "Turn 623",
+          "corpus:begin": 2070705,
+          "corpus:end": 2071033
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0624",
+          "dc:title": "Turn 624",
+          "corpus:begin": 2071033,
+          "corpus:end": 2073607
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0625",
+          "dc:title": "Turn 625",
+          "corpus:begin": 2073607,
+          "corpus:end": 2077884
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0626",
+          "dc:title": "Turn 626",
+          "corpus:begin": 2077884,
+          "corpus:end": 2080963
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0627",
+          "dc:title": "Turn 627",
+          "corpus:begin": 2080963,
+          "corpus:end": 2082393
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0628",
+          "dc:title": "Turn 628",
+          "corpus:begin": 2082393,
+          "corpus:end": 2089142
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0629",
+          "dc:title": "Turn 629",
+          "corpus:begin": 2089142,
+          "corpus:end": 2089451
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0630",
+          "dc:title": "Turn 630",
+          "corpus:begin": 2089451,
+          "corpus:end": 2092291
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0631",
+          "dc:title": "Turn 631",
+          "corpus:begin": 2092291,
+          "corpus:end": 2093222
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0632",
+          "dc:title": "Turn 632",
+          "corpus:begin": 2093222,
+          "corpus:end": 2095250
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0633",
+          "dc:title": "Turn 633",
+          "corpus:begin": 2095250,
+          "corpus:end": 2097317
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0634",
+          "dc:title": "Turn 634",
+          "corpus:begin": 2097317,
+          "corpus:end": 2099214
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0635",
+          "dc:title": "Turn 635",
+          "corpus:begin": 2099214,
+          "corpus:end": 2102077
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0636",
+          "dc:title": "Turn 636",
+          "corpus:begin": 2102077,
+          "corpus:end": 2102409
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0637",
+          "dc:title": "Turn 637",
+          "corpus:begin": 2102409,
+          "corpus:end": 2107281
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0638",
+          "dc:title": "Turn 638",
+          "corpus:begin": 2107281,
+          "corpus:end": 2120475
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0639",
+          "dc:title": "Turn 639",
+          "corpus:begin": 2120475,
+          "corpus:end": 2122739
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0640",
+          "dc:title": "Turn 640",
+          "corpus:begin": 2122739,
+          "corpus:end": 2128774
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0641",
+          "dc:title": "Turn 641",
+          "corpus:begin": 2128774,
+          "corpus:end": 2130903
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0642",
+          "dc:title": "Turn 642",
+          "corpus:begin": 2130903,
+          "corpus:end": 2133824
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0643",
+          "dc:title": "Turn 643",
+          "corpus:begin": 2133824,
+          "corpus:end": 2138951
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0644",
+          "dc:title": "Turn 644",
+          "corpus:begin": 2138951,
+          "corpus:end": 2140635
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0645",
+          "dc:title": "Turn 645",
+          "corpus:begin": 2140635,
+          "corpus:end": 2141930
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0646",
+          "dc:title": "Turn 646",
+          "corpus:begin": 2141930,
+          "corpus:end": 2143402
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0647",
+          "dc:title": "Turn 647",
+          "corpus:begin": 2143402,
+          "corpus:end": 2145473
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0648",
+          "dc:title": "Turn 648",
+          "corpus:begin": 2145473,
+          "corpus:end": 2146566
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0649",
+          "dc:title": "Turn 649",
+          "corpus:begin": 2146566,
+          "corpus:end": 2154658
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0650",
+          "dc:title": "Turn 650",
+          "corpus:begin": 2154658,
+          "corpus:end": 2156189
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0651",
+          "dc:title": "Turn 651",
+          "corpus:begin": 2156189,
+          "corpus:end": 2157696
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0652",
+          "dc:title": "Turn 652",
+          "corpus:begin": 2157696,
+          "corpus:end": 2159956
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0653",
+          "dc:title": "Turn 653",
+          "corpus:begin": 2159956,
+          "corpus:end": 2161714
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0654",
+          "dc:title": "Turn 654",
+          "corpus:begin": 2161714,
+          "corpus:end": 2167551
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0655",
+          "dc:title": "Turn 655",
+          "corpus:begin": 2167551,
+          "corpus:end": 2170178
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0656",
+          "dc:title": "Turn 656",
+          "corpus:begin": 2170178,
+          "corpus:end": 2170449
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0657",
+          "dc:title": "Turn 657",
+          "corpus:begin": 2170449,
+          "corpus:end": 2180283
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0658",
+          "dc:title": "Turn 658",
+          "corpus:begin": 2180283,
+          "corpus:end": 2180940
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0659",
+          "dc:title": "Turn 659",
+          "corpus:begin": 2180940,
+          "corpus:end": 2185982
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0660",
+          "dc:title": "Turn 660",
+          "corpus:begin": 2185982,
+          "corpus:end": 2186913
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0661",
+          "dc:title": "Turn 661",
+          "corpus:begin": 2186913,
+          "corpus:end": 2189386
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0662",
+          "dc:title": "Turn 662",
+          "corpus:begin": 2189386,
+          "corpus:end": 2193624
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0663",
+          "dc:title": "Turn 663",
+          "corpus:begin": 2193624,
+          "corpus:end": 2195000
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0664",
+          "dc:title": "Turn 664",
+          "corpus:begin": 2195000,
+          "corpus:end": 2196569
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0665",
+          "dc:title": "Turn 665",
+          "corpus:begin": 2196569,
+          "corpus:end": 2197210
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0666",
+          "dc:title": "Turn 666",
+          "corpus:begin": 2197210,
+          "corpus:end": 2199007
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0667",
+          "dc:title": "Turn 667",
+          "corpus:begin": 2199007,
+          "corpus:end": 2212486
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0668",
+          "dc:title": "Turn 668",
+          "corpus:begin": 2212486,
+          "corpus:end": 2213452
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0669",
+          "dc:title": "Turn 669",
+          "corpus:begin": 2213452,
+          "corpus:end": 2215813
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0670",
+          "dc:title": "Turn 670",
+          "corpus:begin": 2215813,
+          "corpus:end": 2218769
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0671",
+          "dc:title": "Turn 671",
+          "corpus:begin": 2218769,
+          "corpus:end": 2220473
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0672",
+          "dc:title": "Turn 672",
+          "corpus:begin": 2220473,
+          "corpus:end": 2222466
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0673",
+          "dc:title": "Turn 673",
+          "corpus:begin": 2222466,
+          "corpus:end": 2223065
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0674",
+          "dc:title": "Turn 674",
+          "corpus:begin": 2223065,
+          "corpus:end": 2235303
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0675",
+          "dc:title": "Turn 675",
+          "corpus:begin": 2235303,
+          "corpus:end": 2235950
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0676",
+          "dc:title": "Turn 676",
+          "corpus:begin": 2235950,
+          "corpus:end": 2238292
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0677",
+          "dc:title": "Turn 677",
+          "corpus:begin": 2238292,
+          "corpus:end": 2239745
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0678",
+          "dc:title": "Turn 678",
+          "corpus:begin": 2239745,
+          "corpus:end": 2243056
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0679",
+          "dc:title": "Turn 679",
+          "corpus:begin": 2243056,
+          "corpus:end": 2251111
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0680",
+          "dc:title": "Turn 680",
+          "corpus:begin": 2251111,
+          "corpus:end": 2253796
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0681",
+          "dc:title": "Turn 681",
+          "corpus:begin": 2253796,
+          "corpus:end": 2260696
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0682",
+          "dc:title": "Turn 682",
+          "corpus:begin": 2260696,
+          "corpus:end": 2261102
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0683",
+          "dc:title": "Turn 683",
+          "corpus:begin": 2261102,
+          "corpus:end": 2264660
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0684",
+          "dc:title": "Turn 684",
+          "corpus:begin": 2264660,
+          "corpus:end": 2265162
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0685",
+          "dc:title": "Turn 685",
+          "corpus:begin": 2265162,
+          "corpus:end": 2267384
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0686",
+          "dc:title": "Turn 686",
+          "corpus:begin": 2267384,
+          "corpus:end": 2267697
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0687",
+          "dc:title": "Turn 687",
+          "corpus:begin": 2267697,
+          "corpus:end": 2268879
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0688",
+          "dc:title": "Turn 688",
+          "corpus:begin": 2268879,
+          "corpus:end": 2269208
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0689",
+          "dc:title": "Turn 689",
+          "corpus:begin": 2269208,
+          "corpus:end": 2272302
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0690",
+          "dc:title": "Turn 690",
+          "corpus:begin": 2272302,
+          "corpus:end": 2272747
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0691",
+          "dc:title": "Turn 691",
+          "corpus:begin": 2272747,
+          "corpus:end": 2275243
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0692",
+          "dc:title": "Turn 692",
+          "corpus:begin": 2275243,
+          "corpus:end": 2275575
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0693",
+          "dc:title": "Turn 693",
+          "corpus:begin": 2275575,
+          "corpus:end": 2275749
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0694",
+          "dc:title": "Turn 694",
+          "corpus:begin": 2275749,
+          "corpus:end": 2277352
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0695",
+          "dc:title": "Turn 695",
+          "corpus:begin": 2277352,
+          "corpus:end": 2278434
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0696",
+          "dc:title": "Turn 696",
+          "corpus:begin": 2278434,
+          "corpus:end": 2280717
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0697",
+          "dc:title": "Turn 697",
+          "corpus:begin": 2280717,
+          "corpus:end": 2285303
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0698",
+          "dc:title": "Turn 698",
+          "corpus:begin": 2285303,
+          "corpus:end": 2286114
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0699",
+          "dc:title": "Turn 699",
+          "corpus:begin": 2286114,
+          "corpus:end": 2288301
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0700",
+          "dc:title": "Turn 700",
+          "corpus:begin": 2288301,
+          "corpus:end": 2290526
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0701",
+          "dc:title": "Turn 701",
+          "corpus:begin": 2290526,
+          "corpus:end": 2294490
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0702",
+          "dc:title": "Turn 702",
+          "corpus:begin": 2294490,
+          "corpus:end": 2296715
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0703",
+          "dc:title": "Turn 703",
+          "corpus:begin": 2296715,
+          "corpus:end": 2309878
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0704",
+          "dc:title": "Turn 704",
+          "corpus:begin": 2309878,
+          "corpus:end": 2312432
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0705",
+          "dc:title": "Turn 705",
+          "corpus:begin": 2312432,
+          "corpus:end": 2320001
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0706",
+          "dc:title": "Turn 706",
+          "corpus:begin": 2320001,
+          "corpus:end": 2320932
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0707",
+          "dc:title": "Turn 707",
+          "corpus:begin": 2320932,
+          "corpus:end": 2322284
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0708",
+          "dc:title": "Turn 708",
+          "corpus:begin": 2322284,
+          "corpus:end": 2323984
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0709",
+          "dc:title": "Turn 709",
+          "corpus:begin": 2323984,
+          "corpus:end": 2324390
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0710",
+          "dc:title": "Turn 710",
+          "corpus:begin": 2324390,
+          "corpus:end": 2324838
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "dc:title": "Turn 711",
+          "corpus:begin": 2324838,
+          "corpus:end": 2356321
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0712",
+          "dc:title": "Turn 712",
+          "corpus:begin": 2356321,
+          "corpus:end": 2360478
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0713",
+          "dc:title": "Turn 713",
+          "corpus:begin": 2360478,
+          "corpus:end": 2360749
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0714",
+          "dc:title": "Turn 714",
+          "corpus:begin": 2360749,
+          "corpus:end": 2364983
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0715",
+          "dc:title": "Turn 715",
+          "corpus:begin": 2364983,
+          "corpus:end": 2368263
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0716",
+          "dc:title": "Turn 716",
+          "corpus:begin": 2368263,
+          "corpus:end": 2378334
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0717",
+          "dc:title": "Turn 717",
+          "corpus:begin": 2378334,
+          "corpus:end": 2379246
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0718",
+          "dc:title": "Turn 718",
+          "corpus:begin": 2379246,
+          "corpus:end": 2381722
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0719",
+          "dc:title": "Turn 719",
+          "corpus:begin": 2381722,
+          "corpus:end": 2381973
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0720",
+          "dc:title": "Turn 720",
+          "corpus:begin": 2381973,
+          "corpus:end": 2384233
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0721",
+          "dc:title": "Turn 721",
+          "corpus:begin": 2384233,
+          "corpus:end": 2384678
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0722",
+          "dc:title": "Turn 722",
+          "corpus:begin": 2384678,
+          "corpus:end": 2388158
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0723",
+          "dc:title": "Turn 723",
+          "corpus:begin": 2388158,
+          "corpus:end": 2396387
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0724",
+          "dc:title": "Turn 724",
+          "corpus:begin": 2396387,
+          "corpus:end": 2407811
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0725",
+          "dc:title": "Turn 725",
+          "corpus:begin": 2407811,
+          "corpus:end": 2410732
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0726",
+          "dc:title": "Turn 726",
+          "corpus:begin": 2410732,
+          "corpus:end": 2414000
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0727",
+          "dc:title": "Turn 727",
+          "corpus:begin": 2414000,
+          "corpus:end": 2414425
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0728",
+          "dc:title": "Turn 728",
+          "corpus:begin": 2414425,
+          "corpus:end": 2414676
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0729",
+          "dc:title": "Turn 729",
+          "corpus:begin": 2414676,
+          "corpus:end": 2417226
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0730",
+          "dc:title": "Turn 730",
+          "corpus:begin": 2417226,
+          "corpus:end": 2425729
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0731",
+          "dc:title": "Turn 731",
+          "corpus:begin": 2425729,
+          "corpus:end": 2426019
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0732",
+          "dc:title": "Turn 732",
+          "corpus:begin": 2426019,
+          "corpus:end": 2428144
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0733",
+          "dc:title": "Turn 733",
+          "corpus:begin": 2428144,
+          "corpus:end": 2428438
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0734",
+          "dc:title": "Turn 734",
+          "corpus:begin": 2428438,
+          "corpus:end": 2434898
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0735",
+          "dc:title": "Turn 735",
+          "corpus:begin": 2434898,
+          "corpus:end": 2435250
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0736",
+          "dc:title": "Turn 736",
+          "corpus:begin": 2435250,
+          "corpus:end": 2441748
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0737",
+          "dc:title": "Turn 737",
+          "corpus:begin": 2441748,
+          "corpus:end": 2445414
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0738",
+          "dc:title": "Turn 738",
+          "corpus:begin": 2445414,
+          "corpus:end": 2445867
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0739",
+          "dc:title": "Turn 739",
+          "corpus:begin": 2445867,
+          "corpus:end": 2448734
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0740",
+          "dc:title": "Turn 740",
+          "corpus:begin": 2448734,
+          "corpus:end": 2449201
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0741",
+          "dc:title": "Turn 741",
+          "corpus:begin": 2449201,
+          "corpus:end": 2453030
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0742",
+          "dc:title": "Turn 742",
+          "corpus:begin": 2453030,
+          "corpus:end": 2463343
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0743",
+          "dc:title": "Turn 743",
+          "corpus:begin": 2463343,
+          "corpus:end": 2468953
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0744",
+          "dc:title": "Turn 744",
+          "corpus:begin": 2468953,
+          "corpus:end": 2469591
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0745",
+          "dc:title": "Turn 745",
+          "corpus:begin": 2469591,
+          "corpus:end": 2471565
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0746",
+          "dc:title": "Turn 746",
+          "corpus:begin": 2471565,
+          "corpus:end": 2473458
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0747",
+          "dc:title": "Turn 747",
+          "corpus:begin": 2473458,
+          "corpus:end": 2474405
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0748",
+          "dc:title": "Turn 748",
+          "corpus:begin": 2474405,
+          "corpus:end": 2475143
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0749",
+          "dc:title": "Turn 749",
+          "corpus:begin": 2475143,
+          "corpus:end": 2475997
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0750",
+          "dc:title": "Turn 750",
+          "corpus:begin": 2475997,
+          "corpus:end": 2477990
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0751",
+          "dc:title": "Turn 751",
+          "corpus:begin": 2477990,
+          "corpus:end": 2488618
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0752",
+          "dc:title": "Turn 752",
+          "corpus:begin": 2488618,
+          "corpus:end": 2488796
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0753",
+          "dc:title": "Turn 753",
+          "corpus:begin": 2488796,
+          "corpus:end": 2492667
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0754",
+          "dc:title": "Turn 754",
+          "corpus:begin": 2492667,
+          "corpus:end": 2494348
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0755",
+          "dc:title": "Turn 755",
+          "corpus:begin": 2494348,
+          "corpus:end": 2496403
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0756",
+          "dc:title": "Turn 756",
+          "corpus:begin": 2496403,
+          "corpus:end": 2499753
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0757",
+          "dc:title": "Turn 757",
+          "corpus:begin": 2499753,
+          "corpus:end": 2505183
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0758",
+          "dc:title": "Turn 758",
+          "corpus:begin": 2505183,
+          "corpus:end": 2509256
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0759",
+          "dc:title": "Turn 759",
+          "corpus:begin": 2509256,
+          "corpus:end": 2512386
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0760",
+          "dc:title": "Turn 760",
+          "corpus:begin": 2512386,
+          "corpus:end": 2523720
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0761",
+          "dc:title": "Turn 761",
+          "corpus:begin": 2523720,
+          "corpus:end": 2532119
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0762",
+          "dc:title": "Turn 762",
+          "corpus:begin": 2532119,
+          "corpus:end": 2535016
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0763",
+          "dc:title": "Turn 763",
+          "corpus:begin": 2535016,
+          "corpus:end": 2537951
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0764",
+          "dc:title": "Turn 764",
+          "corpus:begin": 2537951,
+          "corpus:end": 2541626
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0765",
+          "dc:title": "Turn 765",
+          "corpus:begin": 2541626,
+          "corpus:end": 2542832
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0766",
+          "dc:title": "Turn 766",
+          "corpus:begin": 2542832,
+          "corpus:end": 2546856
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0767",
+          "dc:title": "Turn 767",
+          "corpus:begin": 2546856,
+          "corpus:end": 2552572
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0768",
+          "dc:title": "Turn 768",
+          "corpus:begin": 2552572,
+          "corpus:end": 2556402
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0769",
+          "dc:title": "Turn 769",
+          "corpus:begin": 2556402,
+          "corpus:end": 2561884
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0770",
+          "dc:title": "Turn 770",
+          "corpus:begin": 2561884,
+          "corpus:end": 2561981
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0771",
+          "dc:title": "Turn 771",
+          "corpus:begin": 2561981,
+          "corpus:end": 2563109
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0772",
+          "dc:title": "Turn 772",
+          "corpus:begin": 2563109,
+          "corpus:end": 2563265
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0773",
+          "dc:title": "Turn 773",
+          "corpus:begin": 2563265,
+          "corpus:end": 2566512
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0774",
+          "dc:title": "Turn 774",
+          "corpus:begin": 2566512,
+          "corpus:end": 2566959
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0775",
+          "dc:title": "Turn 775",
+          "corpus:begin": 2566959,
+          "corpus:end": 2570147
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0776",
+          "dc:title": "Turn 776",
+          "corpus:begin": 2570147,
+          "corpus:end": 2570964
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0777",
+          "dc:title": "Turn 777",
+          "corpus:begin": 2570964,
+          "corpus:end": 2574697
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0778",
+          "dc:title": "Turn 778",
+          "corpus:begin": 2574697,
+          "corpus:end": 2575455
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0779",
+          "dc:title": "Turn 779",
+          "corpus:begin": 2575455,
+          "corpus:end": 2581346
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0780",
+          "dc:title": "Turn 780",
+          "corpus:begin": 2581346,
+          "corpus:end": 2583290
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0781",
+          "dc:title": "Turn 781",
+          "corpus:begin": 2583290,
+          "corpus:end": 2585934
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0782",
+          "dc:title": "Turn 782",
+          "corpus:begin": 2585934,
+          "corpus:end": 2591533
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0783",
+          "dc:title": "Turn 783",
+          "corpus:begin": 2591533,
+          "corpus:end": 2592855
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0784",
+          "dc:title": "Turn 784",
+          "corpus:begin": 2592855,
+          "corpus:end": 2595246
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0785",
+          "dc:title": "Turn 785",
+          "corpus:begin": 2595246,
+          "corpus:end": 2610002
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0786",
+          "dc:title": "Turn 786",
+          "corpus:begin": 2610002,
+          "corpus:end": 2613774
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0787",
+          "dc:title": "Turn 787",
+          "corpus:begin": 2613774,
+          "corpus:end": 2614299
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0788",
+          "dc:title": "Turn 788",
+          "corpus:begin": 2614299,
+          "corpus:end": 2631964
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0789",
+          "dc:title": "Turn 789",
+          "corpus:begin": 2631964,
+          "corpus:end": 2636720
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0790",
+          "dc:title": "Turn 790",
+          "corpus:begin": 2636720,
+          "corpus:end": 2638334
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0791",
+          "dc:title": "Turn 791",
+          "corpus:begin": 2638334,
+          "corpus:end": 2642300
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0792",
+          "dc:title": "Turn 792",
+          "corpus:begin": 2642300,
+          "corpus:end": 2645877
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0793",
+          "dc:title": "Turn 793",
+          "corpus:begin": 2645877,
+          "corpus:end": 2647957
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0794",
+          "dc:title": "Turn 794",
+          "corpus:begin": 2647957,
+          "corpus:end": 2650310
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0795",
+          "dc:title": "Turn 795",
+          "corpus:begin": 2650310,
+          "corpus:end": 2654742
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0796",
+          "dc:title": "Turn 796",
+          "corpus:begin": 2654742,
+          "corpus:end": 2661002
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0797",
+          "dc:title": "Turn 797",
+          "corpus:begin": 2661002,
+          "corpus:end": 2661722
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0798",
+          "dc:title": "Turn 798",
+          "corpus:begin": 2661722,
+          "corpus:end": 2665182
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0799",
+          "dc:title": "Turn 799",
+          "corpus:begin": 2665182,
+          "corpus:end": 2666329
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0800",
+          "dc:title": "Turn 800",
+          "corpus:begin": 2666329,
+          "corpus:end": 2669167
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0801",
+          "dc:title": "Turn 801",
+          "corpus:begin": 2669167,
+          "corpus:end": 2669420
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0802",
+          "dc:title": "Turn 802",
+          "corpus:begin": 2669420,
+          "corpus:end": 2672084
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0803",
+          "dc:title": "Turn 803",
+          "corpus:begin": 2672084,
+          "corpus:end": 2674786
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0804",
+          "dc:title": "Turn 804",
+          "corpus:begin": 2674786,
+          "corpus:end": 2678830
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0805",
+          "dc:title": "Turn 805",
+          "corpus:begin": 2678830,
+          "corpus:end": 2685732
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0806",
+          "dc:title": "Turn 806",
+          "corpus:begin": 2685732,
+          "corpus:end": 2689367
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0807",
+          "dc:title": "Turn 807",
+          "corpus:begin": 2689367,
+          "corpus:end": 2690417
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0808",
+          "dc:title": "Turn 808",
+          "corpus:begin": 2690417,
+          "corpus:end": 2693333
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0809",
+          "dc:title": "Turn 809",
+          "corpus:begin": 2693333,
+          "corpus:end": 2697960
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0810",
+          "dc:title": "Turn 810",
+          "corpus:begin": 2697960,
+          "corpus:end": 2698602
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0811",
+          "dc:title": "Turn 811",
+          "corpus:begin": 2698602,
+          "corpus:end": 2698835
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0812",
+          "dc:title": "Turn 812",
+          "corpus:begin": 2698835,
+          "corpus:end": 2701712
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0813",
+          "dc:title": "Turn 813",
+          "corpus:begin": 2701712,
+          "corpus:end": 2705718
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0814",
+          "dc:title": "Turn 814",
+          "corpus:begin": 2705718,
+          "corpus:end": 2707526
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0815",
+          "dc:title": "Turn 815",
+          "corpus:begin": 2707526,
+          "corpus:end": 2709334
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0816",
+          "dc:title": "Turn 816",
+          "corpus:begin": 2709334,
+          "corpus:end": 2710948
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0817",
+          "dc:title": "Turn 817",
+          "corpus:begin": 2710948,
+          "corpus:end": 2711240
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0818",
+          "dc:title": "Turn 818",
+          "corpus:begin": 2711240,
+          "corpus:end": 2712271
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0819",
+          "dc:title": "Turn 819",
+          "corpus:begin": 2712271,
+          "corpus:end": 2713982
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0820",
+          "dc:title": "Turn 820",
+          "corpus:begin": 2713982,
+          "corpus:end": 2715193
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0821",
+          "dc:title": "Turn 821",
+          "corpus:begin": 2715193,
+          "corpus:end": 2716762
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0822",
+          "dc:title": "Turn 822",
+          "corpus:begin": 2716762,
+          "corpus:end": 2717481
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0823",
+          "dc:title": "Turn 823",
+          "corpus:begin": 2717481,
+          "corpus:end": 2718434
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0824",
+          "dc:title": "Turn 824",
+          "corpus:begin": 2718434,
+          "corpus:end": 2719698
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0825",
+          "dc:title": "Turn 825",
+          "corpus:begin": 2719698,
+          "corpus:end": 2723177
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0826",
+          "dc:title": "Turn 826",
+          "corpus:begin": 2723177,
+          "corpus:end": 2724305
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0827",
+          "dc:title": "Turn 827",
+          "corpus:begin": 2724305,
+          "corpus:end": 2731051
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0828",
+          "dc:title": "Turn 828",
+          "corpus:begin": 2731051,
+          "corpus:end": 2735406
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0829",
+          "dc:title": "Turn 829",
+          "corpus:begin": 2735406,
+          "corpus:end": 2743727
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0830",
+          "dc:title": "Turn 830",
+          "corpus:begin": 2743727,
+          "corpus:end": 2744563
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0831",
+          "dc:title": "Turn 831",
+          "corpus:begin": 2744563,
+          "corpus:end": 2750667
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0832",
+          "dc:title": "Turn 832",
+          "corpus:begin": 2750667,
+          "corpus:end": 2754011
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0833",
+          "dc:title": "Turn 833",
+          "corpus:begin": 2754011,
+          "corpus:end": 2756072
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0834",
+          "dc:title": "Turn 834",
+          "corpus:begin": 2756072,
+          "corpus:end": 2761535
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0835",
+          "dc:title": "Turn 835",
+          "corpus:begin": 2761535,
+          "corpus:end": 2761866
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0836",
+          "dc:title": "Turn 836",
+          "corpus:begin": 2761866,
+          "corpus:end": 2762002
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0837",
+          "dc:title": "Turn 837",
+          "corpus:begin": 2762002,
+          "corpus:end": 2763479
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0838",
+          "dc:title": "Turn 838",
+          "corpus:begin": 2763479,
+          "corpus:end": 2771450
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0839",
+          "dc:title": "Turn 839",
+          "corpus:begin": 2771450,
+          "corpus:end": 2773433
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0840",
+          "dc:title": "Turn 840",
+          "corpus:begin": 2773433,
+          "corpus:end": 2773763
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0841",
+          "dc:title": "Turn 841",
+          "corpus:begin": 2773763,
+          "corpus:end": 2774288
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0842",
+          "dc:title": "Turn 842",
+          "corpus:begin": 2774288,
+          "corpus:end": 2781637
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0843",
+          "dc:title": "Turn 843",
+          "corpus:begin": 2781637,
+          "corpus:end": 2783231
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0844",
+          "dc:title": "Turn 844",
+          "corpus:begin": 2783231,
+          "corpus:end": 2784767
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0845",
+          "dc:title": "Turn 845",
+          "corpus:begin": 2784767,
+          "corpus:end": 2789258
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0846",
+          "dc:title": "Turn 846",
+          "corpus:begin": 2789258,
+          "corpus:end": 2791620
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0847",
+          "dc:title": "Turn 847",
+          "corpus:begin": 2791620,
+          "corpus:end": 2802167
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0848",
+          "dc:title": "Turn 848",
+          "corpus:begin": 2802167,
+          "corpus:end": 2802867
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0849",
+          "dc:title": "Turn 849",
+          "corpus:begin": 2802867,
+          "corpus:end": 2806444
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0850",
+          "dc:title": "Turn 850",
+          "corpus:begin": 2806444,
+          "corpus:end": 2810371
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0851",
+          "dc:title": "Turn 851",
+          "corpus:begin": 2810371,
+          "corpus:end": 2811129
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0852",
+          "dc:title": "Turn 852",
+          "corpus:begin": 2811129,
+          "corpus:end": 2816748
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0853",
+          "dc:title": "Turn 853",
+          "corpus:begin": 2816748,
+          "corpus:end": 2817856
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0854",
+          "dc:title": "Turn 854",
+          "corpus:begin": 2817856,
+          "corpus:end": 2818264
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0855",
+          "dc:title": "Turn 855",
+          "corpus:begin": 2818264,
+          "corpus:end": 2819314
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0856",
+          "dc:title": "Turn 856",
+          "corpus:begin": 2819314,
+          "corpus:end": 2820267
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0857",
+          "dc:title": "Turn 857",
+          "corpus:begin": 2820267,
+          "corpus:end": 2820967
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0858",
+          "dc:title": "Turn 858",
+          "corpus:begin": 2820967,
+          "corpus:end": 2826450
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0859",
+          "dc:title": "Turn 859",
+          "corpus:begin": 2826450,
+          "corpus:end": 2827597
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0860",
+          "dc:title": "Turn 860",
+          "corpus:begin": 2827597,
+          "corpus:end": 2828025
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0861",
+          "dc:title": "Turn 861",
+          "corpus:begin": 2828025,
+          "corpus:end": 2828939
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0862",
+          "dc:title": "Turn 862",
+          "corpus:begin": 2828939,
+          "corpus:end": 2831233
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0863",
+          "dc:title": "Turn 863",
+          "corpus:begin": 2831233,
+          "corpus:end": 2832924
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0864",
+          "dc:title": "Turn 864",
+          "corpus:begin": 2832924,
+          "corpus:end": 2837259
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0865",
+          "dc:title": "Turn 865",
+          "corpus:begin": 2837259,
+          "corpus:end": 2837609
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0866",
+          "dc:title": "Turn 866",
+          "corpus:begin": 2837609,
+          "corpus:end": 2842819
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0867",
+          "dc:title": "Turn 867",
+          "corpus:begin": 2842819,
+          "corpus:end": 2843091
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0868",
+          "dc:title": "Turn 868",
+          "corpus:begin": 2843091,
+          "corpus:end": 2844394
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0869",
+          "dc:title": "Turn 869",
+          "corpus:begin": 2844394,
+          "corpus:end": 2844919
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0870",
+          "dc:title": "Turn 870",
+          "corpus:begin": 2844919,
+          "corpus:end": 2851393
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0871",
+          "dc:title": "Turn 871",
+          "corpus:begin": 2851393,
+          "corpus:end": 2851782
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0872",
+          "dc:title": "Turn 872",
+          "corpus:begin": 2851782,
+          "corpus:end": 2854869
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0873",
+          "dc:title": "Turn 873",
+          "corpus:begin": 2854869,
+          "corpus:end": 2856603
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0874",
+          "dc:title": "Turn 874",
+          "corpus:begin": 2856603,
+          "corpus:end": 2861677
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0875",
+          "dc:title": "Turn 875",
+          "corpus:begin": 2861677,
+          "corpus:end": 2863796
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0876",
+          "dc:title": "Turn 876",
+          "corpus:begin": 2863796,
+          "corpus:end": 2868034
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0877",
+          "dc:title": "Turn 877",
+          "corpus:begin": 2868034,
+          "corpus:end": 2874683
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0878",
+          "dc:title": "Turn 878",
+          "corpus:begin": 2874683,
+          "corpus:end": 2875169
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0879",
+          "dc:title": "Turn 879",
+          "corpus:begin": 2875169,
+          "corpus:end": 2877988
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0880",
+          "dc:title": "Turn 880",
+          "corpus:begin": 2877988,
+          "corpus:end": 2879504
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0881",
+          "dc:title": "Turn 881",
+          "corpus:begin": 2879504,
+          "corpus:end": 2883373
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0882",
+          "dc:title": "Turn 882",
+          "corpus:begin": 2883373,
+          "corpus:end": 2884462
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0883",
+          "dc:title": "Turn 883",
+          "corpus:begin": 2884462,
+          "corpus:end": 2886426
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0884",
+          "dc:title": "Turn 884",
+          "corpus:begin": 2886426,
+          "corpus:end": 2887495
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0885",
+          "dc:title": "Turn 885",
+          "corpus:begin": 2887495,
+          "corpus:end": 2896055
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0886",
+          "dc:title": "Turn 886",
+          "corpus:begin": 2896055,
+          "corpus:end": 2896405
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0887",
+          "dc:title": "Turn 887",
+          "corpus:begin": 2896405,
+          "corpus:end": 2899530
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0888",
+          "dc:title": "Turn 888",
+          "corpus:begin": 2899530,
+          "corpus:end": 2899788
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0889",
+          "dc:title": "Turn 889",
+          "corpus:begin": 2899788,
+          "corpus:end": 2906806
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0890",
+          "dc:title": "Turn 890",
+          "corpus:begin": 2906806,
+          "corpus:end": 2907195
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0891",
+          "dc:title": "Turn 891",
+          "corpus:begin": 2907195,
+          "corpus:end": 2909372
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0892",
+          "dc:title": "Turn 892",
+          "corpus:begin": 2909372,
+          "corpus:end": 2911064
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0893",
+          "dc:title": "Turn 893",
+          "corpus:begin": 2911064,
+          "corpus:end": 2914680
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0894",
+          "dc:title": "Turn 894",
+          "corpus:begin": 2914680,
+          "corpus:end": 2917790
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0895",
+          "dc:title": "Turn 895",
+          "corpus:begin": 2917790,
+          "corpus:end": 2921348
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0896",
+          "dc:title": "Turn 896",
+          "corpus:begin": 2921348,
+          "corpus:end": 2922320
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0897",
+          "dc:title": "Turn 897",
+          "corpus:begin": 2922320,
+          "corpus:end": 2929532
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0898",
+          "dc:title": "Turn 898",
+          "corpus:begin": 2929532,
+          "corpus:end": 2931962
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0899",
+          "dc:title": "Turn 899",
+          "corpus:begin": 2931962,
+          "corpus:end": 2936784
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0900",
+          "dc:title": "Turn 900",
+          "corpus:begin": 2936784,
+          "corpus:end": 2943569
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0901",
+          "dc:title": "Turn 901",
+          "corpus:begin": 2943569,
+          "corpus:end": 2947496
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0902",
+          "dc:title": "Turn 902",
+          "corpus:begin": 2947496,
+          "corpus:end": 2949115
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0903",
+          "dc:title": "Turn 903",
+          "corpus:begin": 2949115,
+          "corpus:end": 2950626
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0904",
+          "dc:title": "Turn 904",
+          "corpus:begin": 2950626,
+          "corpus:end": 2952084
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0905",
+          "dc:title": "Turn 905",
+          "corpus:begin": 2952084,
+          "corpus:end": 2952978
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0906",
+          "dc:title": "Turn 906",
+          "corpus:begin": 2952978,
+          "corpus:end": 2955506
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0907",
+          "dc:title": "Turn 907",
+          "corpus:begin": 2955506,
+          "corpus:end": 2958403
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0908",
+          "dc:title": "Turn 908",
+          "corpus:begin": 2958403,
+          "corpus:end": 2965129
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0909",
+          "dc:title": "Turn 909",
+          "corpus:begin": 2965129,
+          "corpus:end": 2969834
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0910",
+          "dc:title": "Turn 910",
+          "corpus:begin": 2969834,
+          "corpus:end": 2971175
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0911",
+          "dc:title": "Turn 911",
+          "corpus:begin": 2971175,
+          "corpus:end": 2971797
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0912",
+          "dc:title": "Turn 912",
+          "corpus:begin": 2971797,
+          "corpus:end": 2976036
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0913",
+          "dc:title": "Turn 913",
+          "corpus:begin": 2976036,
+          "corpus:end": 2978408
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0914",
+          "dc:title": "Turn 914",
+          "corpus:begin": 2978408,
+          "corpus:end": 2983112
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0915",
+          "dc:title": "Turn 915",
+          "corpus:begin": 2983112,
+          "corpus:end": 2985348
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0916",
+          "dc:title": "Turn 916",
+          "corpus:begin": 2985348,
+          "corpus:end": 2987156
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0917",
+          "dc:title": "Turn 917",
+          "corpus:begin": 2987156,
+          "corpus:end": 2992303
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0918",
+          "dc:title": "Turn 918",
+          "corpus:begin": 2992303,
+          "corpus:end": 2994791
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0919",
+          "dc:title": "Turn 919",
+          "corpus:begin": 2994791,
+          "corpus:end": 2997824
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0920",
+          "dc:title": "Turn 920",
+          "corpus:begin": 2997824,
+          "corpus:end": 3001459
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0921",
+          "dc:title": "Turn 921",
+          "corpus:begin": 3001459,
+          "corpus:end": 3007097
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0922",
+          "dc:title": "Turn 922",
+          "corpus:begin": 3007097,
+          "corpus:end": 3008633
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0923",
+          "dc:title": "Turn 923",
+          "corpus:begin": 3008633,
+          "corpus:end": 3012988
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0924",
+          "dc:title": "Turn 924",
+          "corpus:begin": 3012988,
+          "corpus:end": 3013182
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0925",
+          "dc:title": "Turn 925",
+          "corpus:begin": 3013182,
+          "corpus:end": 3017965
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0926",
+          "dc:title": "Turn 926",
+          "corpus:begin": 3017965,
+          "corpus:end": 3023350
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0927",
+          "dc:title": "Turn 927",
+          "corpus:begin": 3023350,
+          "corpus:end": 3029401
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0928",
+          "dc:title": "Turn 928",
+          "corpus:begin": 3029401,
+          "corpus:end": 3031948
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0929",
+          "dc:title": "Turn 929",
+          "corpus:begin": 3031948,
+          "corpus:end": 3033678
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0930",
+          "dc:title": "Turn 930",
+          "corpus:begin": 3033678,
+          "corpus:end": 3034242
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0931",
+          "dc:title": "Turn 931",
+          "corpus:begin": 3034242,
+          "corpus:end": 3036244
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0932",
+          "dc:title": "Turn 932",
+          "corpus:begin": 3036244,
+          "corpus:end": 3039316
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0933",
+          "dc:title": "Turn 933",
+          "corpus:begin": 3039316,
+          "corpus:end": 3040677
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0934",
+          "dc:title": "Turn 934",
+          "corpus:begin": 3040677,
+          "corpus:end": 3043379
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0935",
+          "dc:title": "Turn 935",
+          "corpus:begin": 3043379,
+          "corpus:end": 3044293
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0936",
+          "dc:title": "Turn 936",
+          "corpus:begin": 3044293,
+          "corpus:end": 3046665
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0937",
+          "dc:title": "Turn 937",
+          "corpus:begin": 3046665,
+          "corpus:end": 3047384
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0938",
+          "dc:title": "Turn 938",
+          "corpus:begin": 3047384,
+          "corpus:end": 3048026
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0939",
+          "dc:title": "Turn 939",
+          "corpus:begin": 3048026,
+          "corpus:end": 3048629
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0940",
+          "dc:title": "Turn 940",
+          "corpus:begin": 3048629,
+          "corpus:end": 3051740
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0941",
+          "dc:title": "Turn 941",
+          "corpus:begin": 3051740,
+          "corpus:end": 3053062
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0942",
+          "dc:title": "Turn 942",
+          "corpus:begin": 3053062,
+          "corpus:end": 3056562
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0943",
+          "dc:title": "Turn 943",
+          "corpus:begin": 3056562,
+          "corpus:end": 3056776
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0944",
+          "dc:title": "Turn 944",
+          "corpus:begin": 3056776,
+          "corpus:end": 3059731
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0945",
+          "dc:title": "Turn 945",
+          "corpus:begin": 3059731,
+          "corpus:end": 3060159
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0946",
+          "dc:title": "Turn 946",
+          "corpus:begin": 3060159,
+          "corpus:end": 3063619
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0947",
+          "dc:title": "Turn 947",
+          "corpus:begin": 3063619,
+          "corpus:end": 3064300
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0948",
+          "dc:title": "Turn 948",
+          "corpus:begin": 3064300,
+          "corpus:end": 3065661
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0949",
+          "dc:title": "Turn 949",
+          "corpus:begin": 3065661,
+          "corpus:end": 3066089
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0950",
+          "dc:title": "Turn 950",
+          "corpus:begin": 3066089,
+          "corpus:end": 3070385
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0951",
+          "dc:title": "Turn 951",
+          "corpus:begin": 3070385,
+          "corpus:end": 3071027
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0952",
+          "dc:title": "Turn 952",
+          "corpus:begin": 3071027,
+          "corpus:end": 3071591
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0953",
+          "dc:title": "Turn 953",
+          "corpus:begin": 3071591,
+          "corpus:end": 3073982
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0954",
+          "dc:title": "Turn 954",
+          "corpus:begin": 3073982,
+          "corpus:end": 3078084
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0955",
+          "dc:title": "Turn 955",
+          "corpus:begin": 3078084,
+          "corpus:end": 3083527
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0956",
+          "dc:title": "Turn 956",
+          "corpus:begin": 3083527,
+          "corpus:end": 3083897
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0957",
+          "dc:title": "Turn 957",
+          "corpus:begin": 3083897,
+          "corpus:end": 3091226
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0958",
+          "dc:title": "Turn 958",
+          "corpus:begin": 3091226,
+          "corpus:end": 3099780
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0959",
+          "dc:title": "Turn 959",
+          "corpus:begin": 3099780,
+          "corpus:end": 3101160
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0960",
+          "dc:title": "Turn 960",
+          "corpus:begin": 3101160,
+          "corpus:end": 3104896
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0961",
+          "dc:title": "Turn 961",
+          "corpus:begin": 3104896,
+          "corpus:end": 3105306
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0962",
+          "dc:title": "Turn 962",
+          "corpus:begin": 3105306,
+          "corpus:end": 3106917
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0963",
+          "dc:title": "Turn 963",
+          "corpus:begin": 3106917,
+          "corpus:end": 3109239
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0964",
+          "dc:title": "Turn 964",
+          "corpus:begin": 3109239,
+          "corpus:end": 3113435
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0965",
+          "dc:title": "Turn 965",
+          "corpus:begin": 3113435,
+          "corpus:end": 3114173
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0966",
+          "dc:title": "Turn 966",
+          "corpus:begin": 3114173,
+          "corpus:end": 3121255
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0967",
+          "dc:title": "Turn 967",
+          "corpus:begin": 3121255,
+          "corpus:end": 3122997
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0968",
+          "dc:title": "Turn 968",
+          "corpus:begin": 3122997,
+          "corpus:end": 3124021
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0969",
+          "dc:title": "Turn 969",
+          "corpus:begin": 3124021,
+          "corpus:end": 3125528
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0970",
+          "dc:title": "Turn 970",
+          "corpus:begin": 3125528,
+          "corpus:end": 3126053
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0971",
+          "dc:title": "Turn 971",
+          "corpus:begin": 3126053,
+          "corpus:end": 3130385
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0972",
+          "dc:title": "Turn 972",
+          "corpus:begin": 3130385,
+          "corpus:end": 3135219
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0973",
+          "dc:title": "Turn 973",
+          "corpus:begin": 3135219,
+          "corpus:end": 3137657
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0974",
+          "dc:title": "Turn 974",
+          "corpus:begin": 3137657,
+          "corpus:end": 3143456
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0975",
+          "dc:title": "Turn 975",
+          "corpus:begin": 3143456,
+          "corpus:end": 3148115
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0976",
+          "dc:title": "Turn 976",
+          "corpus:begin": 3148115,
+          "corpus:end": 3155174
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0977",
+          "dc:title": "Turn 977",
+          "corpus:begin": 3155174,
+          "corpus:end": 3156916
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0978",
+          "dc:title": "Turn 978",
+          "corpus:begin": 3156916,
+          "corpus:end": 3164999
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0979",
+          "dc:title": "Turn 979",
+          "corpus:begin": 3164999,
+          "corpus:end": 3165911
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0980",
+          "dc:title": "Turn 980",
+          "corpus:begin": 3165911,
+          "corpus:end": 3174040
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0981",
+          "dc:title": "Turn 981",
+          "corpus:begin": 3174040,
+          "corpus:end": 3176184
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0982",
+          "dc:title": "Turn 982",
+          "corpus:begin": 3176184,
+          "corpus:end": 3177096
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0983",
+          "dc:title": "Turn 983",
+          "corpus:begin": 3177096,
+          "corpus:end": 3179383
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0984",
+          "dc:title": "Turn 984",
+          "corpus:begin": 3179383,
+          "corpus:end": 3185623
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0985",
+          "dc:title": "Turn 985",
+          "corpus:begin": 3185623,
+          "corpus:end": 3187810
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0986",
+          "dc:title": "Turn 986",
+          "corpus:begin": 3187810,
+          "corpus:end": 3189958
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0987",
+          "dc:title": "Turn 987",
+          "corpus:begin": 3189958,
+          "corpus:end": 3191391
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0988",
+          "dc:title": "Turn 988",
+          "corpus:begin": 3191391,
+          "corpus:end": 3195815
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0989",
+          "dc:title": "Turn 989",
+          "corpus:begin": 3195815,
+          "corpus:end": 3196379
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0990",
+          "dc:title": "Turn 990",
+          "corpus:begin": 3196379,
+          "corpus:end": 3201077
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0991",
+          "dc:title": "Turn 991",
+          "corpus:begin": 3201077,
+          "corpus:end": 3204075
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0992",
+          "dc:title": "Turn 992",
+          "corpus:begin": 3204075,
+          "corpus:end": 3207305
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0993",
+          "dc:title": "Turn 993",
+          "corpus:begin": 3207305,
+          "corpus:end": 3208082
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0994",
+          "dc:title": "Turn 994",
+          "corpus:begin": 3208082,
+          "corpus:end": 3208511
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0995",
+          "dc:title": "Turn 995",
+          "corpus:begin": 3208511,
+          "corpus:end": 3212243
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0996",
+          "dc:title": "Turn 996",
+          "corpus:begin": 3212243,
+          "corpus:end": 3212653
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0997",
+          "dc:title": "Turn 997",
+          "corpus:begin": 3212653,
+          "corpus:end": 3217118
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0998",
+          "dc:title": "Turn 998",
+          "corpus:begin": 3217118,
+          "corpus:end": 3221272
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn0999",
+          "dc:title": "Turn 999",
+          "corpus:begin": 3221272,
+          "corpus:end": 3223362
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1000",
+          "dc:title": "Turn 1000",
+          "corpus:begin": 3223362,
+          "corpus:end": 3225375
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1001",
+          "dc:title": "Turn 1001",
+          "corpus:begin": 3225375,
+          "corpus:end": 3227755
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1002",
+          "dc:title": "Turn 1002",
+          "corpus:begin": 3227755,
+          "corpus:end": 3229922
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1003",
+          "dc:title": "Turn 1003",
+          "corpus:begin": 3229922,
+          "corpus:end": 3230444
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1004",
+          "dc:title": "Turn 1004",
+          "corpus:begin": 3230444,
+          "corpus:end": 3233268
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1005",
+          "dc:title": "Turn 1005",
+          "corpus:begin": 3233268,
+          "corpus:end": 3233886
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1006",
+          "dc:title": "Turn 1006",
+          "corpus:begin": 3233886,
+          "corpus:end": 3239411
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1007",
+          "dc:title": "Turn 1007",
+          "corpus:begin": 3239411,
+          "corpus:end": 3247544
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1008",
+          "dc:title": "Turn 1008",
+          "corpus:begin": 3247544,
+          "corpus:end": 3249437
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1009",
+          "dc:title": "Turn 1009",
+          "corpus:begin": 3249437,
+          "corpus:end": 3249727
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1010",
+          "dc:title": "Turn 1010",
+          "corpus:begin": 3249727,
+          "corpus:end": 3250426
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1011",
+          "dc:title": "Turn 1011",
+          "corpus:begin": 3250426,
+          "corpus:end": 3250561
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1012",
+          "dc:title": "Turn 1012",
+          "corpus:begin": 3250561,
+          "corpus:end": 3251643
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1013",
+          "dc:title": "Turn 1013",
+          "corpus:begin": 3251643,
+          "corpus:end": 3253440
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1014",
+          "dc:title": "Turn 1014",
+          "corpus:begin": 3253440,
+          "corpus:end": 3254159
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1015",
+          "dc:title": "Turn 1015",
+          "corpus:begin": 3254159,
+          "corpus:end": 3264389
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1016",
+          "dc:title": "Turn 1016",
+          "corpus:begin": 3264389,
+          "corpus:end": 3270165
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1017",
+          "dc:title": "Turn 1017",
+          "corpus:begin": 3270165,
+          "corpus:end": 3270420
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1018",
+          "dc:title": "Turn 1018",
+          "corpus:begin": 3270420,
+          "corpus:end": 3279429
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1019",
+          "dc:title": "Turn 1019",
+          "corpus:begin": 3279429,
+          "corpus:end": 3282501
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1020",
+          "dc:title": "Turn 1020",
+          "corpus:begin": 3282501,
+          "corpus:end": 3292264
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1021",
+          "dc:title": "Turn 1021",
+          "corpus:begin": 3292264,
+          "corpus:end": 3295073
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1022",
+          "dc:title": "Turn 1022",
+          "corpus:begin": 3295073,
+          "corpus:end": 3297472
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1023",
+          "dc:title": "Turn 1023",
+          "corpus:begin": 3297472,
+          "corpus:end": 3297974
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1024",
+          "dc:title": "Turn 1024",
+          "corpus:begin": 3297974,
+          "corpus:end": 3298728
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1025",
+          "dc:title": "Turn 1025",
+          "corpus:begin": 3298728,
+          "corpus:end": 3299157
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1026",
+          "dc:title": "Turn 1026",
+          "corpus:begin": 3299157,
+          "corpus:end": 3299702
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1027",
+          "dc:title": "Turn 1027",
+          "corpus:begin": 3299702,
+          "corpus:end": 3300131
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1028",
+          "dc:title": "Turn 1028",
+          "corpus:begin": 3300131,
+          "corpus:end": 3301101
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1029",
+          "dc:title": "Turn 1029",
+          "corpus:begin": 3301101,
+          "corpus:end": 3301684
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1030",
+          "dc:title": "Turn 1030",
+          "corpus:begin": 3301684,
+          "corpus:end": 3306131
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1031",
+          "dc:title": "Turn 1031",
+          "corpus:begin": 3306131,
+          "corpus:end": 3307676
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1032",
+          "dc:title": "Turn 1032",
+          "corpus:begin": 3307676,
+          "corpus:end": 3312162
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1033",
+          "dc:title": "Turn 1033",
+          "corpus:begin": 3312162,
+          "corpus:end": 3313016
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1034",
+          "dc:title": "Turn 1034",
+          "corpus:begin": 3313016,
+          "corpus:end": 3316284
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1035",
+          "dc:title": "Turn 1035",
+          "corpus:begin": 3316284,
+          "corpus:end": 3316420
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1036",
+          "dc:title": "Turn 1036",
+          "corpus:begin": 3316420,
+          "corpus:end": 3319186
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1037",
+          "dc:title": "Turn 1037",
+          "corpus:begin": 3319186,
+          "corpus:end": 3319553
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1038",
+          "dc:title": "Turn 1038",
+          "corpus:begin": 3319553,
+          "corpus:end": 3321465
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1039",
+          "dc:title": "Turn 1039",
+          "corpus:begin": 3321465,
+          "corpus:end": 3324811
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1040",
+          "dc:title": "Turn 1040",
+          "corpus:begin": 3324811,
+          "corpus:end": 3328041
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1041",
+          "dc:title": "Turn 1041",
+          "corpus:begin": 3328041,
+          "corpus:end": 3330189
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1042",
+          "dc:title": "Turn 1042",
+          "corpus:begin": 3330189,
+          "corpus:end": 3332530
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1043",
+          "dc:title": "Turn 1043",
+          "corpus:begin": 3332530,
+          "corpus:end": 3339040
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1044",
+          "dc:title": "Turn 1044",
+          "corpus:begin": 3339040,
+          "corpus:end": 3340299
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1045",
+          "dc:title": "Turn 1045",
+          "corpus:begin": 3340299,
+          "corpus:end": 3345890
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1046",
+          "dc:title": "Turn 1046",
+          "corpus:begin": 3345890,
+          "corpus:end": 3353586
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1047",
+          "dc:title": "Turn 1047",
+          "corpus:begin": 3353586,
+          "corpus:end": 3353880
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1048",
+          "dc:title": "Turn 1048",
+          "corpus:begin": 3353880,
+          "corpus:end": 3357346
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1049",
+          "dc:title": "Turn 1049",
+          "corpus:begin": 3357346,
+          "corpus:end": 3359961
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1050",
+          "dc:title": "Turn 1050",
+          "corpus:begin": 3359961,
+          "corpus:end": 3361198
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1051",
+          "dc:title": "Turn 1051",
+          "corpus:begin": 3361198,
+          "corpus:end": 3365355
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1052",
+          "dc:title": "Turn 1052",
+          "corpus:begin": 3365355,
+          "corpus:end": 3368306
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1053",
+          "dc:title": "Turn 1053",
+          "corpus:begin": 3368306,
+          "corpus:end": 3380997
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1054",
+          "dc:title": "Turn 1054",
+          "corpus:begin": 3380997,
+          "corpus:end": 3386633
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1055",
+          "dc:title": "Turn 1055",
+          "corpus:begin": 3386633,
+          "corpus:end": 3387155
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1056",
+          "dc:title": "Turn 1056",
+          "corpus:begin": 3387155,
+          "corpus:end": 3388217
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1057",
+          "dc:title": "Turn 1057",
+          "corpus:begin": 3388217,
+          "corpus:end": 3395373
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1058",
+          "dc:title": "Turn 1058",
+          "corpus:begin": 3395373,
+          "corpus:end": 3396671
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1059",
+          "dc:title": "Turn 1059",
+          "corpus:begin": 3396671,
+          "corpus:end": 3397077
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1060",
+          "dc:title": "Turn 1060",
+          "corpus:begin": 3397077,
+          "corpus:end": 3405220
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1061",
+          "dc:title": "Turn 1061",
+          "corpus:begin": 3405220,
+          "corpus:end": 3406132
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1062",
+          "dc:title": "Turn 1062",
+          "corpus:begin": 3406132,
+          "corpus:end": 3408868
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1063",
+          "dc:title": "Turn 1063",
+          "corpus:begin": 3408868,
+          "corpus:end": 3409065
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1064",
+          "dc:title": "Turn 1064",
+          "corpus:begin": 3409065,
+          "corpus:end": 3412890
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1065",
+          "dc:title": "Turn 1065",
+          "corpus:begin": 3412890,
+          "corpus:end": 3412971
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1066",
+          "dc:title": "Turn 1066",
+          "corpus:begin": 3412971,
+          "corpus:end": 3416661
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1067",
+          "dc:title": "Turn 1067",
+          "corpus:begin": 3416661,
+          "corpus:end": 3417399
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1068",
+          "dc:title": "Turn 1068",
+          "corpus:begin": 3417399,
+          "corpus:end": 3420049
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1069",
+          "dc:title": "Turn 1069",
+          "corpus:begin": 3420049,
+          "corpus:end": 3428583
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1070",
+          "dc:title": "Turn 1070",
+          "corpus:begin": 3428583,
+          "corpus:end": 3428989
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1071",
+          "dc:title": "Turn 1071",
+          "corpus:begin": 3428989,
+          "corpus:end": 3431871
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1072",
+          "dc:title": "Turn 1072",
+          "corpus:begin": 3431871,
+          "corpus:end": 3434343
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1073",
+          "dc:title": "Turn 1073",
+          "corpus:begin": 3434343,
+          "corpus:end": 3434788
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1074",
+          "dc:title": "Turn 1074",
+          "corpus:begin": 3434788,
+          "corpus:end": 3437983
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1075",
+          "dc:title": "Turn 1075",
+          "corpus:begin": 3437983,
+          "corpus:end": 3441120
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1076",
+          "dc:title": "Turn 1076",
+          "corpus:begin": 3441120,
+          "corpus:end": 3442936
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1077",
+          "dc:title": "Turn 1077",
+          "corpus:begin": 3442936,
+          "corpus:end": 3443365
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1078",
+          "dc:title": "Turn 1078",
+          "corpus:begin": 3443365,
+          "corpus:end": 3444744
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1079",
+          "dc:title": "Turn 1079",
+          "corpus:begin": 3444744,
+          "corpus:end": 3450133
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1080",
+          "dc:title": "Turn 1080",
+          "corpus:begin": 3450133,
+          "corpus:end": 3458601
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1081",
+          "dc:title": "Turn 1081",
+          "corpus:begin": 3458601,
+          "corpus:end": 3458852
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1082",
+          "dc:title": "Turn 1082",
+          "corpus:begin": 3458852,
+          "corpus:end": 3463582
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1083",
+          "dc:title": "Turn 1083",
+          "corpus:begin": 3463582,
+          "corpus:end": 3466889
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1084",
+          "dc:title": "Turn 1084",
+          "corpus:begin": 3466889,
+          "corpus:end": 3478004
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1085",
+          "dc:title": "Turn 1085",
+          "corpus:begin": 3478004,
+          "corpus:end": 3478433
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1086",
+          "dc:title": "Turn 1086",
+          "corpus:begin": 3478433,
+          "corpus:end": 3479692
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1087",
+          "dc:title": "Turn 1087",
+          "corpus:begin": 3479692,
+          "corpus:end": 3488335
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1088",
+          "dc:title": "Turn 1088",
+          "corpus:begin": 3488335,
+          "corpus:end": 3493744
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1089",
+          "dc:title": "Turn 1089",
+          "corpus:begin": 3493744,
+          "corpus:end": 3494424
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1090",
+          "dc:title": "Turn 1090",
+          "corpus:begin": 3494424,
+          "corpus:end": 3498276
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1091",
+          "dc:title": "Turn 1091",
+          "corpus:begin": 3498276,
+          "corpus:end": 3500353
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1092",
+          "dc:title": "Turn 1092",
+          "corpus:begin": 3500353,
+          "corpus:end": 3500797
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1093",
+          "dc:title": "Turn 1093",
+          "corpus:begin": 3500797,
+          "corpus:end": 3503139
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1094",
+          "dc:title": "Turn 1094",
+          "corpus:begin": 3503139,
+          "corpus:end": 3503800
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1095",
+          "dc:title": "Turn 1095",
+          "corpus:begin": 3503800,
+          "corpus:end": 3507787
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1096",
+          "dc:title": "Turn 1096",
+          "corpus:begin": 3507787,
+          "corpus:end": 3508579
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1097",
+          "dc:title": "Turn 1097",
+          "corpus:begin": 3508579,
+          "corpus:end": 3509530
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1098",
+          "dc:title": "Turn 1098",
+          "corpus:begin": 3509530,
+          "corpus:end": 3514966
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1099",
+          "dc:title": "Turn 1099",
+          "corpus:begin": 3514966,
+          "corpus:end": 3522353
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1100",
+          "dc:title": "Turn 1100",
+          "corpus:begin": 3522353,
+          "corpus:end": 3524447
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1101",
+          "dc:title": "Turn 1101",
+          "corpus:begin": 3524447,
+          "corpus:end": 3525645
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1102",
+          "dc:title": "Turn 1102",
+          "corpus:begin": 3525645,
+          "corpus:end": 3527098
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1103",
+          "dc:title": "Turn 1103",
+          "corpus:begin": 3527098,
+          "corpus:end": 3530502
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1104",
+          "dc:title": "Turn 1104",
+          "corpus:begin": 3530502,
+          "corpus:end": 3536483
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1105",
+          "dc:title": "Turn 1105",
+          "corpus:begin": 3536483,
+          "corpus:end": 3537530
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1106",
+          "dc:title": "Turn 1106",
+          "corpus:begin": 3537530,
+          "corpus:end": 3538055
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1107",
+          "dc:title": "Turn 1107",
+          "corpus:begin": 3538055,
+          "corpus:end": 3540532
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1108",
+          "dc:title": "Turn 1108",
+          "corpus:begin": 3540532,
+          "corpus:end": 3540729
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1109",
+          "dc:title": "Turn 1109",
+          "corpus:begin": 3540729,
+          "corpus:end": 3546710
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1110",
+          "dc:title": "Turn 1110",
+          "corpus:begin": 3546710,
+          "corpus:end": 3548835
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1111",
+          "dc:title": "Turn 1111",
+          "corpus:begin": 3548835,
+          "corpus:end": 3549418
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1112",
+          "dc:title": "Turn 1112",
+          "corpus:begin": 3549418,
+          "corpus:end": 3554557
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1113",
+          "dc:title": "Turn 1113",
+          "corpus:begin": 3554557,
+          "corpus:end": 3561055
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1114",
+          "dc:title": "Turn 1114",
+          "corpus:begin": 3561055,
+          "corpus:end": 3563381
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1115",
+          "dc:title": "Turn 1115",
+          "corpus:begin": 3563381,
+          "corpus:end": 3563536
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1116",
+          "dc:title": "Turn 1116",
+          "corpus:begin": 3563536,
+          "corpus:end": 3566901
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1117",
+          "dc:title": "Turn 1117",
+          "corpus:begin": 3566901,
+          "corpus:end": 3569223
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1118",
+          "dc:title": "Turn 1118",
+          "corpus:begin": 3569223,
+          "corpus:end": 3575080
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1119",
+          "dc:title": "Turn 1119",
+          "corpus:begin": 3575080,
+          "corpus:end": 3575702
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1120",
+          "dc:title": "Turn 1120",
+          "corpus:begin": 3575702,
+          "corpus:end": 3583213
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1121",
+          "dc:title": "Turn 1121",
+          "corpus:begin": 3583213,
+          "corpus:end": 3583545
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1122",
+          "dc:title": "Turn 1122",
+          "corpus:begin": 3583545,
+          "corpus:end": 3586833
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1123",
+          "dc:title": "Turn 1123",
+          "corpus:begin": 3586833,
+          "corpus:end": 3596186
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1124",
+          "dc:title": "Turn 1124",
+          "corpus:begin": 3596186,
+          "corpus:end": 3607958
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1125",
+          "dc:title": "Turn 1125",
+          "corpus:begin": 3607958,
+          "corpus:end": 3608252
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1126",
+          "dc:title": "Turn 1126",
+          "corpus:begin": 3608252,
+          "corpus:end": 3609338
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1127",
+          "dc:title": "Turn 1127",
+          "corpus:begin": 3609338,
+          "corpus:end": 3611119
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1128",
+          "dc:title": "Turn 1128",
+          "corpus:begin": 3611119,
+          "corpus:end": 3616285
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1129",
+          "dc:title": "Turn 1129",
+          "corpus:begin": 3616285,
+          "corpus:end": 3616675
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1130",
+          "dc:title": "Turn 1130",
+          "corpus:begin": 3616675,
+          "corpus:end": 3624178
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1131",
+          "dc:title": "Turn 1131",
+          "corpus:begin": 3624178,
+          "corpus:end": 3626013
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1132",
+          "dc:title": "Turn 1132",
+          "corpus:begin": 3626013,
+          "corpus:end": 3628467
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1133",
+          "dc:title": "Turn 1133",
+          "corpus:begin": 3628467,
+          "corpus:end": 3629958
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1134",
+          "dc:title": "Turn 1134",
+          "corpus:begin": 3629958,
+          "corpus:end": 3630982
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1135",
+          "dc:title": "Turn 1135",
+          "corpus:begin": 3630982,
+          "corpus:end": 3631392
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1136",
+          "dc:title": "Turn 1136",
+          "corpus:begin": 3631392,
+          "corpus:end": 3636546
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1137",
+          "dc:title": "Turn 1137",
+          "corpus:begin": 3636546,
+          "corpus:end": 3639486
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1138",
+          "dc:title": "Turn 1138",
+          "corpus:begin": 3639486,
+          "corpus:end": 3648168
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1139",
+          "dc:title": "Turn 1139",
+          "corpus:begin": 3648168,
+          "corpus:end": 3648423
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1140",
+          "dc:title": "Turn 1140",
+          "corpus:begin": 3648423,
+          "corpus:end": 3650339
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1141",
+          "dc:title": "Turn 1141",
+          "corpus:begin": 3650339,
+          "corpus:end": 3650745
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1142",
+          "dc:title": "Turn 1142",
+          "corpus:begin": 3650745,
+          "corpus:end": 3651715
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1143",
+          "dc:title": "Turn 1143",
+          "corpus:begin": 3651715,
+          "corpus:end": 3652047
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1144",
+          "dc:title": "Turn 1144",
+          "corpus:begin": 3652047,
+          "corpus:end": 3655756
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1145",
+          "dc:title": "Turn 1145",
+          "corpus:begin": 3655756,
+          "corpus:end": 3657112
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1146",
+          "dc:title": "Turn 1146",
+          "corpus:begin": 3657112,
+          "corpus:end": 3659592
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1147",
+          "dc:title": "Turn 1147",
+          "corpus:begin": 3659592,
+          "corpus:end": 3660253
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1148",
+          "dc:title": "Turn 1148",
+          "corpus:begin": 3660253,
+          "corpus:end": 3661033
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1149",
+          "dc:title": "Turn 1149",
+          "corpus:begin": 3661033,
+          "corpus:end": 3663892
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1150",
+          "dc:title": "Turn 1150",
+          "corpus:begin": 3663892,
+          "corpus:end": 3669580
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1151",
+          "dc:title": "Turn 1151",
+          "corpus:begin": 3669580,
+          "corpus:end": 3670914
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1152",
+          "dc:title": "Turn 1152",
+          "corpus:begin": 3670914,
+          "corpus:end": 3672112
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1153",
+          "dc:title": "Turn 1153",
+          "corpus:begin": 3672112,
+          "corpus:end": 3673024
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1154",
+          "dc:title": "Turn 1154",
+          "corpus:begin": 3673024,
+          "corpus:end": 3673472
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1155",
+          "dc:title": "Turn 1155",
+          "corpus:begin": 3673472,
+          "corpus:end": 3682853
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1156",
+          "dc:title": "Turn 1156",
+          "corpus:begin": 3682853,
+          "corpus:end": 3684982
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1157",
+          "dc:title": "Turn 1157",
+          "corpus:begin": 3684982,
+          "corpus:end": 3688540
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1158",
+          "dc:title": "Turn 1158",
+          "corpus:begin": 3688540,
+          "corpus:end": 3690534
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1159",
+          "dc:title": "Turn 1159",
+          "corpus:begin": 3690534,
+          "corpus:end": 3691504
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1160",
+          "dc:title": "Turn 1160",
+          "corpus:begin": 3691504,
+          "corpus:end": 3694721
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1161",
+          "dc:title": "Turn 1161",
+          "corpus:begin": 3694721,
+          "corpus:end": 3695030
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1162",
+          "dc:title": "Turn 1162",
+          "corpus:begin": 3695030,
+          "corpus:end": 3702838
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1163",
+          "dc:title": "Turn 1163",
+          "corpus:begin": 3702838,
+          "corpus:end": 3705102
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1164",
+          "dc:title": "Turn 1164",
+          "corpus:begin": 3705102,
+          "corpus:end": 3716693
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1165",
+          "dc:title": "Turn 1165",
+          "corpus:begin": 3716693,
+          "corpus:end": 3724478
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1166",
+          "dc:title": "Turn 1166",
+          "corpus:begin": 3724478,
+          "corpus:end": 3724733
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1167",
+          "dc:title": "Turn 1167",
+          "corpus:begin": 3724733,
+          "corpus:end": 3729004
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1168",
+          "dc:title": "Turn 1168",
+          "corpus:begin": 3729004,
+          "corpus:end": 3731249
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1169",
+          "dc:title": "Turn 1169",
+          "corpus:begin": 3731249,
+          "corpus:end": 3732528
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1170",
+          "dc:title": "Turn 1170",
+          "corpus:begin": 3732528,
+          "corpus:end": 3733749
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1171",
+          "dc:title": "Turn 1171",
+          "corpus:begin": 3733749,
+          "corpus:end": 3736245
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1172",
+          "dc:title": "Turn 1172",
+          "corpus:begin": 3736245,
+          "corpus:end": 3736635
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1173",
+          "dc:title": "Turn 1173",
+          "corpus:begin": 3736635,
+          "corpus:end": 3737833
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1174",
+          "dc:title": "Turn 1174",
+          "corpus:begin": 3737833,
+          "corpus:end": 3740039
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1175",
+          "dc:title": "Turn 1175",
+          "corpus:begin": 3740039,
+          "corpus:end": 3744045
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1176",
+          "dc:title": "Turn 1176",
+          "corpus:begin": 3744045,
+          "corpus:end": 3744393
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1177",
+          "dc:title": "Turn 1177",
+          "corpus:begin": 3744393,
+          "corpus:end": 3746062
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1178",
+          "dc:title": "Turn 1178",
+          "corpus:begin": 3746062,
+          "corpus:end": 3747708
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1179",
+          "dc:title": "Turn 1179",
+          "corpus:begin": 3747708,
+          "corpus:end": 3754230
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1180",
+          "dc:title": "Turn 1180",
+          "corpus:begin": 3754230,
+          "corpus:end": 3760545
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1181",
+          "dc:title": "Turn 1181",
+          "corpus:begin": 3760545,
+          "corpus:end": 3763077
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1182",
+          "dc:title": "Turn 1182",
+          "corpus:begin": 3763077,
+          "corpus:end": 3763869
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1183",
+          "dc:title": "Turn 1183",
+          "corpus:begin": 3763869,
+          "corpus:end": 3765383
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1184",
+          "dc:title": "Turn 1184",
+          "corpus:begin": 3765383,
+          "corpus:end": 3766156
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1185",
+          "dc:title": "Turn 1185",
+          "corpus:begin": 3766156,
+          "corpus:end": 3767083
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1186",
+          "dc:title": "Turn 1186",
+          "corpus:begin": 3767083,
+          "corpus:end": 3771255
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1187",
+          "dc:title": "Turn 1187",
+          "corpus:begin": 3771255,
+          "corpus:end": 3772859
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1188",
+          "dc:title": "Turn 1188",
+          "corpus:begin": 3772859,
+          "corpus:end": 3773206
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1189",
+          "dc:title": "Turn 1189",
+          "corpus:begin": 3773206,
+          "corpus:end": 3775640
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_trn1190",
+          "dc:title": "Turn 1190",
+          "corpus:begin": 3775640,
+          "corpus:end": 3779059
+        }
+      ],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0001",
+          "begin": 0,
+          "end": 1026,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0001",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0001"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0002",
+          "begin": 2312,
+          "end": 5393,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0001",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "alors je vais d'abord vous demander depuis combien de temps"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0001"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0003",
+          "begin": 5393,
+          "end": 6926,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0001",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous habitez Orléans ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0001"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0004",
+          "begin": 7709,
+          "end": 8669,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0002",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "depuis ma naissance"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0002"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0005",
+          "begin": 9333,
+          "end": 10832,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0003",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "dep-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0003"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0006",
+          "begin": 9333,
+          "end": 10832,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0003",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "cinquante-cinq ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0003"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0007",
+          "begin": 10832,
+          "end": 11792,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0004",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "cinquante-cinq ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0004"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0008",
+          "begin": 11792,
+          "end": 13760,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0005",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui je suis né à Orléans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0005"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0009",
+          "begin": 13760,
+          "end": 15363,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0006",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous êtes ah bon alors vous êtes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0006"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0010",
+          "begin": 15363,
+          "end": 18861,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0006",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "un Orléanais de vieille date mais ça ça c'est très intéressant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0006"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0011",
+          "begin": 19456,
+          "end": 19998,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0007",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0007"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0012",
+          "begin": 20468,
+          "end": 22158,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0007",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous vous plaisez à Orléans ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0007"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0013",
+          "begin": 22158,
+          "end": 23205,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0008",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0008"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0014",
+          "begin": 23205,
+          "end": 23678,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0009",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0009"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0015",
+          "begin": 23678,
+          "end": 24951,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0010",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment à tous points de vue"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0010"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0016",
+          "begin": 24951,
+          "end": 26971,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0010",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'ai encore euh ma famille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0010"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0017",
+          "begin": 27388,
+          "end": 28066,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0011",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0011"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0018",
+          "begin": 28066,
+          "end": 32259,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0012",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et puis toutes les connaissances et ben puis not- notre région est superbe quoi euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0012"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0019",
+          "begin": 32259,
+          "end": 32746,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0013",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0013"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0020",
+          "begin": 32746,
+          "end": 33254,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0014",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm hm oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0014"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0021",
+          "begin": 33918,
+          "end": 34196,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0015",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0015"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0022",
+          "begin": 34196,
+          "end": 35517,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0016",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm je voudrais pas changer"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0016"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0023",
+          "begin": 36421,
+          "end": 38403,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0017",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous envisagez pas de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0017"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0024",
+          "begin": 38403,
+          "end": 39898,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0017",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous comptez rester à Orléans ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0017"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0025",
+          "begin": 39898,
+          "end": 40559,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0018",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0018"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0026",
+          "begin": 40559,
+          "end": 41376,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0019",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0019"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0027",
+          "begin": 40559,
+          "end": 41376,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0019",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0019"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0028",
+          "begin": 41376,
+          "end": 44123,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0020",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça sera peut-être pas pareil pour le fils avec ses études"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0020"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0029",
+          "begin": 44123,
+          "end": 44405,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0021",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0021"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0030",
+          "begin": 44405,
+          "end": 48934,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0022",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "si plus tard il a une profession il veut être professeur de dessin il changerait peut-être forcément"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0022"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0031",
+          "begin": 48934,
+          "end": 49163,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0023",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0023"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0032",
+          "begin": 49163,
+          "end": 49894,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0024",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "travailler dans les lycées"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0024"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0033",
+          "begin": 50402,
+          "end": 50753,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0025",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0025"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0034",
+          "begin": 51727,
+          "end": 53191,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0025",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais enfin vous êtes un Orléanais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0025"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0035",
+          "begin": 53191,
+          "end": 54776,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0026",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh moi je jusqu'à la fin oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0026"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0036",
+          "begin": 53191,
+          "end": 54776,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0026",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "content"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0026"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0037",
+          "begin": 54776,
+          "end": 55524,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0027",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "satisfait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0027"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0038",
+          "begin": 56515,
+          "end": 56884,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0028",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0028"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0039",
+          "begin": 56884,
+          "end": 58435,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0028",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que vous faites comme travail ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0028"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0040",
+          "begin": 58435,
+          "end": 59655,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0029",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je suis peintre en bâtiment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0029"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0041",
+          "begin": 60351,
+          "end": 60754,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0030",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0030"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0042",
+          "begin": 61467,
+          "end": 63188,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0031",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh il y a vingt ans quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0031"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0043",
+          "begin": 64071,
+          "end": 64235,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0032",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0032"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0044",
+          "begin": 64235,
+          "end": 65000,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0033",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "depuis mon mariage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0033"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0045",
+          "begin": 65000,
+          "end": 65438,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0034",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0034"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0046",
+          "begin": 65438,
+          "end": 65855,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0034",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0034"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0047",
+          "begin": 65855,
+          "end": 67142,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0035",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "avant j'étais électricien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0035"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0048",
+          "begin": 67142,
+          "end": 67580,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0036",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0036"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0049",
+          "begin": 67580,
+          "end": 68484,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0037",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "dans le bâtiment aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0037"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0050",
+          "begin": 68484,
+          "end": 68901,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0038",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0038"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0051",
+          "begin": 70014,
+          "end": 70504,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0039",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0039"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0052",
+          "begin": 71582,
+          "end": 73008,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0039",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que par exemple faut"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0039"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0053",
+          "begin": 73829,
+          "end": 74371,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0039",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous pouvez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0039"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0054",
+          "begin": 74910,
+          "end": 78283,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0039",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "nous expliquer en quoi ça consiste enfin je sais pas simplement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0039"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0055",
+          "begin": 78283,
+          "end": 80842,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0039",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "décrire une journée de travail par exemple ou"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0039"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0056",
+          "begin": 80842,
+          "end": 81311,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0040",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0040"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0057",
+          "begin": 81311,
+          "end": 82163,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0041",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "comment ça se passe ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0041"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0058",
+          "begin": 82163,
+          "end": 83363,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0042",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "maintenant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0042"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0059",
+          "begin": 83363,
+          "end": 88912,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0042",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "depuis trois ans mon beau-père l'entreprise de peinture était à mon beau-père le père de ma femme"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0042"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0060",
+          "begin": 88912,
+          "end": 89416,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0043",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0043"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0061",
+          "begin": 89416,
+          "end": 89764,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0044",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0044"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0062",
+          "begin": 90320,
+          "end": 91416,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0044",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "depuis trois ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0044"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0063",
+          "begin": 91416,
+          "end": 93297,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0044",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je suis avec le successeur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0044"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0064",
+          "begin": 93297,
+          "end": 93575,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0045",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0045"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0065",
+          "begin": 93575,
+          "end": 95974,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0046",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors je suis comme chef de chantier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0046"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0066",
+          "begin": 95974,
+          "end": 96618,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0047",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0047"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0067",
+          "begin": 96618,
+          "end": 99021,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0048",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors je m'occupe des clients"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0048"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0068",
+          "begin": 99563,
+          "end": 100398,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0048",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à contenter"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0048"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0069",
+          "begin": 100398,
+          "end": 101723,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0048",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et du personnel"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0048"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0070",
+          "begin": 101723,
+          "end": 103643,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0048",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à surveiller à et à aider"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0048"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0071",
+          "begin": 103643,
+          "end": 104116,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0049",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0049"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0072",
+          "begin": 104116,
+          "end": 104380,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0049",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0049"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0073",
+          "begin": 104380,
+          "end": 105667,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0050",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour euh vérifier le travail"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0050"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0074",
+          "begin": 106157,
+          "end": 106818,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0050",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0050"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0075",
+          "begin": 107413,
+          "end": 111328,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0050",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il nous do- en ce moment nous sommes dans une belle propriété en train de refaire les"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0050"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0076",
+          "begin": 111328,
+          "end": 112023,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0050",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "extérieurs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0050"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0077",
+          "begin": 112023,
+          "end": 113449,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0051",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "peinture extérieure"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0051"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0078",
+          "begin": 112023,
+          "end": 113449,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0051",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0051"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0079",
+          "begin": 113449,
+          "end": 113835,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0052",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0052"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0080",
+          "begin": 113835,
+          "end": 114968,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0053",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh c'est très plaisant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0053"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0081",
+          "begin": 114968,
+          "end": 115594,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0054",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0054"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0082",
+          "begin": 115594,
+          "end": 116794,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0055",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "nous avons pris"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0055"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0083",
+          "begin": 117475,
+          "end": 120674,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0055",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "voilà huit jours le début du chantier on va terminer demain"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0055"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0084",
+          "begin": 120674,
+          "end": 121039,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0056",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0056"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0085",
+          "begin": 121039,
+          "end": 122222,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0057",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et les clients"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0057"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0086",
+          "begin": 122222,
+          "end": 125389,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0057",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh c'est très susceptible évidemment ouvrir les salons et tout ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0057"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0087",
+          "begin": 125389,
+          "end": 126015,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0058",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "quoi mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0058"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0088",
+          "begin": 125389,
+          "end": 126015,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0058",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0058"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0089",
+          "begin": 126015,
+          "end": 127806,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0059",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est c'est agréable tout de même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0059"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0090",
+          "begin": 127806,
+          "end": 128244,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0060",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0060"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0091",
+          "begin": 128887,
+          "end": 131565,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0060",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et comment ça se passe une journée de travail pour vous euh ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0060"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0092",
+          "begin": 132107,
+          "end": 132528,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0060",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pratiquement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0060"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0093",
+          "begin": 132528,
+          "end": 137208,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0061",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je commence le je me lève le matin avant un petit peu avant sept heures on commence à sept heures et demie"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0061"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0094",
+          "begin": 137208,
+          "end": 137750,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0062",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0062"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0095",
+          "begin": 137750,
+          "end": 138985,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0063",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et alors en bas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0063"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0096",
+          "begin": 138985,
+          "end": 141092,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0063",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on voit le nouveau patron"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0063"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0097",
+          "begin": 141092,
+          "end": 141579,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0064",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0064"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0098",
+          "begin": 141579,
+          "end": 143929,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0065",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et alors euh si il y a des remarques"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0065"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0099",
+          "begin": 143929,
+          "end": 146641,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0065",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de la veille ou pour le jour même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0065"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0100",
+          "begin": 146641,
+          "end": 149127,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0065",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "des fois y a eu un coup de téléphone une urgence"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0065"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0101",
+          "begin": 149127,
+          "end": 149371,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0066",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0066"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0102",
+          "begin": 149371,
+          "end": 151605,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0067",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ou alors alors on repart à notre chantier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0067"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0103",
+          "begin": 152321,
+          "end": 154147,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0067",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qui se trouve soit dans la ville ou aux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0067"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0104",
+          "begin": 154147,
+          "end": 155159,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0068",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alentours"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0068"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0105",
+          "begin": 154147,
+          "end": 155159,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0068",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0068"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0106",
+          "begin": 155159,
+          "end": 157596,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0069",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "si c'est un déplacement il nous emmène en voiture"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0069"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0107",
+          "begin": 157596,
+          "end": 157979,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0070",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0070"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0108",
+          "begin": 158869,
+          "end": 163633,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0071",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et alors le midi ben le travail euh s'effectue ordinairement le le les travaux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0071"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0109",
+          "begin": 163633,
+          "end": 164141,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0072",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0072"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0110",
+          "begin": 164141,
+          "end": 164892,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0073",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de peinture"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0073"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0111",
+          "begin": 164892,
+          "end": 165257,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0074",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0074"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0112",
+          "begin": 165257,
+          "end": 166213,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0075",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est toujours pareil"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0075"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0113",
+          "begin": 166752,
+          "end": 168508,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0076",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est ce qui compte le plus pour vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0076"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0114",
+          "begin": 168508,
+          "end": 169499,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0076",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "dans votre travail ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0076"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0115",
+          "begin": 170511,
+          "end": 172688,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0077",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ben nous c'est de satisfaire le client"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0077"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0116",
+          "begin": 170511,
+          "end": 172688,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0077",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est ce qu'est le plus important ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0077"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0117",
+          "begin": 172688,
+          "end": 172952,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0078",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0078"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0118",
+          "begin": 172952,
+          "end": 173978,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0079",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "n'est-ce pas euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0079"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0119",
+          "begin": 173978,
+          "end": 177302,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0079",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et le tant pis pour le les ouvriers des fois ça grogne ou n'importe mais moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0079"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0120",
+          "begin": 177302,
+          "end": 178314,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0080",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'ai beaucoup à faire mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0080"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0121",
+          "begin": 177302,
+          "end": 178314,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0080",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0080"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0122",
+          "begin": 178314,
+          "end": 183672,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0081",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh je se- veux satisfaire le client et la preuve c'est ce qu'il nous faut c'est de retourner"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0081"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0123",
+          "begin": 183672,
+          "end": 184771,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0082",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "chez les clients"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0082"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0124",
+          "begin": 183672,
+          "end": 184771,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0082",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0082"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0125",
+          "begin": 184771,
+          "end": 185209,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0083",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0083"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0126",
+          "begin": 185209,
+          "end": 191050,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0084",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "nous avons fait le salon l'année dernière de cette propriété les gens ont été très satisfaits et cette année ils nous font faire les extérieurs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0084"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0127",
+          "begin": 191050,
+          "end": 192302,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0084",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour le mariage de leur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0084"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0128",
+          "begin": 192302,
+          "end": 193119,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0085",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "demoiselle"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0085"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0129",
+          "begin": 192302,
+          "end": 193119,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0085",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0085"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0130",
+          "begin": 193119,
+          "end": 193484,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0086",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0086"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0131",
+          "begin": 193484,
+          "end": 193762,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0087",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0087"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0132",
+          "begin": 194701,
+          "end": 196474,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0087",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est ce qui vous plaît dans votre métier ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0087"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0133",
+          "begin": 197239,
+          "end": 202110,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0088",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben moi j'aime beaucoup l- la la finition le raffinement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0088"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0134",
+          "begin": 202110,
+          "end": 202531,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0089",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0089"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0135",
+          "begin": 202531,
+          "end": 204968,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0090",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors la la la peinture me plaît énormément"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0090"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0136",
+          "begin": 204968,
+          "end": 207802,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0090",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et ça serait à refaire je crois que j'aurais même pris la tapisserie"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0090"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0137",
+          "begin": 208567,
+          "end": 209127,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0091",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0091"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0138",
+          "begin": 209127,
+          "end": 210817,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0092",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que j'aimerais euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0092"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0139",
+          "begin": 210817,
+          "end": 212907,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0092",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh faire l'ameublement et tout ça en même temps"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0092"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0140",
+          "begin": 212907,
+          "end": 213276,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0093",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0093"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0141",
+          "begin": 213276,
+          "end": 218078,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0094",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais maintenant il est trop tard cinquante-cinq ans je peux pas refaire marche arrière et malgré tout ça plairait à mon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0094"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0142",
+          "begin": 218078,
+          "end": 219837,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0094",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "nouvel entrepreneur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0094"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0143",
+          "begin": 219837,
+          "end": 221176,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0095",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mon nouvel employeur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0095"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0144",
+          "begin": 219837,
+          "end": 221176,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0095",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0095"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0145",
+          "begin": 221510,
+          "end": 223217,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0096",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce qu'on fait de plus en plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0096"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0146",
+          "begin": 223217,
+          "end": 225147,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0096",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "des revêtements de mural"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0096"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0147",
+          "begin": 225147,
+          "end": 226350,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0096",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en satin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0096"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0148",
+          "begin": 226350,
+          "end": 229983,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0097",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en tissu oui ah oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0097"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0149",
+          "begin": 226350,
+          "end": 229983,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0097",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "en tissu ça revient à la mode hein c'est c'est c'est joli des"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0097"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0150",
+          "begin": 229983,
+          "end": 233443,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0098",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah c'est très joli alors j'en maintenant ça va parce qu'on colle comme du papier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0098"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0151",
+          "begin": 233443,
+          "end": 236367,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0099",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0099"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0152",
+          "begin": 233443,
+          "end": 236367,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0099",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors ça ça implique un autre métier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0099"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0153",
+          "begin": 236367,
+          "end": 236976,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0100",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0100"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0154",
+          "begin": 236367,
+          "end": 236976,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0100",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0100"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0155",
+          "begin": 237501,
+          "end": 239657,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0101",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "là il y a eu un salon tout dernièrement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0101"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0156",
+          "begin": 239657,
+          "end": 240617,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0101",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il a fallu le"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0101"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0157",
+          "begin": 240617,
+          "end": 241472,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0101",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm coudre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0101"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0158",
+          "begin": 242081,
+          "end": 242589,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0102",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0102"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0159",
+          "begin": 242081,
+          "end": 242589,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0102",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0102"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0160",
+          "begin": 242589,
+          "end": 243531,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0103",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça coudre euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0103"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0161",
+          "begin": 243531,
+          "end": 244905,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0103",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est pas l'affaire de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0103"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0162",
+          "begin": 244905,
+          "end": 245708,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0104",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais il faudrait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0104"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0163",
+          "begin": 244905,
+          "end": 245708,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0104",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0104"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0164",
+          "begin": 246230,
+          "end": 247763,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0106",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais vous aimez vous auriez bien aimé ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0106"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0165",
+          "begin": 247763,
+          "end": 250197,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0107",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah euh j'aurais beaucoup aimé ça évidemment oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0107"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0166",
+          "begin": 247763,
+          "end": 250197,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0107",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh c'est ça faire tapissier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0107"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0167",
+          "begin": 250197,
+          "end": 250423,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0108",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0108"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0168",
+          "begin": 251153,
+          "end": 252043,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0109",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0109"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0169",
+          "begin": 251153,
+          "end": 252043,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0109",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à cause du"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0109"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0170",
+          "begin": 252043,
+          "end": 252495,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0110",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0110"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0171",
+          "begin": 252495,
+          "end": 253768,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0111",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à cause du travail"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0111"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0172",
+          "begin": 252495,
+          "end": 253768,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0111",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'aime beaucoup"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0111"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0173",
+          "begin": 253768,
+          "end": 256640,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0112",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et puis lui euh mon nouveau patron c'est pareil"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0112"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0174",
+          "begin": 256640,
+          "end": 256956,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0112",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0112"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0175",
+          "begin": 257547,
+          "end": 258521,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0112",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on aime beaucoup ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0112"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0176",
+          "begin": 258521,
+          "end": 262380,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0112",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et vous voyez il envisagerait presque euh le revêtement de sol"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0112"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0177",
+          "begin": 262989,
+          "end": 263584,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0112",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "délicat quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0112"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0178",
+          "begin": 263584,
+          "end": 264648,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0113",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0113"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0179",
+          "begin": 263584,
+          "end": 264648,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0113",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0113"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0180",
+          "begin": 264648,
+          "end": 266581,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0114",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "alors c'est le travail délicat bien fini"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0114"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0181",
+          "begin": 266581,
+          "end": 268042,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0115",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui oui c'est ça euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0115"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0182",
+          "begin": 268411,
+          "end": 270692,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0115",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le c'est plutôt de la décoration"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0115"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0183",
+          "begin": 270692,
+          "end": 271339,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0116",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0116"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0184",
+          "begin": 271339,
+          "end": 276801,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0117",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh la m- pose de moulures au lieu de faire le gros bâtiment nous ne faisons pas d'HLM de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0117"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0185",
+          "begin": 276801,
+          "end": 277045,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0118",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0118"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0186",
+          "begin": 277045,
+          "end": 278096,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0119",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "d'habitations à vous savez à des"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0119"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0187",
+          "begin": 278096,
+          "end": 278795,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0120",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "loyers modérés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0120"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0188",
+          "begin": 278096,
+          "end": 278795,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0120",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0120"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0189",
+          "begin": 278795,
+          "end": 280624,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0121",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pas de gros travaux à rabais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0121"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0190",
+          "begin": 280624,
+          "end": 280853,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0122",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0122"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0191",
+          "begin": 280853,
+          "end": 283687,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0123",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "nous avons une clientèle particulière de docteurs d'avocats"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0123"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0192",
+          "begin": 283687,
+          "end": 284052,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0124",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0124"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0193",
+          "begin": 284052,
+          "end": 284539,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0125",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et tout ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0125"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0194",
+          "begin": 284539,
+          "end": 284904,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0126",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0126"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0195",
+          "begin": 284904,
+          "end": 287112,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0127",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et nous faisons que du bon bou- travail"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0127"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0196",
+          "begin": 287112,
+          "end": 287481,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0128",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0128"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0197",
+          "begin": 288354,
+          "end": 293660,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0129",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors on pose de la moulure pour faire du style Louis quinze des salons et tout ça les pièces qu'on transforme en style"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0129"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0198",
+          "begin": 293660,
+          "end": 294081,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0130",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0130"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0199",
+          "begin": 294081,
+          "end": 295319,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0131",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors c'est très agréable"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0131"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0200",
+          "begin": 294081,
+          "end": 295319,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0131",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0131"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0201",
+          "begin": 295983,
+          "end": 297443,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0131",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "très agréable"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0131"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0202",
+          "begin": 295983,
+          "end": 297443,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0131",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oh oui c'est intéressant ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0131"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0203",
+          "begin": 297443,
+          "end": 297826,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0132",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0132"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0204",
+          "begin": 298716,
+          "end": 301063,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0132",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "aujourd'hui et euh même les jeunes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0132"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0205",
+          "begin": 301063,
+          "end": 302749,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0132",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ils ne veulent pas s'y mettre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0132"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0206",
+          "begin": 302749,
+          "end": 306209,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0132",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que évidemment ils aiment mieux être aux pièces gagner davantage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0132"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0207",
+          "begin": 307290,
+          "end": 307899,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0133",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "vous comprenez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0133"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0208",
+          "begin": 307290,
+          "end": 307899,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0133",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0133"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0209",
+          "begin": 307899,
+          "end": 310771,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0134",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que nous nous sommes payés à l'heure c'est des travaux très longs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0134"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0210",
+          "begin": 311244,
+          "end": 311647,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0135",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0135"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0211",
+          "begin": 311647,
+          "end": 313195,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0136",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "très onéreux aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0136"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0212",
+          "begin": 313195,
+          "end": 313911,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0136",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0136"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0213",
+          "begin": 313911,
+          "end": 315250,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0137",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui mais les gens s'en sont"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0137"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0214",
+          "begin": 316036,
+          "end": 317674,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0138",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0138"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0215",
+          "begin": 316036,
+          "end": 317674,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0138",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "en sont l'apprécient aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0138"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0216",
+          "begin": 317674,
+          "end": 319753,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0139",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah évidemment puisque c'est des gens"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0139"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0217",
+          "begin": 319753,
+          "end": 320991,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0140",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "du travail bien fini"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0140"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0218",
+          "begin": 319753,
+          "end": 320991,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0140",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0140"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0219",
+          "begin": 320991,
+          "end": 326262,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de euh de hautement qualifiés quoi puisque ce sont des professions libérales beaucoup"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0220",
+          "begin": 327166,
+          "end": 327427,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0221",
+          "begin": 327865,
+          "end": 330351,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et qui ne regardent pas quoi à payer hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0222",
+          "begin": 330907,
+          "end": 332142,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais malgré tout on ne peut pas faire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0223",
+          "begin": 332142,
+          "end": 333936,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "des des travaux aux pièces"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0224",
+          "begin": 333936,
+          "end": 335692,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "comme euh ça se fait beaucoup maintenant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0225",
+          "begin": 335692,
+          "end": 336912,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "vous savez aux jeunes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0226",
+          "begin": 336912,
+          "end": 339746,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on leurs fait faire un appartement on leur donne mettons"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0227",
+          "begin": 340341,
+          "end": 341127,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0141",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "dix milles francs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0141"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0228",
+          "begin": 341127,
+          "end": 342208,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0142",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour la journée ou n'importe"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0142"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0229",
+          "begin": 341127,
+          "end": 342208,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0142",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0142"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0230",
+          "begin": 342208,
+          "end": 343634,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0143",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour faire l'appartement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0143"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0231",
+          "begin": 343777,
+          "end": 343867,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0144",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0144"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0232",
+          "begin": 343867,
+          "end": 346110,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0145",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh dim- aux pièces quoi ils travaillent aux pièces"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0145"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0233",
+          "begin": 346110,
+          "end": 346423,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0146",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0146"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0234",
+          "begin": 346423,
+          "end": 347748,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0147",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors ça c'est pas pareil"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0147"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0235",
+          "begin": 347748,
+          "end": 348203,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0148",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0148"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0236",
+          "begin": 348203,
+          "end": 348673,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0149",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0149"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0237",
+          "begin": 348673,
+          "end": 349233,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0150",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0150"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0238",
+          "begin": 349233,
+          "end": 352627,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0151",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et c'est pour ça on est arrive de moins en moins à trouver des ouvriers qualifiés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0151"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0239",
+          "begin": 352627,
+          "end": 353952,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0152",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour faire du beau travail comme ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0152"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0240",
+          "begin": 352627,
+          "end": 353952,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0152",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0152"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0241",
+          "begin": 354929,
+          "end": 355346,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0153",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0153"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0242",
+          "begin": 356528,
+          "end": 360244,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0154",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que dans les centres accélérés d'apprentissage dans le la peinture"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0154"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0243",
+          "begin": 361047,
+          "end": 361864,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0154",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on leur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0154"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0244",
+          "begin": 361864,
+          "end": 363585,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0154",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "apprend le travail courant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0154"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0245",
+          "begin": 363585,
+          "end": 364003,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0155",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0155"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0246",
+          "begin": 364003,
+          "end": 365780,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0156",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh ce qu'il ce qu'il faut faire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0156"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0247",
+          "begin": 365780,
+          "end": 366149,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0157",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0157"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0248",
+          "begin": 366149,
+          "end": 366535,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0158",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0158"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0249",
+          "begin": 366535,
+          "end": 369981,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0158",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "nettoyer les murs faire les impressions quoi la la peinture"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0158"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0250",
+          "begin": 369981,
+          "end": 371149,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0158",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais c'est tout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0158"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0251",
+          "begin": 371149,
+          "end": 374307,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0158",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "la décoration ça c'est né en soi ça cette histoire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0158"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0252",
+          "begin": 374307,
+          "end": 374626,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0159",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0159"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0253",
+          "begin": 374626,
+          "end": 375533,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0160",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "une histoire ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0160"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0254",
+          "begin": 376554,
+          "end": 377592,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0161",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "on en a le goût ou"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0161"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0255",
+          "begin": 377592,
+          "end": 378467,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0162",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais eh oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0162"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0256",
+          "begin": 378467,
+          "end": 380392,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0162",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh j'ai beau prendre des fois des jeunes avec moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0162"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0257",
+          "begin": 380392,
+          "end": 383367,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0162",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ben c'est à refaire ou alors je lui dis écarte écarte va-t'en va-t'en parce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0162"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0258",
+          "begin": 383367,
+          "end": 384840,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0162",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh tout à l'heure ça va pas assez vite"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0162"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0259",
+          "begin": 385263,
+          "end": 385569,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0163",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0163"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0260",
+          "begin": 386678,
+          "end": 387964,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "alors on va passer à une"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0261",
+          "begin": 388373,
+          "end": 388828,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "une"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0262",
+          "begin": 389630,
+          "end": 390768,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "question un peu différente"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0263",
+          "begin": 391631,
+          "end": 392127,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0264",
+          "begin": 392127,
+          "end": 394504,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "aujourd'hui les femmes mariées travaillent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0265",
+          "begin": 394504,
+          "end": 395190,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de plus en plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0266",
+          "begin": 395190,
+          "end": 395630,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0165",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0165"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0267",
+          "begin": 396505,
+          "end": 397689,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0166",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est ce que vous en pensez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0166"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0268",
+          "begin": 396505,
+          "end": 397689,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0166",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0166"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0269",
+          "begin": 397689,
+          "end": 401598,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0166",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "personnellement vous êtes pour vous êtes contre ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0166"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0270",
+          "begin": 397689,
+          "end": 401598,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0166",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah non non non non non non non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0166"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0271",
+          "begin": 401598,
+          "end": 402476,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0167",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi je trouve que c'est"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0167"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0272",
+          "begin": 403441,
+          "end": 404389,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0167",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le midi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0167"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0273",
+          "begin": 404389,
+          "end": 405498,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0167",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'ai juste une heure et demie"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0167"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0274",
+          "begin": 405909,
+          "end": 406041,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0168",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0168"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0275",
+          "begin": 406041,
+          "end": 410667,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0169",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors si il fallait en arrivant qu'on s'affole à faire à manger j'aime mieux arriver et que tout soit sur la table"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0169"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0276",
+          "begin": 410667,
+          "end": 411173,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0170",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0170"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0277",
+          "begin": 411173,
+          "end": 411772,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0171",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0171"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0278",
+          "begin": 411772,
+          "end": 414654,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0171",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment ça nous supprime la télévision puis la voiture"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0171"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0279",
+          "begin": 414654,
+          "end": 417648,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0171",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh parce que si on avait deux salaires"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0171"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0280",
+          "begin": 417648,
+          "end": 418015,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0172",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0172"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0281",
+          "begin": 418015,
+          "end": 419329,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0173",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment on pourrait peut-être"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0173"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0282",
+          "begin": 420318,
+          "end": 421075,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0173",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "faire plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0173"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0283",
+          "begin": 421075,
+          "end": 421423,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0174",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0174"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0284",
+          "begin": 421423,
+          "end": 424923,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0175",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais je préfère mon petit train de vie tranquille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0175"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0285",
+          "begin": 424923,
+          "end": 426275,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0175",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je suis un petit Français moyen"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0175"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0286",
+          "begin": 426720,
+          "end": 427110,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0176",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0176"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0287",
+          "begin": 427516,
+          "end": 430668,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0176",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "alors en principe vous trouvez que c'est mieux que les femmes s'occupent de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0176"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0288",
+          "begin": 430668,
+          "end": 433933,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0177",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah moi je préfère de beaucoup et je vois les jeunes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0177"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0289",
+          "begin": 433933,
+          "end": 436390,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0177",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "avec même des situations assez pota- euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0177"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0290",
+          "begin": 436390,
+          "end": 437452,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0178",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "potables maintenant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0178"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0291",
+          "begin": 436390,
+          "end": 437452,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0178",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0178"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0292",
+          "begin": 437452,
+          "end": 438843,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0179",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qui travaillent tous les deux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0179"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0293",
+          "begin": 438843,
+          "end": 444696,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0179",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "eh bien moi je trouve j'envie pas parce que je vous dis par rapport à ça les petits-enfants faut aller courir bien vite mener le petit chez euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0179"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0294",
+          "begin": 444696,
+          "end": 445411,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0179",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "une garde"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0179"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0295",
+          "begin": 445411,
+          "end": 445859,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0180",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0180"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0296",
+          "begin": 445859,
+          "end": 447404,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0181",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et puis alors la dame elle a pas le temps de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0181"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0297",
+          "begin": 447404,
+          "end": 448409,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0182",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "faire les courses"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0182"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0298",
+          "begin": 447404,
+          "end": 448409,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0182",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0182"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0299",
+          "begin": 448409,
+          "end": 452334,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0183",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "les messieurs c'est des professeurs ou n'importe ils ont même pas le temps de corriger leurs devoirs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0183"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0300",
+          "begin": 452334,
+          "end": 453914,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0184",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est pas une vie intime"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0184"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0301",
+          "begin": 452334,
+          "end": 453914,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0184",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr003"
+              },
+              "content": "bon je repars chez maman moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0184"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0302",
+          "begin": 453914,
+          "end": 454397,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0185",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0185"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0303",
+          "begin": 454397,
+          "end": 455884,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0185",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui c'est pas une vie intime"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0185"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0304",
+          "begin": 455884,
+          "end": 456294,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0186",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0186"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0305",
+          "begin": 457457,
+          "end": 457635,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0186",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0186"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0306",
+          "begin": 460672,
+          "end": 461912,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0187",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr003"
+              },
+              "content": "je peux vous laissez refermer dans la"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0187"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0307",
+          "begin": 461912,
+          "end": 462704,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0188",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "au revoir"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0188"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0308",
+          "begin": 462704,
+          "end": 464269,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0189",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr003"
+              },
+              "content": "parce que j'ai ma mère qui est souffrante il faut qu'elle euh que j'y aille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0189"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0309",
+          "begin": 464269,
+          "end": 465741,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0190",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui je comprends bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0190"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0310",
+          "begin": 467850,
+          "end": 468488,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0191",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0191"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0311",
+          "begin": 468488,
+          "end": 469979,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0191",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et et vos enfants"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0191"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0312",
+          "begin": 469979,
+          "end": 471737,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0191",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce qu'ils font vous avez combien d'enfants d'ailleurs ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0191"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0313",
+          "begin": 471737,
+          "end": 473421,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0192",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous avez simplement celui-là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0192"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0314",
+          "begin": 471737,
+          "end": 473421,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0192",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "celui là seulement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0192"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0315",
+          "begin": 473421,
+          "end": 474754,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0193",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais il travaille est-ce que vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0193"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0316",
+          "begin": 474754,
+          "end": 478038,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0194",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "il est en première il va passer son baccalauréat l'année prochaine"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0194"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0317",
+          "begin": 474754,
+          "end": 478038,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0194",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "doucement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0194"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0318",
+          "begin": 478038,
+          "end": 478405,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0195",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0195"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0319",
+          "begin": 478405,
+          "end": 479158,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0196",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0196"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0320",
+          "begin": 480993,
+          "end": 481708,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0197",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0197"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0321",
+          "begin": 484432,
+          "end": 486155,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0197",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que vous aimeriez qu'il fasse ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0197"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0322",
+          "begin": 486951,
+          "end": 488037,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0198",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors c'est simple"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0198"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0323",
+          "begin": 488037,
+          "end": 489142,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0198",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il envisage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0198"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0324",
+          "begin": 489513,
+          "end": 490212,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0198",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le dessin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0198"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0325",
+          "begin": 490908,
+          "end": 493693,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0198",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "professeur de dessin si il peut y arriver l'année prochaine"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0198"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0326",
+          "begin": 494060,
+          "end": 497201,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0198",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le son professeur le prépare en deux ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0198"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0327",
+          "begin": 497201,
+          "end": 497464,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0199",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0199"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0328",
+          "begin": 497464,
+          "end": 498561,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0200",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "au concours d'entrée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0329",
+          "begin": 499280,
+          "end": 500134,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0200",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "au lycée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0330",
+          "begin": 500601,
+          "end": 501683,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0200",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "Claude Bernard"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0331",
+          "begin": 502166,
+          "end": 502765,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0200",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à Paris"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0332",
+          "begin": 503735,
+          "end": 506424,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0200",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et alors si il est accepté et si il a son bac l'année prochaine"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0333",
+          "begin": 507162,
+          "end": 509175,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0200",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en trois ans il serait professeur de dessin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0200"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0334",
+          "begin": 509855,
+          "end": 510322,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0201",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0201"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0335",
+          "begin": 510322,
+          "end": 513027,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0202",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est sa c'est c'est vraiment sa branche là si il est"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0202"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0336",
+          "begin": 513027,
+          "end": 513301,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0203",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0203"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0337",
+          "begin": 513301,
+          "end": 514499,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0204",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et il est doué pour le dessin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0204"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0338",
+          "begin": 514499,
+          "end": 515024,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0205",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0205"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0339",
+          "begin": 516125,
+          "end": 517284,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0205",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et vous êtes satisfait ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0205"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0340",
+          "begin": 517284,
+          "end": 518463,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0206",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ben oui on"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0206"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0341",
+          "begin": 518463,
+          "end": 520669,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0207",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on a beaucoup de satisfaction avec lui quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0207"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0342",
+          "begin": 520669,
+          "end": 522914,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0207",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et il a que dix-sept ans il est du mois de mars"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0207"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0343",
+          "begin": 522914,
+          "end": 524850,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0207",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non dix-huit dix-huit ans oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0207"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0344",
+          "begin": 524850,
+          "end": 526283,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0207",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "dix-huit ans là du mois de mars"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0207"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0345",
+          "begin": 526824,
+          "end": 527095,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0208",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0208"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0346",
+          "begin": 527095,
+          "end": 529552,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0209",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et il est encore pas trop avancé en âge ça ira"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0209"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0347",
+          "begin": 529552,
+          "end": 529996,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0210",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0210"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0348",
+          "begin": 530904,
+          "end": 533299,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0211",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "là je vais revenir un petit peu à votre travail"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0211"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0349",
+          "begin": 533299,
+          "end": 533782,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0212",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0212"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0350",
+          "begin": 533782,
+          "end": 534594,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0213",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0213"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0351",
+          "begin": 535371,
+          "end": 537925,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0213",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "avec qui vous parlez pendant votre travail au cours"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0213"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0352",
+          "begin": 537925,
+          "end": 540722,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0214",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de votre travail ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0214"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0353",
+          "begin": 537925,
+          "end": 540722,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0214",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh bien vous savez ici moi je suis bavard"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0214"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0354",
+          "begin": 540977,
+          "end": 541696,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0216",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous êtes bavard"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0216"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0355",
+          "begin": 541696,
+          "end": 542144,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0217",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0217"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0356",
+          "begin": 542144,
+          "end": 543767,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0218",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et de quoi vous parlez de ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0218"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0357",
+          "begin": 543767,
+          "end": 547711,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0219",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ben de tout des évènements de la politique et tout ça évidemment euh malgré tout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0219"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0358",
+          "begin": 548175,
+          "end": 548739,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0219",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0219"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0359",
+          "begin": 549666,
+          "end": 551231,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0219",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "très réservé pour la politique"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0219"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0360",
+          "begin": 551231,
+          "end": 552166,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0220",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0220"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0361",
+          "begin": 551231,
+          "end": 552166,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0220",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0220"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0362",
+          "begin": 552166,
+          "end": 552436,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0221",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0221"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0363",
+          "begin": 552436,
+          "end": 552688,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0222",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0222"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0364",
+          "begin": 553098,
+          "end": 555458,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0222",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh je ne suis pas acharné du tout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0222"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0365",
+          "begin": 555458,
+          "end": 557834,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0222",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non mais de des évènements du jour"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0222"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0366",
+          "begin": 557834,
+          "end": 560616,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0223",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "n'est ce pas euh du Concorde et tout ça quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0223"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0367",
+          "begin": 557834,
+          "end": 560616,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0223",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0223"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0368",
+          "begin": 561702,
+          "end": 563715,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0224",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous vous êtes satisfait de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0224"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0369",
+          "begin": 563715,
+          "end": 565226,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0224",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de vos conditions de travail ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0224"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0370",
+          "begin": 565226,
+          "end": 568823,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0225",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui c'est on peut pas envisager"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0225"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0371",
+          "begin": 565226,
+          "end": 568823,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0225",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "enfin vous vous ça vous plaît bien oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0225"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0372",
+          "begin": 568823,
+          "end": 571137,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0226",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh on tâche de faire le mieux qu'on euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0226"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0373",
+          "begin": 571137,
+          "end": 571952,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0226",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "possible"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0226"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0374",
+          "begin": 571952,
+          "end": 572512,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0227",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0227"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0375",
+          "begin": 572512,
+          "end": 574077,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0228",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "aussi bien les uns que les autres"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0228"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0376",
+          "begin": 574077,
+          "end": 574351,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0229",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0229"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0377",
+          "begin": 574351,
+          "end": 579605,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0230",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh si il y a quelque chose qui accroche aussi bien avec un compagnon ou du matériel ou n'importe"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0230"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0378",
+          "begin": 579605,
+          "end": 581015,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0230",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "eh ben on tâche d'améliorer quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0230"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0379",
+          "begin": 581015,
+          "end": 581421,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0231",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0231"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0380",
+          "begin": 581421,
+          "end": 582773,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0232",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui on on cherche pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0232"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0381",
+          "begin": 582773,
+          "end": 584009,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0232",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi j'aime pas la guerre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0232"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0382",
+          "begin": 584009,
+          "end": 584473,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0233",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0233"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0383",
+          "begin": 585902,
+          "end": 586154,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0234",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "bon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0384",
+          "begin": 586602,
+          "end": 587104,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0234",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0385",
+          "begin": 587104,
+          "end": 587819,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0234",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0386",
+          "begin": 588959,
+          "end": 591339,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0234",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "enfin vous devez avoir beaucoup de travail mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0387",
+          "begin": 591339,
+          "end": 593004,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0234",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quand vous avez un peu de temps libre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0388",
+          "begin": 593004,
+          "end": 593719,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0234",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que vous faites ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0234"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0389",
+          "begin": 593719,
+          "end": 596118,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0235",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ça j'ai ma passion le soir c'est mon jardin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0235"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0390",
+          "begin": 596794,
+          "end": 597316,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0236",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah c'est le jardin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0236"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0391",
+          "begin": 597316,
+          "end": 599483,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0237",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'ai un petit jardin à deux kilomètres"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0237"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0392",
+          "begin": 599483,
+          "end": 600314,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0238",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "d'ici"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0238"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0393",
+          "begin": 599483,
+          "end": 600314,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0238",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0238"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0394",
+          "begin": 600314,
+          "end": 601970,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0239",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors il y a beaucoup de fleurs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0239"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0395",
+          "begin": 601970,
+          "end": 602380,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0240",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0240"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0396",
+          "begin": 602380,
+          "end": 603678,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0241",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et puis quelques légumes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0241"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0397",
+          "begin": 603678,
+          "end": 604045,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0242",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0242"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0398",
+          "begin": 604045,
+          "end": 606363,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0243",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je n'y vais pas euh histoire de rapport"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0243"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0399",
+          "begin": 606363,
+          "end": 608395,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0244",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0244"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0400",
+          "begin": 606363,
+          "end": 608395,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0244",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est simplement pour changer d'air"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0244"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0401",
+          "begin": 608395,
+          "end": 608646,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0245",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0245"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0402",
+          "begin": 608646,
+          "end": 609844,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0246",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et puis alors le dimanche"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0246"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0403",
+          "begin": 610254,
+          "end": 612325,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0246",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on a un petit chalet"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0246"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0404",
+          "begin": 612325,
+          "end": 612619,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0247",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0247"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0405",
+          "begin": 612619,
+          "end": 614130,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0248",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "où on peut y aller euh l'été"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0248"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0406",
+          "begin": 614130,
+          "end": 615331,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0249",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on va déjeuner"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0249"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0407",
+          "begin": 614130,
+          "end": 615331,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0249",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est agréable ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0249"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0408",
+          "begin": 615331,
+          "end": 615718,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0250",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0250"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0409",
+          "begin": 615718,
+          "end": 618774,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0251",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "par exemple dim- euh le dernier week-end qu'est-ce que vous avez fait ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0251"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0410",
+          "begin": 618774,
+          "end": 621328,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0252",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "eh bien je alors nous euh nous avons dû nous promener"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0252"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0411",
+          "begin": 618774,
+          "end": 621328,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0252",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "comment ça c'est passé ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0252"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0412",
+          "begin": 621328,
+          "end": 622723,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0253",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "dans les en- à Olivet là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0253"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0413",
+          "begin": 622723,
+          "end": 622959,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0254",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0254"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0414",
+          "begin": 622959,
+          "end": 624160,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0255",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "aux environs d'Orléans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0255"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0415",
+          "begin": 624160,
+          "end": 624354,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0256",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0256"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0416",
+          "begin": 624354,
+          "end": 625459,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0257",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pass- incidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0257"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0417",
+          "begin": 626274,
+          "end": 628264,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0257",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "la grand euh la belle-mère est"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0257"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0418",
+          "begin": 628847,
+          "end": 630142,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0257",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "elle s'est cassé la jambe"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0257"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0419",
+          "begin": 630142,
+          "end": 630300,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0258",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0258"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0420",
+          "begin": 630300,
+          "end": 633488,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0259",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "sans quoi d'habitude mon beau-père a une quatre cent quatre on part"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0259"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0421",
+          "begin": 633488,
+          "end": 634438,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0259",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en week-end"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0259"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0422",
+          "begin": 634438,
+          "end": 635366,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0259",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "des fois assez loin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0259"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0423",
+          "begin": 635911,
+          "end": 636011,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0260",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0260"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0424",
+          "begin": 636011,
+          "end": 638832,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0261",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on on a presque vu les toute la France quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0261"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0425",
+          "begin": 638832,
+          "end": 639184,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0262",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah bon ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0262"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0426",
+          "begin": 639184,
+          "end": 641177,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0263",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "la Provence ou les Pyrénées la Bretagne"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0263"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0427",
+          "begin": 641177,
+          "end": 641622,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0264",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0264"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0428",
+          "begin": 641622,
+          "end": 641800,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0265",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0265"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0429",
+          "begin": 641800,
+          "end": 643117,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0266",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous aimez bien faire du tourisme"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0266"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0430",
+          "begin": 643117,
+          "end": 644817,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0267",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais moi j'aime pas conduire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0267"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0431",
+          "begin": 644817,
+          "end": 647000,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0268",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors c'est ça qui nous paralyse en ce moment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0268"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0432",
+          "begin": 647000,
+          "end": 648588,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0268",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que la belle-mère est alitée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0268"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0433",
+          "begin": 648588,
+          "end": 648862,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0268",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0268"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0434",
+          "begin": 649519,
+          "end": 650118,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0269",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0269"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0435",
+          "begin": 650972,
+          "end": 652463,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0269",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pendant les vacances d'été ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0269"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0436",
+          "begin": 652463,
+          "end": 653062,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0270",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0270"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0437",
+          "begin": 653062,
+          "end": 655515,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0270",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors nous partons un mois en Bretagne euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0270"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0438",
+          "begin": 655515,
+          "end": 655902,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0271",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0271"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0439",
+          "begin": 655902,
+          "end": 659228,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0272",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm presque toujours en Bretagne là on est on va peut-être aller en Vendée cette année"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0272"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0440",
+          "begin": 659228,
+          "end": 659753,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0273",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0273"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0441",
+          "begin": 659753,
+          "end": 661357,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0274",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais on part un tout le mois d'août"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0274"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0442",
+          "begin": 661357,
+          "end": 662076,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0275",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0275"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0443",
+          "begin": 662076,
+          "end": 662331,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0276",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0276"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0444",
+          "begin": 663127,
+          "end": 664097,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0277",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et si"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0445",
+          "begin": 664097,
+          "end": 664893,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0277",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0446",
+          "begin": 664893,
+          "end": 665418,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0277",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "enfin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0447",
+          "begin": 665418,
+          "end": 667369,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0277",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est je dis peut-être mais si vous aviez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0448",
+          "begin": 667833,
+          "end": 670580,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0277",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "deux heures de temps libre supplémentaires par jour"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0449",
+          "begin": 670580,
+          "end": 672071,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0277",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "comment vous qu'est-ce que vous feriez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0277"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0450",
+          "begin": 672071,
+          "end": 673617,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0278",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben c'est c'est que mon jardin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0278"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0451",
+          "begin": 673617,
+          "end": 674954,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0279",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que je ne vais pas à la pêche"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0279"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0452",
+          "begin": 673617,
+          "end": 674954,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0279",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0279"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0453",
+          "begin": 674954,
+          "end": 676219,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0279",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh c'est que mon jardin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0279"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0454",
+          "begin": 674954,
+          "end": 676219,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0279",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0279"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0455",
+          "begin": 676219,
+          "end": 678609,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0280",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'aime bien tailler"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0280"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0456",
+          "begin": 678609,
+          "end": 679076,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0281",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr004"
+              },
+              "content": "bricolage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0281"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0457",
+          "begin": 679791,
+          "end": 680158,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0282",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0282"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0458",
+          "begin": 680158,
+          "end": 680660,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0283",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr004"
+              },
+              "content": "bricolage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0283"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0459",
+          "begin": 682862,
+          "end": 684099,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0284",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh je je comprends pas ce que tu as dit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0284"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0460",
+          "begin": 686247,
+          "end": 686745,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0285",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "bon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0285"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0461",
+          "begin": 686745,
+          "end": 687579,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0285",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0285"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0462",
+          "begin": 688623,
+          "end": 690713,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0285",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "on va passer à un peu un autre sujet"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0285"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0463",
+          "begin": 690713,
+          "end": 690983,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0286",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0286"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0464",
+          "begin": 690983,
+          "end": 691582,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0287",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à ce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0287"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0465",
+          "begin": 691582,
+          "end": 692992,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0287",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à l'éducation"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0287"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0466",
+          "begin": 693553,
+          "end": 694581,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0287",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à votre avis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0287"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0467",
+          "begin": 695473,
+          "end": 696381,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0287",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "personnel"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0287"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0468",
+          "begin": 696381,
+          "end": 700032,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0287",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce qu'on devrait apprendre aux enfants surtout à l'école ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0287"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0469",
+          "begin": 701693,
+          "end": 702060,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0288",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0470",
+          "begin": 703026,
+          "end": 705209,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0288",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est bien bien bien compliqué votre question"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0471",
+          "begin": 706237,
+          "end": 707815,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0288",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qu'est-ce qu'on devrait apprendre aux enfants"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0472",
+          "begin": 708829,
+          "end": 711901,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0288",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il y a un choc entre moi qui n'ai que cinquante-cinq ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0473",
+          "begin": 711901,
+          "end": 713392,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0288",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "y a un pas énorme"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0474",
+          "begin": 714126,
+          "end": 715652,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0288",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "rien que pour l'éducation"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0288"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0475",
+          "begin": 715652,
+          "end": 716850,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0289",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah ça c'est intéressant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0289"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0476",
+          "begin": 715652,
+          "end": 716850,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0289",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "avec qu'aujourd'hui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0289"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0477",
+          "begin": 716850,
+          "end": 717260,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0290",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0290"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0478",
+          "begin": 717940,
+          "end": 722773,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0291",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on m'a montré moi en sortant de l'école de mettre mon béret ou mon chapeau à la main"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0291"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0479",
+          "begin": 722773,
+          "end": 722970,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0292",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0292"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0480",
+          "begin": 722970,
+          "end": 724322,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0293",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en passant devant le directeur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0293"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0481",
+          "begin": 725018,
+          "end": 727494,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0293",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on laissait le trottoir à une personne âgée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0293"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0482",
+          "begin": 727494,
+          "end": 727803,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0294",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0294"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0483",
+          "begin": 727803,
+          "end": 730643,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "aussi bien sur le trottoir que dans le car ou n'importe"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0484",
+          "begin": 731207,
+          "end": 731748,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et alors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0485",
+          "begin": 731748,
+          "end": 733162,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il y a déjà une chose"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0486",
+          "begin": 733162,
+          "end": 734344,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour démarrer"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0487",
+          "begin": 734344,
+          "end": 737358,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça euh je sais que c'était peut-être exagéré"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0488",
+          "begin": 737358,
+          "end": 739757,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "avant mille neuf cent quatorze"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0489",
+          "begin": 739757,
+          "end": 741283,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh quoi voilà à cette époque-là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0490",
+          "begin": 741283,
+          "end": 742848,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais aujourd'hui je trouve que vraiment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0491",
+          "begin": 743412,
+          "end": 744740,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est ça d'abord une bonne chose"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0492",
+          "begin": 744740,
+          "end": 746020,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un petit redressement hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0493",
+          "begin": 746797,
+          "end": 747380,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je crois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0494",
+          "begin": 747380,
+          "end": 747631,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0295",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "d'abord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0295"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0495",
+          "begin": 747631,
+          "end": 748250,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0296",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ça oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0296"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0496",
+          "begin": 748250,
+          "end": 750610,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0297",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et nous on n'arrive même plus à se faire respecter"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0297"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0497",
+          "begin": 751402,
+          "end": 751692,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0298",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0298"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0498",
+          "begin": 751692,
+          "end": 753778,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0299",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "par les jeunes dans les métiers"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0299"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0499",
+          "begin": 754223,
+          "end": 757356,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0300",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je vois des apprentis plombiers ou serruriers dans le bâtiment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0300"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0500",
+          "begin": 754223,
+          "end": 757356,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0300",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0300"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0501",
+          "begin": 757781,
+          "end": 758283,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0301",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0301"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0502",
+          "begin": 758940,
+          "end": 759809,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0301",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "y a rien à faire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0301"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0503",
+          "begin": 760254,
+          "end": 761050,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0301",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "rien à faire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0301"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0504",
+          "begin": 761050,
+          "end": 763777,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0301",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors y a une grande chose à faire c'est déjà l'éducation"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0301"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0505",
+          "begin": 764183,
+          "end": 764550,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0302",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0302"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0506",
+          "begin": 764550,
+          "end": 765960,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0303",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors moi je suis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0507",
+          "begin": 765960,
+          "end": 766829,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0303",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "partisan"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0508",
+          "begin": 766829,
+          "end": 769109,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0303",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de l'école comme ils disent jusqu'à seize ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0509",
+          "begin": 769109,
+          "end": 771489,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0303",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh les enfants auraient besoin d'un peu de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0510",
+          "begin": 771489,
+          "end": 773251,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0303",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "d'instruction pour être tout de même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0511",
+          "begin": 773834,
+          "end": 774974,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0303",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "sans être tous ingénieurs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0303"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0512",
+          "begin": 774974,
+          "end": 775573,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0304",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais tout de même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0304"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0513",
+          "begin": 774974,
+          "end": 775573,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0304",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0304"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0514",
+          "begin": 775573,
+          "end": 777103,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0305",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "étant instruit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0305"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0515",
+          "begin": 777103,
+          "end": 778768,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0305",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on est tout de suite plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0305"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0516",
+          "begin": 780275,
+          "end": 781496,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0305",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un petit peu mieux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0305"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0517",
+          "begin": 781496,
+          "end": 782504,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0306",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "comment dirais-je"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0306"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0518",
+          "begin": 781496,
+          "end": 782504,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0306",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0306"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0519",
+          "begin": 782504,
+          "end": 783142,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0307",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "éduqué"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0307"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0520",
+          "begin": 783142,
+          "end": 783320,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0308",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0308"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0521",
+          "begin": 783320,
+          "end": 783575,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0309",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "voilà"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0309"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0522",
+          "begin": 785124,
+          "end": 785201,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0310",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0310"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0523",
+          "begin": 785201,
+          "end": 786921,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0311",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors maintenant question métier ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0311"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0524",
+          "begin": 786921,
+          "end": 790015,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0311",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh il faut aussi de l'initiative personnelle"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0311"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0525",
+          "begin": 790576,
+          "end": 790947,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0312",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0312"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0526",
+          "begin": 791685,
+          "end": 796711,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0313",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "y a beaucoup d'enfants qui voudraient faire ceci cela et qui ne peuvent pas ils ont pas les moyens"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0313"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0527",
+          "begin": 796711,
+          "end": 799512,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0313",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh moraux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0313"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0528",
+          "begin": 796711,
+          "end": 799512,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0313",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et pratiques aussi hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0313"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0529",
+          "begin": 799512,
+          "end": 799999,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0314",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0314"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0530",
+          "begin": 800756,
+          "end": 801143,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0315",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0315"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0531",
+          "begin": 801143,
+          "end": 803870,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0316",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais enfin vous voyez le rôle de l'école comme"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0316"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0532",
+          "begin": 803870,
+          "end": 807950,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0317",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui oui oui le départ moi je trouve le départ là y a vraiment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0317"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0533",
+          "begin": 803870,
+          "end": 807950,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0317",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "assez éducatrice oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0317"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0534",
+          "begin": 807950,
+          "end": 809634,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0318",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et même euh au lycée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0318"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0535",
+          "begin": 809634,
+          "end": 814946,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0318",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh des jeunes qui manquent de respect aux professeurs et tout ça moi je trouve que là vraiment en ce moment y a"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0318"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0536",
+          "begin": 814946,
+          "end": 817226,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0318",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "bof il y a un laisser-aller qui est exagéré"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0318"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0537",
+          "begin": 818988,
+          "end": 820943,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0319",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et qu'est-ce que vous pensez du latin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0319"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0538",
+          "begin": 820943,
+          "end": 821546,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0319",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à l'école ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0319"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0539",
+          "begin": 821546,
+          "end": 822168,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ben"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0540",
+          "begin": 822168,
+          "end": 824181,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "nous ça y est nous avons"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0541",
+          "begin": 824181,
+          "end": 825943,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mon fils en a fait trois ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0542",
+          "begin": 825943,
+          "end": 827589,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et nous avons payé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0543",
+          "begin": 827589,
+          "end": 828385,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "cher"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0544",
+          "begin": 828385,
+          "end": 832426,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "l'histoire c'est son nouveau lycée qui est devenu lycée classique"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0545",
+          "begin": 832426,
+          "end": 833782,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0320",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un lycée technique"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0320"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0546",
+          "begin": 833782,
+          "end": 834226,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0321",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0321"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0547",
+          "begin": 834226,
+          "end": 835694,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0322",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qu'est devenu lycée classique"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0322"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0548",
+          "begin": 835694,
+          "end": 838012,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0322",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors comme il était très bon en français on l'a mis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0322"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0549",
+          "begin": 838012,
+          "end": 838650,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0322",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en latin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0322"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0550",
+          "begin": 838650,
+          "end": 840218,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0323",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pendant trois ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0323"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0551",
+          "begin": 838650,
+          "end": 840218,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0323",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "dès la sixième ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0323"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0552",
+          "begin": 840218,
+          "end": 840779,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0324",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui c'est ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0324"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0553",
+          "begin": 840779,
+          "end": 841073,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0325",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0325"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0554",
+          "begin": 841598,
+          "end": 841850,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0326",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "voilà"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0326"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0555",
+          "begin": 841850,
+          "end": 842569,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0326",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et alors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0326"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0556",
+          "begin": 842569,
+          "end": 849218,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0326",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "eh bien voilà euh ce qui s'est passé en quatrième eh bien il a pas pu continuer il n'était pas assez fort en latin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0326"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0557",
+          "begin": 849218,
+          "end": 849531,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0327",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0327"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0558",
+          "begin": 849531,
+          "end": 851157,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0328",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et alors il a perdu tout son temps en"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0328"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0559",
+          "begin": 851157,
+          "end": 852046,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0328",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour ses maths"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0328"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0560",
+          "begin": 853054,
+          "end": 856222,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0328",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et alors ça fait que maintenant le voilà en littéraire parce qu'il est pas assez fort en maths"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0328"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0561",
+          "begin": 857825,
+          "end": 857999,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0329",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0329"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0562",
+          "begin": 857999,
+          "end": 860530,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "par rapport à ce latin là alors euh il est en moderne"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0563",
+          "begin": 860530,
+          "end": 861442,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors moi je"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0564",
+          "begin": 861442,
+          "end": 862083,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0565",
+          "begin": 862083,
+          "end": 863300,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qu'on mette en latin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0566",
+          "begin": 863300,
+          "end": 866062,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "celui qui se destine vraiment à une situation"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0567",
+          "begin": 866526,
+          "end": 868651,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "indispen- que le latin est indispensable"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0568",
+          "begin": 868651,
+          "end": 869428,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais alors nous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0569",
+          "begin": 869428,
+          "end": 871518,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'avais envisagé dès le début"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0570",
+          "begin": 871518,
+          "end": 873005,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "soit la comptabilité"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0571",
+          "begin": 873005,
+          "end": 874029,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ou l'enseignement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0572",
+          "begin": 874029,
+          "end": 875671,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "l'instituteur ou quelque chose"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0573",
+          "begin": 875671,
+          "end": 877448,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors on m'a dit oh mais c'est obligé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0574",
+          "begin": 878124,
+          "end": 882355,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "du moment qu'il est bon en français vous êtes forcé vous pouvez pas lui retirer sa chance faut le mettre en latin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0575",
+          "begin": 883189,
+          "end": 884213,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en sixième"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0576",
+          "begin": 884213,
+          "end": 885527,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on a accepté"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0577",
+          "begin": 885527,
+          "end": 886361,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en cinquième"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0578",
+          "begin": 886922,
+          "end": 889244,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on nous a bourré le mou euh laissez-les"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0579",
+          "begin": 889244,
+          "end": 891566,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh pour son BEPC tout ça ça sera mieux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0580",
+          "begin": 891566,
+          "end": 892825,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et en quatrième aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0581",
+          "begin": 892825,
+          "end": 896785,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0330",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et on on a bien vu qu'après il a il est tombé hein hein il a été forcé d'abandonner"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0330"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0582",
+          "begin": 896785,
+          "end": 897017,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0331",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0331"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0583",
+          "begin": 897017,
+          "end": 897828,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0332",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça il pouvait plus suivre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0332"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0584",
+          "begin": 898717,
+          "end": 898798,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0333",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0333"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0585",
+          "begin": 898798,
+          "end": 899957,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0334",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il était pas doué pour le latin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0334"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0586",
+          "begin": 899957,
+          "end": 901000,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0334",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors ça moi je"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0334"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0587",
+          "begin": 902024,
+          "end": 902858,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0334",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "suis pas pour"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0334"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0588",
+          "begin": 902858,
+          "end": 904597,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0335",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous êtes pas pour le latin à l'école"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0335"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0589",
+          "begin": 904597,
+          "end": 904871,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0336",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0336"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0590",
+          "begin": 905412,
+          "end": 905489,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0337",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0337"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0591",
+          "begin": 905489,
+          "end": 906185,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0338",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je ne suis pas pour"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0338"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0592",
+          "begin": 906185,
+          "end": 906865,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0339",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0339"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0593",
+          "begin": 908743,
+          "end": 911316,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0340",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et dans quelle matière est-ce que vous aimeriez que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0340"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0594",
+          "begin": 912093,
+          "end": 913314,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0340",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vos enfants soient fort ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0340"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0595",
+          "begin": 913314,
+          "end": 915597,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0341",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ben ça évidemment c'est les maths"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0341"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0596",
+          "begin": 913314,
+          "end": 915597,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0341",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à l'école ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0341"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0597",
+          "begin": 915597,
+          "end": 916293,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0342",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "en maths ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0342"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0598",
+          "begin": 916293,
+          "end": 918229,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0343",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ben évidemment ça euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0343"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0599",
+          "begin": 918229,
+          "end": 920744,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0343",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il y a beaucoup de portes de sortie avec les maths"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0343"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0600",
+          "begin": 920744,
+          "end": 921192,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0343",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0343"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0601",
+          "begin": 921192,
+          "end": 921714,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0344",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0344"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0602",
+          "begin": 922471,
+          "end": 923650,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0344",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous trouvez que c'est plus important ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0344"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0603",
+          "begin": 923650,
+          "end": 924079,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0345",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0345"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0604",
+          "begin": 924079,
+          "end": 924527,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0346",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0346"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0605",
+          "begin": 924527,
+          "end": 925590,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0347",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui certainement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0606",
+          "begin": 925590,
+          "end": 926347,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0347",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "certainement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0607",
+          "begin": 926347,
+          "end": 927216,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0347",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à tous point de vue"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0608",
+          "begin": 927950,
+          "end": 931447,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0347",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en en industrie en comptabilité"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0609",
+          "begin": 931447,
+          "end": 933305,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0347",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il y a beaucoup de sorties"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0610",
+          "begin": 933750,
+          "end": 934430,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0347",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en maths"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0347"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0611",
+          "begin": 934430,
+          "end": 934897,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0348",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0348"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0612",
+          "begin": 935786,
+          "end": 938316,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0349",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et d'après vous comment ça se fait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0349"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0613",
+          "begin": 938316,
+          "end": 941021,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0349",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "que certains enfants réussissent à l'école"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0349"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0614",
+          "begin": 941021,
+          "end": 942927,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0349",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et pas d'autres qu'est-ce qui fait que ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0349"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0615",
+          "begin": 942927,
+          "end": 945944,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0350",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ça moi je crois que c'est en naissant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0350"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0616",
+          "begin": 942927,
+          "end": 945944,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0350",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "certains réussissent ou ne réussissent pas ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0350"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0617",
+          "begin": 945944,
+          "end": 948147,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je crois qu'il y a une chose de naissance"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0618",
+          "begin": 948900,
+          "end": 950159,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de héréditaire aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0619",
+          "begin": 950662,
+          "end": 951960,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il y a des fils qui sont"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0620",
+          "begin": 951960,
+          "end": 953930,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de familles et vraiment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0621",
+          "begin": 953930,
+          "end": 955862,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je crois qu'il doit y avoir quelque chose comme ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0622",
+          "begin": 958532,
+          "end": 958980,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je crois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0623",
+          "begin": 959502,
+          "end": 961476,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce qu'y a beaucoup d'enfants qui se donnent du mal"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0624",
+          "begin": 961476,
+          "end": 963524,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et qui ne peuvent pas y arriver"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0625",
+          "begin": 963524,
+          "end": 964513,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0351",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0351"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0626",
+          "begin": 964513,
+          "end": 964923,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0352",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0352"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0627",
+          "begin": 964923,
+          "end": 966163,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0353",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "maintenant évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0353"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0628",
+          "begin": 966163,
+          "end": 967747,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0353",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il y en a qui veulent rien faire ça c'est sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0353"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0629",
+          "begin": 967747,
+          "end": 967998,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0354",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0354"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0630",
+          "begin": 968848,
+          "end": 970374,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0355",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais je je crois qu'en naissant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0355"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0631",
+          "begin": 970818,
+          "end": 975222,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0355",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il y en a vraiment ils ont le l'instruction avec eux jusqu'au bout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0355"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0632",
+          "begin": 976420,
+          "end": 978120,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0355",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "les doués les vraiment ce qu'on appelle les doués"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0355"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0633",
+          "begin": 979650,
+          "end": 979955,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0356",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0356"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0634",
+          "begin": 980616,
+          "end": 982764,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0356",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "alors vous pensez que ça vient surtout des"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0356"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0635",
+          "begin": 982764,
+          "end": 984352,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0357",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ben de naissance oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0357"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0636",
+          "begin": 982764,
+          "end": 984352,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0357",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "des enfants"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0357"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0637",
+          "begin": 984352,
+          "end": 984472,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0358",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0358"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0638",
+          "begin": 984472,
+          "end": 985249,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0359",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un peu de naissance"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0359"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0639",
+          "begin": 986064,
+          "end": 986450,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0360",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0360"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0640",
+          "begin": 986450,
+          "end": 988150,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0361",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh je peut-être me tromper mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0361"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0641",
+          "begin": 989367,
+          "end": 990275,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0361",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais je crois pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0361"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0642",
+          "begin": 990275,
+          "end": 990874,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0362",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0362"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0643",
+          "begin": 991844,
+          "end": 993992,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0363",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et jusqu'à ce qu- quel âge euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0363"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0644",
+          "begin": 993992,
+          "end": 997241,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0363",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous pensez qu'il est bon que les enfants continuent leurs études ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0363"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0645",
+          "begin": 997241,
+          "end": 998551,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0364",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0364"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0646",
+          "begin": 997241,
+          "end": 998551,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0364",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que vous donneriez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0364"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0647",
+          "begin": 998551,
+          "end": 999926,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "vous euh c'est pénible"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0648",
+          "begin": 1000467,
+          "end": 1001414,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à dix-neuf ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0649",
+          "begin": 1002017,
+          "end": 1002851,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de voir"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0650",
+          "begin": 1002851,
+          "end": 1005169,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un jeune homme prêt à partir au régiment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0651",
+          "begin": 1005169,
+          "end": 1008473,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qui n'a ni bagage intellectuel"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0652",
+          "begin": 1008473,
+          "end": 1009211,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ni métier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0653",
+          "begin": 1009736,
+          "end": 1011552,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors si à vers"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0654",
+          "begin": 1011552,
+          "end": 1012329,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "quatorze ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0655",
+          "begin": 1013511,
+          "end": 1014400,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un enfant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0656",
+          "begin": 1014400,
+          "end": 1015486,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "n'est pas capable"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0657",
+          "begin": 1015486,
+          "end": 1017093,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de continuer ses études"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0658",
+          "begin": 1017093,
+          "end": 1019894,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "eh bien alors qu'il apprenne en vitesse un métier en trois ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0659",
+          "begin": 1019894,
+          "end": 1021444,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0365",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qu'il ait un CAP de maçon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0365"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0660",
+          "begin": 1021444,
+          "end": 1021598,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0366",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0366"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0661",
+          "begin": 1022548,
+          "end": 1023205,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0367",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "n'est-ce pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0662",
+          "begin": 1023205,
+          "end": 1025137,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0367",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais alors tout de même c'est tout de même pénible"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0663",
+          "begin": 1025137,
+          "end": 1029989,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0367",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de vouloir pousser un enfant aux études jusqu'à dix-huit dix-neuf ans vingt ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0664",
+          "begin": 1029989,
+          "end": 1030839,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0367",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il a rien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0665",
+          "begin": 1030839,
+          "end": 1031496,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0367",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pas de bac"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0666",
+          "begin": 1032157,
+          "end": 1033899,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0367",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh n'est-ce pas il y a rien aucun papier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0367"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0667",
+          "begin": 1033899,
+          "end": 1034556,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0368",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "aucun bagage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0368"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0668",
+          "begin": 1033899,
+          "end": 1034556,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0368",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0368"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0669",
+          "begin": 1034556,
+          "end": 1037106,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0369",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ni certificat d'étude ni BEPC ni cer-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0369"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0670",
+          "begin": 1037106,
+          "end": 1037535,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0370",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0370"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0671",
+          "begin": 1037535,
+          "end": 1037945,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0371",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ni bac"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0371"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0672",
+          "begin": 1037945,
+          "end": 1038973,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0371",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et alors pas de métier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0371"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0673",
+          "begin": 1039556,
+          "end": 1039634,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0372",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0372"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0674",
+          "begin": 1039634,
+          "end": 1041260,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0373",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors qu'est-ce que je vais faire dans la vie avec ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0373"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0675",
+          "begin": 1041260,
+          "end": 1041647,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0374",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0374"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0676",
+          "begin": 1041647,
+          "end": 1044548,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0375",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors moi dès l'âge de quatorze ans ou seize ans au maximum"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0375"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0677",
+          "begin": 1044548,
+          "end": 1045012,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0376",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0376"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0678",
+          "begin": 1045012,
+          "end": 1047778,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0377",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à les retirer de l'instruction et mettez-les en métier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0377"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0679",
+          "begin": 1047778,
+          "end": 1048029,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0378",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0378"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0680",
+          "begin": 1048029,
+          "end": 1048512,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0379",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "technique"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0379"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0681",
+          "begin": 1048937,
+          "end": 1049169,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0380",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0380"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0682",
+          "begin": 1049946,
+          "end": 1051708,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0380",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est la même chose pour les garçons"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0380"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0683",
+          "begin": 1051708,
+          "end": 1054474,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0381",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et pour les filles ou est-ce que vous faites une différence ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0381"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0684",
+          "begin": 1051708,
+          "end": 1054474,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0381",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh évidemment évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0381"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0685",
+          "begin": 1054474,
+          "end": 1056753,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0382",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh si si si certainement moi je connais une famille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0382"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0686",
+          "begin": 1054474,
+          "end": 1056753,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0382",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est la même chose"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0382"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0687",
+          "begin": 1056753,
+          "end": 1057603,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0688",
+          "begin": 1057603,
+          "end": 1058357,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0689",
+          "begin": 1058357,
+          "end": 1059018,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "élevée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0690",
+          "begin": 1059018,
+          "end": 1062112,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "eh bien euh y a une seule fille mademoiselle Iation"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0691",
+          "begin": 1062112,
+          "end": 1063445,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "y a rien à faire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0692",
+          "begin": 1064179,
+          "end": 1069395,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh elle a vingt ans ils ont été forcé de la remettre en technique euh pour la couture et la cuisine"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0693",
+          "begin": 1070790,
+          "end": 1071993,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0383",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "y a rien à faire dans l'instruction"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0383"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0694",
+          "begin": 1072474,
+          "end": 1072822,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0384",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0384"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0695",
+          "begin": 1072822,
+          "end": 1073811,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0385",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non non rien à faire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0385"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0696",
+          "begin": 1073811,
+          "end": 1074336,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0386",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0386"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0697",
+          "begin": 1074336,
+          "end": 1074800,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0387",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0387"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0698",
+          "begin": 1075828,
+          "end": 1081607,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0387",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "vous voyez mais les parents eux-mêmes ont été forcés de revenir de leur erreur ils auraient voulu que leur fille elle ait un bagage mais y a rien à faire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0387"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0699",
+          "begin": 1084041,
+          "end": 1084312,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0388",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0388"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0700",
+          "begin": 1084973,
+          "end": 1085750,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0389",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0389"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0701",
+          "begin": 1086874,
+          "end": 1088168,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0389",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous faites"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0389"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0702",
+          "begin": 1088168,
+          "end": 1091761,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0389",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous voyez une différence entre les les lycées"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0389"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0703",
+          "begin": 1091761,
+          "end": 1095663,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0389",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "les CEG techniques et les CES ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0389"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0704",
+          "begin": 1095663,
+          "end": 1100259,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0390",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui mais euh comme euh son proviseur nous disait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0390"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0705",
+          "begin": 1100259,
+          "end": 1106036,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0390",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh lui il est pas content du tout le proviseur du lycée de mon fils là Benjamin Franklin d'Orléans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0390"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0706",
+          "begin": 1106036,
+          "end": 1106349,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0391",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0391"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0707",
+          "begin": 1107377,
+          "end": 1108984,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0392",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il il préférait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0392"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0708",
+          "begin": 1108984,
+          "end": 1110356,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0392",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "avoir ses petits"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0392"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0709",
+          "begin": 1111345,
+          "end": 1112431,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0392",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et il regrette"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0392"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0710",
+          "begin": 1112431,
+          "end": 1115897,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0392",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh la fondation des CEG ECG euh CES"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0392"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0711",
+          "begin": 1116461,
+          "end": 1116596,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0393",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0393"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0712",
+          "begin": 1116596,
+          "end": 1117968,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0394",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce qu'il préférait hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0394"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0713",
+          "begin": 1117968,
+          "end": 1118957,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0394",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "former"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0394"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0714",
+          "begin": 1118957,
+          "end": 1120680,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0394",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ses petits sixièmes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0394"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0715",
+          "begin": 1120680,
+          "end": 1120835,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0395",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0395"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0716",
+          "begin": 1120835,
+          "end": 1122442,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "cinquièmes quatrièmes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0717",
+          "begin": 1122442,
+          "end": 1124915,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et puis et les arriver"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0718",
+          "begin": 1124915,
+          "end": 1126445,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à en sortir soit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0719",
+          "begin": 1126445,
+          "end": 1128921,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un matheux quoi soit en maths"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0720",
+          "begin": 1128921,
+          "end": 1130428,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "soit en français"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0721",
+          "begin": 1130428,
+          "end": 1132611,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais forgé de ses mains tandis que là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0722",
+          "begin": 1132611,
+          "end": 1135551,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on lui envoie des CEG ou des CES"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0723",
+          "begin": 1136270,
+          "end": 1136699,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0724",
+          "begin": 1137746,
+          "end": 1138890,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un gars de troisième"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0725",
+          "begin": 1139415,
+          "end": 1140111,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ou que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0726",
+          "begin": 1140111,
+          "end": 1141622,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0396",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il l'ignore il le connaît pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0396"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0727",
+          "begin": 1141622,
+          "end": 1143345,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0397",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh il y a un papier qui suit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0397"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0728",
+          "begin": 1141622,
+          "end": 1143345,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0397",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0397"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0729",
+          "begin": 1143345,
+          "end": 1146436,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0398",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais c'est tout alors euh ça arrive à dix-huit ans encore un coup"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0398"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0730",
+          "begin": 1146436,
+          "end": 1149743,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0399",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et puis ça y est et encore k- il se casse le nez il y a rien à faire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0399"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0731",
+          "begin": 1146436,
+          "end": 1149743,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0399",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0399"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0732",
+          "begin": 1149743,
+          "end": 1155310,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0400",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous faites une différence entre les élèves des CEG des CES des lycées ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0400"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0733",
+          "begin": 1156956,
+          "end": 1158930,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça euh maintenant plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0734",
+          "begin": 1158930,
+          "end": 1160224,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0735",
+          "begin": 1160224,
+          "end": 1163661,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "des fils même de famille assez aisée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0736",
+          "begin": 1163661,
+          "end": 1166038,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qui se trouvent euh à dix kilomètres d'Orléans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0737",
+          "begin": 1166038,
+          "end": 1167970,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ils ont un CES à côté de chez eux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0738",
+          "begin": 1168743,
+          "end": 1169346,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0739",
+          "begin": 1169346,
+          "end": 1173580,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "au lieu de de courir au lycée de la ville avec une voiture"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0740",
+          "begin": 1173580,
+          "end": 1177926,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0401",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors jusque à au moins l'âge de seize ans c'est ce qui se produit à Saint-Jean-de-la-Ruelle autour de la ville"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0401"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0741",
+          "begin": 1177926,
+          "end": 1178950,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0402",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "quoi à Olivet ou autre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0402"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0742",
+          "begin": 1177926,
+          "end": 1178950,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0402",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0402"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0743",
+          "begin": 1179974,
+          "end": 1181948,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0403",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça non euh je trouve ça bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0403"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0744",
+          "begin": 1181948,
+          "end": 1183188,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0404",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je trouve ça bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0404"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0745",
+          "begin": 1181948,
+          "end": 1183188,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0404",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0404"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0746",
+          "begin": 1183188,
+          "end": 1185274,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0405",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais malgré tout l'avis du proviseur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0405"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0747",
+          "begin": 1185274,
+          "end": 1188406,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0405",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh de du lycée moi je trouve qu'elle était bonne aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0405"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0748",
+          "begin": 1188406,
+          "end": 1190760,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0405",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et euh lui préférait avoir ses enfants dès le début"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0405"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0749",
+          "begin": 1190760,
+          "end": 1191011,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0406",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0406"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0750",
+          "begin": 1191011,
+          "end": 1192402,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0407",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on lui a retiré"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0407"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0751",
+          "begin": 1192402,
+          "end": 1195126,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0407",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour &débouteiller un peu les lycées qui sont trop encombrés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0407"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0752",
+          "begin": 1195126,
+          "end": 1195574,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0408",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0408"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0753",
+          "begin": 1195574,
+          "end": 1197332,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0409",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors maintenant dans les lycées y a plus que des grands"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0409"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0754",
+          "begin": 1198282,
+          "end": 1199924,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0409",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça part que du bre- BEPC"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0409"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0755",
+          "begin": 1201006,
+          "end": 1202613,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0410",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que l'enseignement a"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0410"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0756",
+          "begin": 1202613,
+          "end": 1205244,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0410",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "a beaucoup changé à votre avis depuis que vous avez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0410"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0757",
+          "begin": 1205244,
+          "end": 1206021,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0410",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quitté"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0410"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0758",
+          "begin": 1206021,
+          "end": 1206527,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0410",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "l'école ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0410"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0759",
+          "begin": 1206527,
+          "end": 1207725,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui puisque"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0760",
+          "begin": 1207725,
+          "end": 1210201,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh des instituteurs retraités"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0761",
+          "begin": 1210201,
+          "end": 1211689,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "chez qui nous travaillons"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0762",
+          "begin": 1211689,
+          "end": 1214080,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ne peuvent même plus corriger"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0763",
+          "begin": 1214080,
+          "end": 1216111,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "des devoirs de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0764",
+          "begin": 1216111,
+          "end": 1218939,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de première maintenant de classes de première"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0765",
+          "begin": 1218939,
+          "end": 1223738,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui euh il y a eu un palier énorme euh je crois que l'instruction de maintenant euh l'enseignement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0766",
+          "begin": 1224611,
+          "end": 1226910,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0411",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "a beaucoup monté monté monté"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0411"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0767",
+          "begin": 1226910,
+          "end": 1227667,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0412",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr004"
+              },
+              "content": "progressé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0412"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0768",
+          "begin": 1226910,
+          "end": 1227667,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0412",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "énormément"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0412"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0769",
+          "begin": 1227667,
+          "end": 1228092,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0413",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0413"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0770",
+          "begin": 1228092,
+          "end": 1228961,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0414",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "progressé hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0414"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0771",
+          "begin": 1228092,
+          "end": 1228961,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0414",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0414"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0772",
+          "begin": 1231955,
+          "end": 1232303,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0415",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0415"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0773",
+          "begin": 1232303,
+          "end": 1233906,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0416",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0416"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0774",
+          "begin": 1233906,
+          "end": 1235123,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0416",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à votre avis est-ce"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0416"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0775",
+          "begin": 1235123,
+          "end": 1238021,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0416",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "comment est ce que les gens font le le choix"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0416"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0776",
+          "begin": 1238021,
+          "end": 1241021,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0416",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "entre l'école euh privée et l'école publique ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0416"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0777",
+          "begin": 1243414,
+          "end": 1244824,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0417",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça hm l'école libre ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0417"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0778",
+          "begin": 1244824,
+          "end": 1246427,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0418",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui l'école libre l'école publique"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0418"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0779",
+          "begin": 1246427,
+          "end": 1248011,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0419",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui oh ben ça c'est les familles"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0419"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0780",
+          "begin": 1248765,
+          "end": 1249368,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0420",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0420"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0781",
+          "begin": 1250338,
+          "end": 1251752,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0421",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi mon petit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0421"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0782",
+          "begin": 1251752,
+          "end": 1252953,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0421",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il y a été deux ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0421"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0783",
+          "begin": 1253436,
+          "end": 1257300,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0421",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "avant le ses six ans il est rentré à l'école euh laïque"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0421"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0784",
+          "begin": 1257300,
+          "end": 1258019,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0422",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0422"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0785",
+          "begin": 1259530,
+          "end": 1260191,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0423",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0423"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0786",
+          "begin": 1260191,
+          "end": 1262822,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0423",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh la petite école libre était à côté de chez nous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0423"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0787",
+          "begin": 1262822,
+          "end": 1263966,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0423",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "juste à"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0423"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0788",
+          "begin": 1263966,
+          "end": 1265245,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0423",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "une porte à côté de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0423"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0789",
+          "begin": 1265245,
+          "end": 1265712,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0424",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0424"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0790",
+          "begin": 1266369,
+          "end": 1267238,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0425",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "puis c'était une"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0425"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0791",
+          "begin": 1267238,
+          "end": 1269267,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0425",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à cet âge-là ce petit bonhomme"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0425"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0792",
+          "begin": 1269267,
+          "end": 1271473,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0425",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm c'était bien c'était comme une garderie d'enfants"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0425"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0793",
+          "begin": 1271473,
+          "end": 1271960,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0426",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0426"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0794",
+          "begin": 1271960,
+          "end": 1272794,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0427",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à l'école libre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0427"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0795",
+          "begin": 1272794,
+          "end": 1273200,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0427",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "maintenant moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0427"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0796",
+          "begin": 1273200,
+          "end": 1273471,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0428",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0428"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0797",
+          "begin": 1274093,
+          "end": 1275005,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0429",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je ne suis pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0429"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0798",
+          "begin": 1275005,
+          "end": 1277211,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0429",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "très très très partisan de l'école libre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0429"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0799",
+          "begin": 1277211,
+          "end": 1278509,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0430",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "maintenant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0430"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0800",
+          "begin": 1277211,
+          "end": 1278509,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0430",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous n'êtes pas très partisan"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0430"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0801",
+          "begin": 1278509,
+          "end": 1280402,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0431",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh oh c'est pas question religion"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0431"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0802",
+          "begin": 1280402,
+          "end": 1281522,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0432",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais je trouve que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0432"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0803",
+          "begin": 1280402,
+          "end": 1281522,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0432",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0432"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0804",
+          "begin": 1281522,
+          "end": 1284787,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0433",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh l'enseignement l'autre côté est plus fort"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0433"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0805",
+          "begin": 1284787,
+          "end": 1285023,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0434",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0434"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0806",
+          "begin": 1285023,
+          "end": 1286109,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0435",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais je sais pas oui oh je fais peut-être"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0435"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0807",
+          "begin": 1286109,
+          "end": 1286538,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0436",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "une bêtise"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0436"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0808",
+          "begin": 1286109,
+          "end": 1286538,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0436",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0436"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0809",
+          "begin": 1286538,
+          "end": 1287855,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0437",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je veux pas m'avancer de trop"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0437"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0810",
+          "begin": 1287855,
+          "end": 1288300,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0438",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0438"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0811",
+          "begin": 1288300,
+          "end": 1288574,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0439",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0439"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0812",
+          "begin": 1288574,
+          "end": 1292013,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0439",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je ne suis pas contre l'enseignement libre parce qu'on en a beaucoup besoin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0439"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0813",
+          "begin": 1292013,
+          "end": 1293748,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0439",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à Orléans y a des lycées"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0439"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0814",
+          "begin": 1293748,
+          "end": 1294486,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0440",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0440"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0815",
+          "begin": 1294486,
+          "end": 1295147,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0441",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "libres"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0441"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0816",
+          "begin": 1295147,
+          "end": 1297237,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0441",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh ent- euh l'école Sainte-Croix"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0441"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0817",
+          "begin": 1297237,
+          "end": 1298763,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0441",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors c'est des"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0441"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0818",
+          "begin": 1298763,
+          "end": 1299265,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0441",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "tous les"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0441"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0819",
+          "begin": 1299265,
+          "end": 1300463,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0442",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "élèves sortent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0442"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0820",
+          "begin": 1299265,
+          "end": 1300463,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0442",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0442"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0821",
+          "begin": 1300463,
+          "end": 1300873,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0443",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0443"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0822",
+          "begin": 1300873,
+          "end": 1302828,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0444",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "nous avons un cousin qui est sorti prêtre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0444"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0823",
+          "begin": 1302828,
+          "end": 1303527,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0444",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0444"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0824",
+          "begin": 1304725,
+          "end": 1307510,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0444",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "vraiment c'était ri- tous les premiers prix il les a eus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0444"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0825",
+          "begin": 1307510,
+          "end": 1309751,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0444",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ben euh c'était qu'un fils de campagnard"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0444"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0826",
+          "begin": 1309751,
+          "end": 1310099,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0445",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0445"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0827",
+          "begin": 1310099,
+          "end": 1310760,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0446",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0446"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0828",
+          "begin": 1310760,
+          "end": 1311227,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0447",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0447"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0829",
+          "begin": 1311227,
+          "end": 1311652,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0448",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0448"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0830",
+          "begin": 1311652,
+          "end": 1312444,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0448",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "si"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0448"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0831",
+          "begin": 1312444,
+          "end": 1314067,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0448",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh c'est bien aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0448"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0832",
+          "begin": 1314067,
+          "end": 1315964,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0448",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais malgré tout moi j'en suis pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0448"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0833",
+          "begin": 1315964,
+          "end": 1318672,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0448",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'aurais pas aimé mettre le mien à l'école libre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0448"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0834",
+          "begin": 1320256,
+          "end": 1325085,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0449",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et est-ce que vous êtes favorable à vous savez maintenant on fait participer les élèves"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0449"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0835",
+          "begin": 1325085,
+          "end": 1326898,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0449",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "aux conseils d'administration ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0449"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0836",
+          "begin": 1326898,
+          "end": 1328544,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0450",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui je poliment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0450"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0837",
+          "begin": 1326898,
+          "end": 1328544,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0450",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "dans les lycées"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0450"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0838",
+          "begin": 1328544,
+          "end": 1330228,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0450",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça je vous l'accorde"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0450"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0839",
+          "begin": 1328544,
+          "end": 1330228,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0450",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que vous en pensez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0450"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0840",
+          "begin": 1330228,
+          "end": 1331291,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0451",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0841",
+          "begin": 1331291,
+          "end": 1334617,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0451",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "poliment mais alors là euh avec les évènements y a eu des"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0842",
+          "begin": 1334617,
+          "end": 1335351,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0451",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "choses euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0843",
+          "begin": 1335351,
+          "end": 1336898,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0451",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un petit peu exagérées"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0844",
+          "begin": 1336898,
+          "end": 1337553,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0451",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "sans ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0845",
+          "begin": 1337553,
+          "end": 1340223,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0451",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh si sans perturber la classe"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0451"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0846",
+          "begin": 1340223,
+          "end": 1342274,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0452",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qu'il y ait des conseils en dehors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0452"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0847",
+          "begin": 1340223,
+          "end": 1342274,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0452",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0452"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0848",
+          "begin": 1342274,
+          "end": 1343008,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0453",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0849",
+          "begin": 1343781,
+          "end": 1344786,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0453",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est très bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0850",
+          "begin": 1344786,
+          "end": 1345582,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0453",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hein euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0851",
+          "begin": 1345582,
+          "end": 1347305,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0453",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est déjà euh c'est commencé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0852",
+          "begin": 1347305,
+          "end": 1347653,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0453",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0853",
+          "begin": 1348642,
+          "end": 1349747,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0453",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "si moi je trouve ça bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0453"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0854",
+          "begin": 1349747,
+          "end": 1350176,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0454",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0454"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0855",
+          "begin": 1350176,
+          "end": 1351049,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0454",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous trouvez que c'est bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0454"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0856",
+          "begin": 1351049,
+          "end": 1353464,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0455",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "que les élèves puissent participer ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0455"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0857",
+          "begin": 1351049,
+          "end": 1353464,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0455",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui du parler c'est ça oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0455"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0858",
+          "begin": 1354279,
+          "end": 1355921,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0456",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "enfin en général"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0456"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0859",
+          "begin": 1356616,
+          "end": 1357524,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0456",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que v-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0456"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0860",
+          "begin": 1357524,
+          "end": 1359186,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0456",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous trouvez qu'on qu'il faut"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0456"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0861",
+          "begin": 1359186,
+          "end": 1361913,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0456",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'on pourrait changer dans l'enseignement actuel ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0456"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0862",
+          "begin": 1361913,
+          "end": 1363111,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0456",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce qui va pas ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0456"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0863",
+          "begin": 1363710,
+          "end": 1364371,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0457",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0457"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0864",
+          "begin": 1364371,
+          "end": 1364742,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0458",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "surtout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0458"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0865",
+          "begin": 1364742,
+          "end": 1368976,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "vous savez moi je n'ai pas été assez euh haut dans les études évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0866",
+          "begin": 1369729,
+          "end": 1370464,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0867",
+          "begin": 1371897,
+          "end": 1374099,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on se le demande un peu euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0868",
+          "begin": 1374099,
+          "end": 1376417,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "dans les hauts étudiants"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0869",
+          "begin": 1376417,
+          "end": 1377789,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on se demande un peu"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0870",
+          "begin": 1378450,
+          "end": 1379536,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh ce qu'ils veulent au juste"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0871",
+          "begin": 1380409,
+          "end": 1380795,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "n'est-ce pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0872",
+          "begin": 1381433,
+          "end": 1382828,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment c'est les débouchés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0873",
+          "begin": 1384107,
+          "end": 1385598,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0459",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "comme euh à Nanterre hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0459"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0874",
+          "begin": 1385598,
+          "end": 1386699,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0460",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est des débouchés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0460"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0875",
+          "begin": 1385598,
+          "end": 1386699,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0460",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0460"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0876",
+          "begin": 1386699,
+          "end": 1388805,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0461",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "par la suite qui doit les effrayer un peu"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0461"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0877",
+          "begin": 1388805,
+          "end": 1389215,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0462",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0462"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0878",
+          "begin": 1391711,
+          "end": 1392178,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0463",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0463"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0879",
+          "begin": 1394535,
+          "end": 1395949,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0463",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça veut dire que ce qui ne va pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0463"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0880",
+          "begin": 1398754,
+          "end": 1400207,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0463",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "faut bien que le même en haut lieu"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0463"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0881",
+          "begin": 1401447,
+          "end": 1402104,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0463",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il nage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0463"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0882",
+          "begin": 1402104,
+          "end": 1402668,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0464",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0464"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0883",
+          "begin": 1404194,
+          "end": 1407806,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0464",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "bon pour revenir à à Orléans dont on parlait au début"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0464"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0884",
+          "begin": 1407806,
+          "end": 1410820,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0464",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous trouvez qu'on fait assez pour les habitants"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0464"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0885",
+          "begin": 1410820,
+          "end": 1411442,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0464",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à Orléans ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0464"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0886",
+          "begin": 1412373,
+          "end": 1416603,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ben je crois que la ville c'est a a été un moment ville pilote"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0887",
+          "begin": 1417782,
+          "end": 1421862,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh Orléans partout la construction a été poussée au maximum"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0888",
+          "begin": 1421862,
+          "end": 1425169,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh à chaque fois qu'on se déplace dans une rue quelconque euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0889",
+          "begin": 1426023,
+          "end": 1429233,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ce n'est que des maisons des villas des blocs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0890",
+          "begin": 1429774,
+          "end": 1430837,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi je trouve euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0891",
+          "begin": 1430837,
+          "end": 1431807,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qu'Orléans a"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0892",
+          "begin": 1431807,
+          "end": 1434206,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "beaucoup beaucoup changé et beaucoup fait pour ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0893",
+          "begin": 1435365,
+          "end": 1436949,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0465",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "certainement qu'on n'est pas une ville en retard"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0465"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0894",
+          "begin": 1436949,
+          "end": 1437451,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0466",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0466"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0895",
+          "begin": 1437451,
+          "end": 1439827,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0467",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "avec même Orléans deux là ça va être formidable"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0467"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0896",
+          "begin": 1439827,
+          "end": 1440349,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0468",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0468"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0897",
+          "begin": 1439827,
+          "end": 1440349,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0468",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0468"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0898",
+          "begin": 1440349,
+          "end": 1443888,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0469",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui le le maire euh tout ça les conseil général"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0469"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0899",
+          "begin": 1443888,
+          "end": 1445592,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0469",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "a fait beaucoup beaucoup beaucoup"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0469"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0900",
+          "begin": 1445592,
+          "end": 1446658,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0470",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "beaucoup pour Orléans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0470"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0901",
+          "begin": 1445592,
+          "end": 1446658,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0470",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0470"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0902",
+          "begin": 1447489,
+          "end": 1447976,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0471",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0471"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0903",
+          "begin": 1447976,
+          "end": 1450897,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0472",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quelles sont les personnes importantes qui comptent en"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0472"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0904",
+          "begin": 1450897,
+          "end": 1452369,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0472",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à Orléans d'après vous ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0472"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0905",
+          "begin": 1452369,
+          "end": 1454787,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0473",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ben le conseil général d'abord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0473"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0906",
+          "begin": 1454787,
+          "end": 1455290,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0474",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0474"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0907",
+          "begin": 1455290,
+          "end": 1455661,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0475",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0475"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0908",
+          "begin": 1456244,
+          "end": 1457152,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0475",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0475"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0909",
+          "begin": 1457152,
+          "end": 1458446,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0475",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour le financement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0475"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0910",
+          "begin": 1458446,
+          "end": 1459741,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0476",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "des grands travaux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0476"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0911",
+          "begin": 1458446,
+          "end": 1459741,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0476",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0476"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0912",
+          "begin": 1459741,
+          "end": 1463454,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0477",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et puis alors euh la mairie évidemment le maire est très très actif"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0477"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0913",
+          "begin": 1464269,
+          "end": 1465757,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0478",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "les députés euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0478"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0914",
+          "begin": 1464269,
+          "end": 1465757,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0478",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0478"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0915",
+          "begin": 1465757,
+          "end": 1467982,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0479",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment ils sont forcés ça c'est obligé parce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0479"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0916",
+          "begin": 1468523,
+          "end": 1469489,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0479",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour avoir quelque chose"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0479"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0917",
+          "begin": 1469489,
+          "end": 1471347,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0479",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "même une classe de lycée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0479"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0918",
+          "begin": 1471347,
+          "end": 1472629,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0479",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est grâce à un député"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0479"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0919",
+          "begin": 1474206,
+          "end": 1477223,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0480",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qu'ils ont pu l'avoir une classe supplémentaire pour l'électronique"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0480"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0920",
+          "begin": 1474206,
+          "end": 1477223,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0480",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0480"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0921",
+          "begin": 1478962,
+          "end": 1479603,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0481",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui y"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0481"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0922",
+          "begin": 1480994,
+          "end": 1482964,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0481",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment maintenant euh y a des groupements"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0481"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0923",
+          "begin": 1482964,
+          "end": 1485981,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0481",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "des groupements de d'habitation et tout ça quoi euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0481"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0924",
+          "begin": 1486947,
+          "end": 1489787,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0481",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est obligé mais en tout cas le principal c'est le conseil général"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0481"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0925",
+          "begin": 1490641,
+          "end": 1491475,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0481",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et le maire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0481"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0926",
+          "begin": 1491475,
+          "end": 1492094,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0482",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0482"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0927",
+          "begin": 1491475,
+          "end": 1492094,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0482",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0482"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0928",
+          "begin": 1493701,
+          "end": 1494300,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0483",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0483"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0929",
+          "begin": 1494300,
+          "end": 1496023,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0483",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "on a beaucoup parlé de mai"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0483"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0930",
+          "begin": 1496699,
+          "end": 1497742,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0483",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de mai dernier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0483"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0931",
+          "begin": 1497742,
+          "end": 1497993,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0484",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0484"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0932",
+          "begin": 1497993,
+          "end": 1500562,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0485",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et est-ce que vous pouvez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0485"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0933",
+          "begin": 1500562,
+          "end": 1504020,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0485",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "expliquer décrire pour euh les étudiants anglais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0485"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0934",
+          "begin": 1504020,
+          "end": 1506067,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0485",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à qui ces bandes sont destinées"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0485"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0935",
+          "begin": 1506067,
+          "end": 1507130,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0485",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ce qui s'est passé ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0485"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0936",
+          "begin": 1510109,
+          "end": 1512489,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0486",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça vous savez c'était bien trop compliqué pour moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0486"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0937",
+          "begin": 1513787,
+          "end": 1515568,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0487",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "enfin simplement décrire euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0487"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0938",
+          "begin": 1513787,
+          "end": 1515568,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0487",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0487"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0939",
+          "begin": 1515568,
+          "end": 1515958,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0488",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0488"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0940",
+          "begin": 1515958,
+          "end": 1517639,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0489",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "expliquer enfin ce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0489"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0941",
+          "begin": 1517639,
+          "end": 1522144,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0490",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est un peu un peu un peu fort je sais pas au juste moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0490"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0942",
+          "begin": 1517639,
+          "end": 1522144,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0490",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ce que vous en"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0490"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0943",
+          "begin": 1523519,
+          "end": 1524852,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh l'ampleur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0944",
+          "begin": 1526301,
+          "end": 1529280,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh de de tout ceux qui ont s- suivi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0945",
+          "begin": 1529280,
+          "end": 1531138,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh ce Cohn-Bendit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0946",
+          "begin": 1533958,
+          "end": 1534445,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0947",
+          "begin": 1534445,
+          "end": 1536863,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je les approuvais pas évidemment bien sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0948",
+          "begin": 1536863,
+          "end": 1541132,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais alors me dire euh quel est le motif si grave qui a poussé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0949",
+          "begin": 1541847,
+          "end": 1542620,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "cette chose-là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0950",
+          "begin": 1544613,
+          "end": 1548979,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment il y a longtemps dans les confér- dans les conseils de parents d'élèves"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0951",
+          "begin": 1548979,
+          "end": 1550335,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0952",
+          "begin": 1550335,
+          "end": 1553155,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "les professeurs de lycée de mon fils"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0953",
+          "begin": 1553155,
+          "end": 1554353,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "se plaignaient"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0954",
+          "begin": 1554353,
+          "end": 1556257,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0491",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ils avaient remis des lettres au ministre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0491"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0955",
+          "begin": 1556257,
+          "end": 1559718,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0492",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hein euh qui était venu ici Christian Fouchet qui était venu à la Source justement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0492"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0956",
+          "begin": 1556257,
+          "end": 1559718,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0492",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0492"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0957",
+          "begin": 1559718,
+          "end": 1560182,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0493",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0493"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0958",
+          "begin": 1560182,
+          "end": 1564470,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0494",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ils se plaignaient que ça allait mal dans l'enseignement euh en haut lieu"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0494"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0959",
+          "begin": 1564470,
+          "end": 1564895,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0495",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0495"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0960",
+          "begin": 1565707,
+          "end": 1566059,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0496",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0961",
+          "begin": 1567743,
+          "end": 1568767,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0496",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on faisait pas de cas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0962",
+          "begin": 1569308,
+          "end": 1571259,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0496",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il a fallu vraiment ce coup de mai"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0963",
+          "begin": 1571259,
+          "end": 1573214,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0496",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors comme une révolution non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0964",
+          "begin": 1573817,
+          "end": 1578360,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0496",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à pour limiter ce qui se passe qu'est-ce qui se passe mais au juste qu'est-ce qui se passe moi euh je n'étais pas en lieu"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0965",
+          "begin": 1578360,
+          "end": 1580079,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0496",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je ne sais pas eu juste euh ce qui s'est passé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0496"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0966",
+          "begin": 1580717,
+          "end": 1580798,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0497",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0497"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0967",
+          "begin": 1580798,
+          "end": 1584970,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0498",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "jusqu'au point que les recteurs ont abandonné tout ça alors c'était très grave"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0498"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0968",
+          "begin": 1586091,
+          "end": 1586868,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0499",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0499"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0969",
+          "begin": 1586868,
+          "end": 1588707,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0500",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais vous pour expliquer exactement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0500"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0970",
+          "begin": 1588707,
+          "end": 1589986,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0500",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ce qui s'est passé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0500"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0971",
+          "begin": 1589986,
+          "end": 1590647,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0500",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en mai"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0500"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0972",
+          "begin": 1592235,
+          "end": 1592451,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0500",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0500"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0973",
+          "begin": 1593475,
+          "end": 1595272,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0500",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi j'ai pas suivi la chose évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0500"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0974",
+          "begin": 1596686,
+          "end": 1599182,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0501",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais pratiquement ça vous ça vous a"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0501"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0975",
+          "begin": 1599727,
+          "end": 1600735,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0501",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que ça vous a"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0501"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0976",
+          "begin": 1600735,
+          "end": 1603188,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0502",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "atteint quand même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0502"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0977",
+          "begin": 1600735,
+          "end": 1603188,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0502",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ça nous a choqués évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0502"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0978",
+          "begin": 1603188,
+          "end": 1604753,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ben tous les français si vous voulez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0979",
+          "begin": 1605738,
+          "end": 1606801,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est épouvantable"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0980",
+          "begin": 1607771,
+          "end": 1609397,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est épouvantable ce qui s'est passé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0981",
+          "begin": 1611020,
+          "end": 1612469,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'était pas normal du tout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0982",
+          "begin": 1612469,
+          "end": 1615370,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors euh évidemment je crois qu'on aurait peut-être pu arriver"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0983",
+          "begin": 1615988,
+          "end": 1619874,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à réformer les l'enseignement que eux ils voulaient sans faire des choses pareilles"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0984",
+          "begin": 1619874,
+          "end": 1620898,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben ça c'était pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0985",
+          "begin": 1622192,
+          "end": 1625611,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "si nos parents avaient été là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0986",
+          "begin": 1622192,
+          "end": 1625611,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0503",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ils auraient été scandalisés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0503"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0987",
+          "begin": 1625611,
+          "end": 1628915,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0504",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et vous avez ressenti les effets de la des grèves et ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0504"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0988",
+          "begin": 1628915,
+          "end": 1631256,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "bien dans le bâtiment euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0989",
+          "begin": 1631256,
+          "end": 1634424,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "tout tout tout tout a suivi les finances ont suivi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0990",
+          "begin": 1634424,
+          "end": 1637070,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et nous euh nous avons passé l'hiver"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0991",
+          "begin": 1637070,
+          "end": 1639427,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "très très doucement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0992",
+          "begin": 1639427,
+          "end": 1641730,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh pour les les travaux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0993",
+          "begin": 1641730,
+          "end": 1648263,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh évidemment puisque les commandes on faisait beaucoup de devis mais pas de commandes alors si y a eu un frein énorme euh ça a gêné énormément"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0994",
+          "begin": 1648263,
+          "end": 1649426,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0505",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "aussi bien dans le bâtiment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0505"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0995",
+          "begin": 1650685,
+          "end": 1651033,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0506",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0506"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0996",
+          "begin": 1650685,
+          "end": 1651033,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0506",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0506"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0997",
+          "begin": 1652578,
+          "end": 1653003,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0507",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0507"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0998",
+          "begin": 1653003,
+          "end": 1653602,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0507",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0507"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a0999",
+          "begin": 1654356,
+          "end": 1658030,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0507",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quand vous votez pour un député enfin ces questions sont pas sont pas politiques"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0507"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1000",
+          "begin": 1658030,
+          "end": 1658227,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0508",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0508"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1001",
+          "begin": 1658227,
+          "end": 1659289,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0509",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "elles sont pas c'est pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0509"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1002",
+          "begin": 1659289,
+          "end": 1661588,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0509",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "toute façon vous répondez pas si vous voulez pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0509"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1003",
+          "begin": 1661588,
+          "end": 1664756,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0509",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "s- quand vous votez pour un député qu'est-ce que vous attendez de lui ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0509"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1004",
+          "begin": 1666421,
+          "end": 1668488,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0510",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh bien ça évidemment euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0510"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1005",
+          "begin": 1669149,
+          "end": 1670717,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0510",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "généralement on connaît"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0510"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1006",
+          "begin": 1671819,
+          "end": 1672248,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0510",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "l'homme"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0510"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1007",
+          "begin": 1672851,
+          "end": 1673203,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0511",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0511"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1008",
+          "begin": 1673999,
+          "end": 1675297,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0512",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et alors on sait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0512"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1009",
+          "begin": 1675297,
+          "end": 1681227,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0512",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on sait que c'est en en lui demandant une euh un sujet quelconque"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0512"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1010",
+          "begin": 1681961,
+          "end": 1683912,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0512",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et euh on aura satisfaction"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0512"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1011",
+          "begin": 1685090,
+          "end": 1686346,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0512",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on aime mieux un homme"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0512"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1012",
+          "begin": 1687022,
+          "end": 1690808,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0512",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh comment du pays à qui on peut s'adresser"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0512"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1013",
+          "begin": 1690808,
+          "end": 1691136,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0513",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0513"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1014",
+          "begin": 1691136,
+          "end": 1692991,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0514",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et alors c'est toujours ce c'est ce qui arrive"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0514"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1015",
+          "begin": 1692991,
+          "end": 1693690,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0515",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0515"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1016",
+          "begin": 1693690,
+          "end": 1695100,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0516",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est ce qui arrive"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0516"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1017",
+          "begin": 1695100,
+          "end": 1697534,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0516",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on est toujours assez bien reçu et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0516"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1018",
+          "begin": 1698713,
+          "end": 1703643,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0516",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment vous pour n'importe quoi le député est indispensable on est forcé d'aller le trouver"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0516"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1019",
+          "begin": 1703643,
+          "end": 1706448,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0516",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh pour obtenir la preuve pour une classe d'école"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0516"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1020",
+          "begin": 1706448,
+          "end": 1708287,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0517",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ou pour n'importe quoi pour"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0517"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1021",
+          "begin": 1706448,
+          "end": 1708287,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0517",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0517"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1022",
+          "begin": 1708287,
+          "end": 1708890,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0518",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0518"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1023",
+          "begin": 1708890,
+          "end": 1709203,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0519",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0519"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1024",
+          "begin": 1709203,
+          "end": 1712800,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0520",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "obtenir le PMU dans un café ou n'importe"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0520"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1025",
+          "begin": 1712800,
+          "end": 1714658,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0520",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le député il est prêt à tout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0520"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1026",
+          "begin": 1714658,
+          "end": 1715025,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0520",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0520"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1027",
+          "begin": 1715025,
+          "end": 1715392,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0521",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0521"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1028",
+          "begin": 1716957,
+          "end": 1717424,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0522",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0522"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1029",
+          "begin": 1718274,
+          "end": 1721771,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0522",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pourquoi est-ce qu'il y a deux tours dans les élections nationales"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0522"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1030",
+          "begin": 1721771,
+          "end": 1722605,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0522",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à votre avis ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0522"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1031",
+          "begin": 1723397,
+          "end": 1723861,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0523",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0523"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1032",
+          "begin": 1723861,
+          "end": 1726237,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0523",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est une c'est une histoire de ballottage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0523"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1033",
+          "begin": 1727014,
+          "end": 1727250,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0524",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0524"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1034",
+          "begin": 1728297,
+          "end": 1728513,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0524",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0524"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1035",
+          "begin": 1729112,
+          "end": 1732106,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0525",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça évidemment pour avoir la majorité absolue au premier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0525"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1036",
+          "begin": 1732106,
+          "end": 1732666,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0526",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0526"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1037",
+          "begin": 1732666,
+          "end": 1734637,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0527",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "tour ce n'est pas possible"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0527"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1038",
+          "begin": 1734637,
+          "end": 1735240,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0528",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0528"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1039",
+          "begin": 1735240,
+          "end": 1735881,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0529",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0529"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1040",
+          "begin": 1736808,
+          "end": 1738167,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0529",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non non même que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0529"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1041",
+          "begin": 1738450,
+          "end": 1741348,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0529",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh le député plaise énormément euh c'est pas possible"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0529"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1042",
+          "begin": 1741348,
+          "end": 1742202,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0530",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0530"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1043",
+          "begin": 1741348,
+          "end": 1742202,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0530",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0530"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1044",
+          "begin": 1742202,
+          "end": 1743094,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0531",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0531"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1045",
+          "begin": 1743094,
+          "end": 1745760,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0532",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et la seconde fois comment décide-t-on de son vote ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0532"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1046",
+          "begin": 1745760,
+          "end": 1747730,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0533",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah bien c'est ça c'est la moitié plus une"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0533"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1047",
+          "begin": 1747730,
+          "end": 1750280,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0533",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "la moitié des voix plus une qui remporte"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0533"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1048",
+          "begin": 1750280,
+          "end": 1751265,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0534",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors là c'est c'est"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0534"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1049",
+          "begin": 1750280,
+          "end": 1751265,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0534",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est normal"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0534"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1050",
+          "begin": 1751265,
+          "end": 1752559,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0535",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh ça a toujours existé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0535"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1051",
+          "begin": 1753216,
+          "end": 1754394,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0535",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui ça c'est normal"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0535"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1052",
+          "begin": 1755901,
+          "end": 1756481,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0535",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est normal"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0535"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1053",
+          "begin": 1757678,
+          "end": 1760189,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0536",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "on dit toujours la droite la gauche mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0536"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1054",
+          "begin": 1760189,
+          "end": 1762951,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0536",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quelle est la différence entre la droite et la gauche ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0536"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1055",
+          "begin": 1762951,
+          "end": 1764713,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0537",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0537"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1056",
+          "begin": 1762951,
+          "end": 1764713,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0537",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous pouvez dire grossièrement ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0537"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1057",
+          "begin": 1764713,
+          "end": 1767170,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0538",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui tout de même ça il y a une grosse marche"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0538"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1058",
+          "begin": 1767170,
+          "end": 1768986,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0538",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et euh avant il y avait le centre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0538"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1059",
+          "begin": 1768986,
+          "end": 1772216,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0538",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh la la quatrième république était vraiment au centre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0538"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1060",
+          "begin": 1772216,
+          "end": 1776199,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0538",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors évidemment la gauche n'est-ce pas on s'en va vers la Russie et la droite"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0538"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1061",
+          "begin": 1776991,
+          "end": 1779077,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0538",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "dans le temps nous avions euh les royalistes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0538"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1062",
+          "begin": 1779077,
+          "end": 1779309,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0539",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0539"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1063",
+          "begin": 1779970,
+          "end": 1780244,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0540",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0540"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1064",
+          "begin": 1780940,
+          "end": 1782451,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0540",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors maintenant évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0540"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1065",
+          "begin": 1784019,
+          "end": 1786531,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0540",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on penche un peu un peu sur la droite"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0540"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1066",
+          "begin": 1786531,
+          "end": 1787114,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0541",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0541"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1067",
+          "begin": 1788293,
+          "end": 1789919,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0541",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est la façon dont vous pourriez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0541"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1068",
+          "begin": 1789919,
+          "end": 1792160,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0541",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pourriez définir la droite la gauche est-ce que vous pourriez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0541"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1069",
+          "begin": 1792160,
+          "end": 1794536,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0542",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui bien évidemment on a toujours dit la droite le"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0542"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1070",
+          "begin": 1794536,
+          "end": 1795231,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0543",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "capital"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0543"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1071",
+          "begin": 1794536,
+          "end": 1795231,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0543",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0543"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1072",
+          "begin": 1795231,
+          "end": 1797899,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0543",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "la gauche l'ouvrier euh parti communiste"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0543"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1073",
+          "begin": 1795231,
+          "end": 1797899,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0543",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0543"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1074",
+          "begin": 1797899,
+          "end": 1799056,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0544",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "bof"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0544"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1075",
+          "begin": 1799056,
+          "end": 1800489,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0545",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en exagérant quoi hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0545"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1076",
+          "begin": 1799056,
+          "end": 1800489,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0545",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0545"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1077",
+          "begin": 1802038,
+          "end": 1807466,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0546",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous trouvez que les différences entre les milieux entre les classes sociales sont très marquées à Orléans ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0546"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1078",
+          "begin": 1809784,
+          "end": 1810132,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1079",
+          "begin": 1810831,
+          "end": 1811469,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1080",
+          "begin": 1811469,
+          "end": 1813057,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "la bourgeoisie"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1081",
+          "begin": 1813057,
+          "end": 1816001,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "Orléans était une ville très bourgeoise y a longtemps"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1082",
+          "begin": 1816615,
+          "end": 1819184,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "aujourd'hui y a plus de bourgeois ils sont tous malheureux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1083",
+          "begin": 1819957,
+          "end": 1824697,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh depuis les lois sociales euh les allocations euh les assurances sociales"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1084",
+          "begin": 1824697,
+          "end": 1826420,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "toute la bourgeoisie euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1085",
+          "begin": 1826420,
+          "end": 1827367,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "n'existe plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1086",
+          "begin": 1827367,
+          "end": 1829109,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors maintenant tout le monde travaille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1087",
+          "begin": 1829109,
+          "end": 1830592,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "tout le monde est dans le commerce"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1088",
+          "begin": 1830592,
+          "end": 1832119,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors il y a moins de paliers"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1089",
+          "begin": 1832119,
+          "end": 1837290,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment y a l'ingénieur y a le commerçant y a le petit artisan et y a l'ouvrier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1090",
+          "begin": 1837290,
+          "end": 1839647,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais tout de même y a pas ça ne choque pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1091",
+          "begin": 1840492,
+          "end": 1841181,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0547",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "comme dans le temps"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0547"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1092",
+          "begin": 1841912,
+          "end": 1842145,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0548",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0548"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1093",
+          "begin": 1842145,
+          "end": 1844115,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0549",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "dans le temps y avait vraiment le bourgeois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0549"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1094",
+          "begin": 1844115,
+          "end": 1845190,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0549",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et puis le petit ouvrier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0549"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1095",
+          "begin": 1846188,
+          "end": 1846953,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0549",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le serviteur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0549"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1096",
+          "begin": 1847833,
+          "end": 1851577,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0550",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que quand même vous pensez qu'on peut reconnaître les différentes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0550"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1097",
+          "begin": 1852193,
+          "end": 1852442,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0551",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0551"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1098",
+          "begin": 1852442,
+          "end": 1853268,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0552",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "catégories ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0552"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1099",
+          "begin": 1853268,
+          "end": 1854492,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0553",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui tout de même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1100",
+          "begin": 1854492,
+          "end": 1856768,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0553",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à tous poi- à beaucoup de points de vue"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1101",
+          "begin": 1856768,
+          "end": 1859236,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0553",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "n'est-ce pas on reconnaîtra tout de même un commerçant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1102",
+          "begin": 1860081,
+          "end": 1861668,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0553",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh ou un industriel"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1103",
+          "begin": 1861668,
+          "end": 1863504,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0553",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "avec un simple employé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1104",
+          "begin": 1863504,
+          "end": 1864537,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0553",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "si on le reconnaît"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0553"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1105",
+          "begin": 1864537,
+          "end": 1864942,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0554",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "comment ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0554"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1106",
+          "begin": 1864942,
+          "end": 1865726,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0555",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à beaucoup de choses"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0555"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1107",
+          "begin": 1866377,
+          "end": 1867566,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0555",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "rien qu'à sa tenue"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0555"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1108",
+          "begin": 1867566,
+          "end": 1868618,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0555",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à son maintien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0555"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1109",
+          "begin": 1869460,
+          "end": 1869942,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0556",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0556"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1110",
+          "begin": 1869942,
+          "end": 1871131,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0557",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à son langage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0557"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1111",
+          "begin": 1871131,
+          "end": 1871667,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0558",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0558"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1112",
+          "begin": 1871667,
+          "end": 1872856,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0559",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "la conversation quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0559"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1113",
+          "begin": 1872856,
+          "end": 1873392,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0560",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0560"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1114",
+          "begin": 1874964,
+          "end": 1875293,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0560",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0560"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1115",
+          "begin": 1881416,
+          "end": 1882009,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0561",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0561"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1116",
+          "begin": 1882009,
+          "end": 1883042,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0561",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0561"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1117",
+          "begin": 1883753,
+          "end": 1885857,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0561",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "là je fais on va passer à des"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0561"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1118",
+          "begin": 1885857,
+          "end": 1886702,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0561",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "des questions"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0561"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1119",
+          "begin": 1888022,
+          "end": 1893663,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0561",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qui sont un peu plus précises y en a certaines qui vont peut-être vous paraître vous faire rire un peu vous paraître un peu bête"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0561"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1120",
+          "begin": 1893663,
+          "end": 1894792,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0562",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0562"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1121",
+          "begin": 1893663,
+          "end": 1894792,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0562",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais enfin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0562"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1122",
+          "begin": 1894792,
+          "end": 1895828,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0563",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "par exemple en"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1123",
+          "begin": 1895828,
+          "end": 1897530,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0563",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "en je vais vous demander"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1124",
+          "begin": 1898640,
+          "end": 1899275,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0563",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1125",
+          "begin": 1899910,
+          "end": 1901520,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0563",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "comment est-ce que vous vous y"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1126",
+          "begin": 1901520,
+          "end": 1902629,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0563",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "prendriez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1127",
+          "begin": 1902629,
+          "end": 1903719,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0563",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pour faire une omelette ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0563"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1128",
+          "begin": 1905039,
+          "end": 1909479,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0564",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ça c'est pas mal ah non ça m'arrive"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0564"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1129",
+          "begin": 1905039,
+          "end": 1909479,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0564",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous pouvez me me décrire ça ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0564"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1130",
+          "begin": 1909479,
+          "end": 1911832,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0565",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh comme euh ben c'est pas du- euh c'est pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0565"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1131",
+          "begin": 1911832,
+          "end": 1916292,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0565",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je mets évidemment un peu de beurre même maintenant avec la poêle Tefal j'ai plus besoin de beurre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0565"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1132",
+          "begin": 1916292,
+          "end": 1916581,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0566",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0566"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1133",
+          "begin": 1916581,
+          "end": 1916910,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0567",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh je"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0567"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1134",
+          "begin": 1916910,
+          "end": 1919094,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0567",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je casse mes oeufs dans un bol"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0567"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1135",
+          "begin": 1919094,
+          "end": 1920188,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0567",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et puis alors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0567"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1136",
+          "begin": 1920188,
+          "end": 1922334,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0567",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un peu de euh de beurre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0567"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1137",
+          "begin": 1922334,
+          "end": 1923758,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0568",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et je mets mes oeufs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0568"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1138",
+          "begin": 1922334,
+          "end": 1923758,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0568",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0568"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1139",
+          "begin": 1924489,
+          "end": 1928853,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0569",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à cuire pour mon omelette quoi je les bats euh dans mon bol d'abord euh si je fais des une omelette"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0569"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1140",
+          "begin": 1928853,
+          "end": 1930062,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0570",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0570"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1141",
+          "begin": 1928853,
+          "end": 1930062,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0570",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et je la mets dans la poêle"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0570"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1142",
+          "begin": 1930062,
+          "end": 1933279,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0571",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un peu de poivre et de sel et puis ça y est un peu de persil"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0571"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1143",
+          "begin": 1934488,
+          "end": 1935677,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0571",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "voilà pour mon omelette"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0571"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1144",
+          "begin": 1935677,
+          "end": 1936022,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0572",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "bon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0572"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1145",
+          "begin": 1936022,
+          "end": 1940329,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0573",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben je suis forcé de faire ma cuisine des fois je rentre huit jours de vacances plus tôt que ma femme"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0573"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1146",
+          "begin": 1940329,
+          "end": 1942761,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0573",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors pendant huit jours ben je fais mon petit frichti moi-même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0573"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1147",
+          "begin": 1944521,
+          "end": 1945232,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0575",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "bon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0575"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1148",
+          "begin": 1945232,
+          "end": 1947087,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0575",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0575"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1149",
+          "begin": 1947087,
+          "end": 1948981,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0575",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que chez vous vous avez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0575"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1150",
+          "begin": 1948981,
+          "end": 1951050,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0575",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh un dictionnaire par exemple ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0575"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1151",
+          "begin": 1951050,
+          "end": 1954167,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0576",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui ça j'ai toujours euh mon dictionnaire c'était les"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0576"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1152",
+          "begin": 1954167,
+          "end": 1956347,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0576",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "les mots-croisés c'était mon dada étant jeune"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0576"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1153",
+          "begin": 1956347,
+          "end": 1956825,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0577",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0577"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1154",
+          "begin": 1956825,
+          "end": 1959235,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0577",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ben je vais vous demander ça un peu plus tard justement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0577"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1155",
+          "begin": 1959235,
+          "end": 1963408,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0577",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et euh vous savez des des genre encyclopédie des"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0577"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1156",
+          "begin": 1963408,
+          "end": 1966176,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0578",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui j'aime beaucoup aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0578"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1157",
+          "begin": 1963408,
+          "end": 1966176,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0578",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "des choses comme ça ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0578"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1158",
+          "begin": 1966176,
+          "end": 1968934,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0579",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "l'histoire ancienne mais malgré tout j'ai pas assez de temps"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0579"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1159",
+          "begin": 1968934,
+          "end": 1971118,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0580",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour m'en occuper mais dès que j'ai le temps"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0580"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1160",
+          "begin": 1968934,
+          "end": 1971118,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0580",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0580"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1161",
+          "begin": 1971118,
+          "end": 1972786,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0581",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh la preuve j'ai un guide"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0581"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1162",
+          "begin": 1972786,
+          "end": 1975677,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0582",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais je veux dire est-ce que chez vous vous en po- vous en possédez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0582"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1163",
+          "begin": 1972786,
+          "end": 1975677,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0582",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0582"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1164",
+          "begin": 1975677,
+          "end": 1976423,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0583",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous avez des"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0583"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1165",
+          "begin": 1976423,
+          "end": 1976844,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0584",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0584"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1166",
+          "begin": 1976844,
+          "end": 1982604,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0585",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "des guides des encyclo- oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0585"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1167",
+          "begin": 1976844,
+          "end": 1982604,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0585",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "des des choses anciennes oh oui oui oui voyez le le cadeau de mon anci- de mon patron il m'a demandé ce que je préférais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0585"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1168",
+          "begin": 1982604,
+          "end": 1983889,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0586",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "du premier de l'an il est là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0586"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1169",
+          "begin": 1983889,
+          "end": 1984099,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0587",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0587"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1170",
+          "begin": 1984099,
+          "end": 1987848,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0588",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est le guide de l'Orléanais rien que des choses historiques des petites histoires"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0588"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1171",
+          "begin": 1987848,
+          "end": 1988445,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0589",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0589"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1172",
+          "begin": 1988445,
+          "end": 1990036,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0590",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'aime beaucoup ces choses-là le voilà"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0590"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1173",
+          "begin": 1990036,
+          "end": 1990457,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0591",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0591"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1174",
+          "begin": 1990457,
+          "end": 1991188,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0592",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est le guide du Val de Loire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0592"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1175",
+          "begin": 1991188,
+          "end": 1991880,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0593",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0593"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1176",
+          "begin": 1991880,
+          "end": 1995020,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0593",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah oui c'est c'est bien je connais cette collection c'est formidable"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0593"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1177",
+          "begin": 1995020,
+          "end": 1996951,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0593",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et chez vous euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0593"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1178",
+          "begin": 1996951,
+          "end": 1999036,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0593",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quel est le dictionnaire que vous avez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0593"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1179",
+          "begin": 1999036,
+          "end": 2001220,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0594",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben alors nous avons tous les Larousse forcément"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0594"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1180",
+          "begin": 2001220,
+          "end": 2002065,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0595",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "tous les Larousse ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0595"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1181",
+          "begin": 2002065,
+          "end": 2002486,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0596",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0596"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1182",
+          "begin": 2002486,
+          "end": 2005492,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0597",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah tous les Larousse non pas pas les huit volumes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0597"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1183",
+          "begin": 2002486,
+          "end": 2005492,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0597",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "enfin le Lar- le"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0597"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1184",
+          "begin": 2005492,
+          "end": 2005894,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0598",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0598"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1185",
+          "begin": 2005894,
+          "end": 2009875,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0599",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh non le gros et le petit et puis le le"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0599"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1186",
+          "begin": 2005894,
+          "end": 2009875,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0599",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "troisième"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0599"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1187",
+          "begin": 2009875,
+          "end": 2010354,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0599",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0599"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1188",
+          "begin": 2010354,
+          "end": 2011716,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0599",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'avais même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0599"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1189",
+          "begin": 2011716,
+          "end": 2012963,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0599",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'en ai donné"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0599"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1190",
+          "begin": 2012963,
+          "end": 2016971,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0600",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un à mon frère"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0600"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1191",
+          "begin": 2012963,
+          "end": 2016971,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0600",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'avais le Simon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0600"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1192",
+          "begin": 2012963,
+          "end": 2016971,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0600",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous avez donc plusieurs volumes de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0600"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1193",
+          "begin": 2016971,
+          "end": 2017376,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0601",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0601"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1194",
+          "begin": 2017376,
+          "end": 2020857,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0602",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'avais un autre euh le dictionnaire le Simon que j'ai donné à mon plus jeune frère"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0602"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1195",
+          "begin": 2020857,
+          "end": 2021129,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0603",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0603"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1196",
+          "begin": 2021129,
+          "end": 2024766,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0604",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et l'autre euh le Littré un vieux Littré que j'ai donné à mon frère aîné"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0604"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1197",
+          "begin": 2024766,
+          "end": 2027520,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0604",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce qu'on faisait tous les trois des mots-croisés à cette époque-là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0604"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1198",
+          "begin": 2027520,
+          "end": 2028327,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0605",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0605"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1199",
+          "begin": 2028327,
+          "end": 2029363,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0606",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "les trois frères"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0606"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1200",
+          "begin": 2029363,
+          "end": 2035505,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0607",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "donc vous avez vous êtes riche en dictionnaires vous avez vous avez même plusieurs volumes euh chez vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0607"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1201",
+          "begin": 2029363,
+          "end": 2035505,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0607",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et on s'échangeait oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0607"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1202",
+          "begin": 2029363,
+          "end": 2035505,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0607",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'était de fami- de famille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0607"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1203",
+          "begin": 2035505,
+          "end": 2035945,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0608",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0608"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1204",
+          "begin": 2036940,
+          "end": 2038053,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0609",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "do- et euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0609"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1205",
+          "begin": 2038917,
+          "end": 2040371,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0609",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous les avez depuis quand ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0609"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1206",
+          "begin": 2041293,
+          "end": 2044835,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0610",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "depuis longtemps vous les avez toujours"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0610"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1207",
+          "begin": 2041293,
+          "end": 2044835,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0610",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui ces dictionnaires-là c'est d'enfance"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0610"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1208",
+          "begin": 2044835,
+          "end": 2046560,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0611",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh le le vieux Larousse"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0611"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1209",
+          "begin": 2044835,
+          "end": 2046560,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0611",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "d'enfance"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0611"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1210",
+          "begin": 2046560,
+          "end": 2048481,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0612",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il est de mille neuf cent cinq il est avant moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0612"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1211",
+          "begin": 2048481,
+          "end": 2051030,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0612",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh c'est hm hein le premier Larousse"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0612"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1212",
+          "begin": 2051030,
+          "end": 2054285,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0613",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous vous souvenez comm- quand vous les avez eus enfin euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0613"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1213",
+          "begin": 2051030,
+          "end": 2054285,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0613",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'était"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0613"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1214",
+          "begin": 2054285,
+          "end": 2055639,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0614",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben oui c'est d'héritage quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0614"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1215",
+          "begin": 2055639,
+          "end": 2056542,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0615",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "d'héritage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0615"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1216",
+          "begin": 2056542,
+          "end": 2056928,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0616",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0616"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1217",
+          "begin": 2056928,
+          "end": 2057483,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0617",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0617"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1218",
+          "begin": 2057483,
+          "end": 2059483,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0617",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et est-ce que vous en avez acheté depuis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0617"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1219",
+          "begin": 2059483,
+          "end": 2059594,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0617",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0617"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1220",
+          "begin": 2059594,
+          "end": 2060313,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0618",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0618"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1221",
+          "begin": 2060313,
+          "end": 2060858,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0619",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vos dictionnaires ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0619"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1222",
+          "begin": 2060858,
+          "end": 2061325,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0620",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0620"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1223",
+          "begin": 2061325,
+          "end": 2063898,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0620",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment les mots usuels euh les mots de maintenant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0620"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1224",
+          "begin": 2063898,
+          "end": 2066857,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0620",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh nous les avions pas alors euh on a racheté"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0620"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1225",
+          "begin": 2066857,
+          "end": 2068615,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0620",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "deux deux dictionnaires toi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0620"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1226",
+          "begin": 2068615,
+          "end": 2069681,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0621",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "même trois même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0621"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1227",
+          "begin": 2068615,
+          "end": 2069681,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0621",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0621"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1228",
+          "begin": 2069681,
+          "end": 2070183,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0622",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0622"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1229",
+          "begin": 2070705,
+          "end": 2071033,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0623",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0623"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1230",
+          "begin": 2071033,
+          "end": 2072521,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0624",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh vous les avez achetés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0624"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1231",
+          "begin": 2072521,
+          "end": 2073607,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0624",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "comment dans un magasin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0624"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1232",
+          "begin": 2073607,
+          "end": 2076045,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0625",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "un représentant ? en librairie"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0625"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1233",
+          "begin": 2073607,
+          "end": 2076045,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0625",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ben en librairie à la librairie hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0625"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1234",
+          "begin": 2077884,
+          "end": 2079395,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0626",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce qui s'en sert le plus souvent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0626"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1235",
+          "begin": 2079395,
+          "end": 2080210,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0626",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "dans la famille ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0626"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1236",
+          "begin": 2080963,
+          "end": 2082393,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0627",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ben et euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0627"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1237",
+          "begin": 2080963,
+          "end": 2082393,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0627",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "des dictionnaires"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0627"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1238",
+          "begin": 2082393,
+          "end": 2083324,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0628",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0628"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1239",
+          "begin": 2083324,
+          "end": 2087902,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0628",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh il y a encore seulement vingt ans j'avais toujours le dictionnaire sur le coin de la table par rapport à ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0628"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1240",
+          "begin": 2087902,
+          "end": 2089142,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0628",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour mes mots-croisés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0628"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1241",
+          "begin": 2089142,
+          "end": 2089451,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0629",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0629"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1242",
+          "begin": 2089451,
+          "end": 2092291,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0630",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais alors depuis que je suis marié j'ai pas le temps et puis j'embarrasse la table"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0630"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1243",
+          "begin": 2092291,
+          "end": 2093222,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0631",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je me ferais disputer"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0631"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1244",
+          "begin": 2092291,
+          "end": 2093222,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0631",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0631"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1245",
+          "begin": 2093222,
+          "end": 2095250,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0632",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors maintenant ils sont sur le bureau de mon fils"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0632"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1246",
+          "begin": 2095250,
+          "end": 2097317,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0633",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et c'est qu'est-ce qui s'en sert le plus souvent votre fils"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0633"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1247",
+          "begin": 2097317,
+          "end": 2099214,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0634",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui oui oui oui oui malgré tout euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0634"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1248",
+          "begin": 2097317,
+          "end": 2099214,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0634",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous votre femme ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0634"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1249",
+          "begin": 2099214,
+          "end": 2102077,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0635",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh le midi aux jeux souvent on va chercher le dictionnaire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0635"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1250",
+          "begin": 2102077,
+          "end": 2102409,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0636",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0636"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1251",
+          "begin": 2102409,
+          "end": 2105693,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0637",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ou pour un mot ou euh radiophonique ou pour les jeux radiophoniques"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0637"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1252",
+          "begin": 2105693,
+          "end": 2106408,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0637",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0637"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1253",
+          "begin": 2107281,
+          "end": 2107687,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0638",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0638"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1254",
+          "begin": 2109120,
+          "end": 2111767,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0638",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et vous par exemple approximativement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0638"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1255",
+          "begin": 2111767,
+          "end": 2112447,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0638",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0638"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1256",
+          "begin": 2112447,
+          "end": 2114035,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0638",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "combien de fois euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0638"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1257",
+          "begin": 2114035,
+          "end": 2119409,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0638",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quelle est la fréquence avec laquelle vous regardez le dictionnaire c'est-à-dire une fois par mois une fois par an une fois par euh ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0638"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1258",
+          "begin": 2120475,
+          "end": 2122739,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0639",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0639"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1259",
+          "begin": 2120475,
+          "end": 2122739,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0639",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à p- a peu près en gros quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0639"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1260",
+          "begin": 2122739,
+          "end": 2125544,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0640",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ça je sais pas euh moi personnellement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0640"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1261",
+          "begin": 2125544,
+          "end": 2128774,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0640",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh c'est je regarde qu'une fois de par ci par là quoi peut-être deux ou trois fois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0640"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1262",
+          "begin": 2128774,
+          "end": 2130381,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0641",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "par mois c'est tout oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0641"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1263",
+          "begin": 2128774,
+          "end": 2130381,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0641",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0641"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1264",
+          "begin": 2130903,
+          "end": 2132984,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0642",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais évidemment toi c'est pas pareil"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0642"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1265",
+          "begin": 2133824,
+          "end": 2135045,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0643",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "par exemple est-ce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0643"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1266",
+          "begin": 2135045,
+          "end": 2136536,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0643",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous pouvez vous souvenir"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0643"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1267",
+          "begin": 2136536,
+          "end": 2138951,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0643",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de la dernière fois ou vous l'av- ou vous l'avez regardé ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0643"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1268",
+          "begin": 2138951,
+          "end": 2140635,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0644",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben c'est ça c'est la semaine dernière"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0644"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1269",
+          "begin": 2140635,
+          "end": 2141930,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0645",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "la semaine dernière"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0645"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1270",
+          "begin": 2140635,
+          "end": 2141930,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0645",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'on a"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0645"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1271",
+          "begin": 2141930,
+          "end": 2143402,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0646",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0646"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1272",
+          "begin": 2141930,
+          "end": 2143402,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0646",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0646"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1273",
+          "begin": 2143402,
+          "end": 2144970,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0647",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et qu'est-ce que vous cherchez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0647"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1274",
+          "begin": 2145473,
+          "end": 2146566,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0648",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "dans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0648"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1275",
+          "begin": 2145473,
+          "end": 2146566,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0648",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "dans un dictionnaire ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0648"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1276",
+          "begin": 2146566,
+          "end": 2148366,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0649",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "eh bien c'est"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0649"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1277",
+          "begin": 2148366,
+          "end": 2150916,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0649",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh comme là une île une île"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0649"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1278",
+          "begin": 2150916,
+          "end": 2152017,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0649",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0649"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1279",
+          "begin": 2152017,
+          "end": 2154658,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0649",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "du Pacifique ou quelque chose comme ça on a cherché tout de suite voir"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0649"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1280",
+          "begin": 2154658,
+          "end": 2156189,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0650",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "avant que le"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0650"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1281",
+          "begin": 2154658,
+          "end": 2156189,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0650",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0650"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1282",
+          "begin": 2156189,
+          "end": 2157696,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0651",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "candidat réponde"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0651"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1283",
+          "begin": 2157696,
+          "end": 2159956,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0652",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "n'est-ce pas nous avons cherché pour voir"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0652"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1284",
+          "begin": 2157696,
+          "end": 2159956,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0652",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0652"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1285",
+          "begin": 2159956,
+          "end": 2161308,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0653",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "au jeu des mille francs là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0653"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1286",
+          "begin": 2161308,
+          "end": 2161714,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0653",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0653"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1287",
+          "begin": 2161714,
+          "end": 2167551,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0654",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et le plus souvent quel genre de choses vous regardez ? l'orthographe le sens des mots des renseignements d'histoire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0654"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1288",
+          "begin": 2167551,
+          "end": 2170178,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0655",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de géographie ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0655"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1289",
+          "begin": 2167551,
+          "end": 2170178,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0655",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui des renseignements en histoire et géographie oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0655"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1290",
+          "begin": 2170178,
+          "end": 2170449,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0656",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0656"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1291",
+          "begin": 2170449,
+          "end": 2174871,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0657",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh euh pour l'orthographe euh c'est rare parce que maintenant mon fils est assez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0657"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1292",
+          "begin": 2174871,
+          "end": 2175764,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0657",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "si euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0657"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1293",
+          "begin": 2175764,
+          "end": 2179916,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0657",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je fais une faute je lui demande comment je dois écrire pour les lettres de premier de l'an ou n'importe des correspondances"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0657"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1294",
+          "begin": 2179916,
+          "end": 2180283,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0657",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0657"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1295",
+          "begin": 2180283,
+          "end": 2180940,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0658",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0658"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1296",
+          "begin": 2180940,
+          "end": 2184842,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0659",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous avez un livre euh ou vous possédez des livres s-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0659"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1297",
+          "begin": 2184842,
+          "end": 2185982,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0659",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à la chez vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0659"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1298",
+          "begin": 2185982,
+          "end": 2186913,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0660",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "sur euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0660"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1299",
+          "begin": 2185982,
+          "end": 2186913,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0660",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0660"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1300",
+          "begin": 2186913,
+          "end": 2189386,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0661",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "l'art d'éc- d'écrire ou de parler"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0661"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1301",
+          "begin": 2189386,
+          "end": 2191631,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0662",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ou de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0662"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1302",
+          "begin": 2189386,
+          "end": 2191631,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0662",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ou de choses comme ça ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0662"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1303",
+          "begin": 2189386,
+          "end": 2191631,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0662",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non non non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0662"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1304",
+          "begin": 2193624,
+          "end": 2193818,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0663",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0663"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1305",
+          "begin": 2195000,
+          "end": 2195773,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0664",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pourquoi ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0664"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1306",
+          "begin": 2195773,
+          "end": 2196569,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0664",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous trou-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0664"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1307",
+          "begin": 2196569,
+          "end": 2197210,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0665",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0665"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1308",
+          "begin": 2197210,
+          "end": 2199007,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0666",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous pensez que c'est utile ou ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0666"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1309",
+          "begin": 2199007,
+          "end": 2201213,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0667",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm non moi je trouve euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0667"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1310",
+          "begin": 2201213,
+          "end": 2205428,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0667",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je regardais des choses comme ça ça me m'éclairais pas beaucoup les manières de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0667"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1311",
+          "begin": 2205428,
+          "end": 2207866,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0667",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de formules euh les manières de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0667"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1312",
+          "begin": 2207866,
+          "end": 2212042,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0667",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "d'envoyer des voeux de bonne année ou des choses comme ça je trouvais ça ridicule"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0667"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1313",
+          "begin": 2212042,
+          "end": 2212486,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0667",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0667"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1314",
+          "begin": 2212486,
+          "end": 2213452,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0668",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ou- oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0668"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1315",
+          "begin": 2213452,
+          "end": 2213897,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0669",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0669"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1316",
+          "begin": 2213897,
+          "end": 2214538,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0669",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'ai euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0669"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1317",
+          "begin": 2215813,
+          "end": 2218769,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0670",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "alors vous m'avez dit que vous f- vous faisiez beaucoup de mots-croisés ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0670"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1318",
+          "begin": 2218769,
+          "end": 2219294,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0671",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0671"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1319",
+          "begin": 2219294,
+          "end": 2220473,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0671",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il y a plus de vingt ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0671"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1320",
+          "begin": 2220473,
+          "end": 2222466,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0672",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et maintenant ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0672"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1321",
+          "begin": 2220473,
+          "end": 2222466,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0672",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors depuis non j'ai pas le temps du tout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0672"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1322",
+          "begin": 2222466,
+          "end": 2223065,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0673",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "plus du tout ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0673"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1323",
+          "begin": 2223065,
+          "end": 2223394,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0674",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1324",
+          "begin": 2224441,
+          "end": 2226357,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0674",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et malgré tout ça me plairait vous savez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1325",
+          "begin": 2226357,
+          "end": 2227787,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0674",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que euh nou-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1326",
+          "begin": 2228641,
+          "end": 2232585,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0674",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh y a beaucoup de journaux qui sont commencés en vacances euh je"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1327",
+          "begin": 2232585,
+          "end": 2232991,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0674",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1328",
+          "begin": 2232991,
+          "end": 2235303,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0674",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et je jette de temps en temps un coup d'oeil tout de même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0674"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1329",
+          "begin": 2235303,
+          "end": 2235950,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0675",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quand même oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0675"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1330",
+          "begin": 2235950,
+          "end": 2238292,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0676",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui oui oui euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0676"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1331",
+          "begin": 2235950,
+          "end": 2238292,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0676",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "je vais mettre oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0676"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1332",
+          "begin": 2238292,
+          "end": 2239745,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0677",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh sans écrire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0677"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1333",
+          "begin": 2239745,
+          "end": 2241449,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0678",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'aime bien deviner les mots"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0678"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1334",
+          "begin": 2239745,
+          "end": 2241449,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0678",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0678"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1335",
+          "begin": 2241449,
+          "end": 2243056,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0678",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0678"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1336",
+          "begin": 2241449,
+          "end": 2243056,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0678",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0678"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1337",
+          "begin": 2245084,
+          "end": 2251111,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0679",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que vous pensez de ce qu'on appelle le franglais c'est-à-dire d'employer des mots comme snack-bar euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0679"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1338",
+          "begin": 2251111,
+          "end": 2253796,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0680",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui oh ben ça euh moi je ne connais pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0680"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1339",
+          "begin": 2251111,
+          "end": 2253796,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0680",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "en français des choses comme ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0680"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1340",
+          "begin": 2253796,
+          "end": 2254839,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0681",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "du tout l'anglais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0681"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1341",
+          "begin": 2254839,
+          "end": 2257089,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0681",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors là ça me paralyse complètement l'histoire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0681"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1342",
+          "begin": 2257089,
+          "end": 2259997,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0681",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que quand je vois les choses ou alors pour les vêtements"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0681"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1343",
+          "begin": 2260696,
+          "end": 2261102,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0682",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0682"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1344",
+          "begin": 2261102,
+          "end": 2264660,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0683",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "puisque aujourd'hui presque tous les vêtements sont appelés comme ça euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0683"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1345",
+          "begin": 2264660,
+          "end": 2265162,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0684",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0684"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1346",
+          "begin": 2265162,
+          "end": 2267384,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0685",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh &chewing-short ou des je ne sais quoi moi alors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0685"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1347",
+          "begin": 2267384,
+          "end": 2267697,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0686",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0686"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1348",
+          "begin": 2267697,
+          "end": 2268879,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0687",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh déjà je le prononce très mal"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0687"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1349",
+          "begin": 2268879,
+          "end": 2269208,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0688",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0688"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1350",
+          "begin": 2269208,
+          "end": 2272302,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0689",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors euh ça c'est ça c'est de l'hébreu pour moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0689"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1351",
+          "begin": 2272302,
+          "end": 2272747,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0690",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0690"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1352",
+          "begin": 2272747,
+          "end": 2273214,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0691",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "zéro"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0691"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1353",
+          "begin": 2275243,
+          "end": 2275575,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0692",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0692"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1354",
+          "begin": 2275575,
+          "end": 2275749,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0693",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0693"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1355",
+          "begin": 2275749,
+          "end": 2277352,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0694",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "donc vous êtes vous êtes contre ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0694"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1356",
+          "begin": 2277352,
+          "end": 2278434,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0695",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0695"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1357",
+          "begin": 2278434,
+          "end": 2280717,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0696",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous êtes pour ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0696"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1358",
+          "begin": 2278434,
+          "end": 2280717,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0696",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "tout ça c'est pour mon manque d'instruction"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0696"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1359",
+          "begin": 2280717,
+          "end": 2282421,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0697",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mon fils l'apprend de l'anglais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0697"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1360",
+          "begin": 2282421,
+          "end": 2284781,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0697",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "lui ça euh ça lui fera rien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0697"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1361",
+          "begin": 2284781,
+          "end": 2285303,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0697",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "n'est-ce pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0697"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1362",
+          "begin": 2285303,
+          "end": 2285689,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0698",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "enfin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0698"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1363",
+          "begin": 2286114,
+          "end": 2288301,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0699",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est un moi c'est un manque de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0699"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1364",
+          "begin": 2286114,
+          "end": 2288301,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0699",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0699"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1365",
+          "begin": 2288301,
+          "end": 2289232,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0700",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "d'instruction"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0700"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1366",
+          "begin": 2290526,
+          "end": 2293968,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0701",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "si par exemple on vous demandait vous êtes pour contre ou indifférent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0701"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1367",
+          "begin": 2294490,
+          "end": 2296715,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0702",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est ce que vous diriez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0702"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1368",
+          "begin": 2294490,
+          "end": 2296715,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0702",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah si moi je ça me serait égal"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0702"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1369",
+          "begin": 2296715,
+          "end": 2298570,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0703",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça je serais indifférent complètement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0703"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1370",
+          "begin": 2298570,
+          "end": 2302688,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0703",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais euh je vous dis il faut arriver à un à un niveau d'instruction pour tout le monde"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0703"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1371",
+          "begin": 2303538,
+          "end": 2305122,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0703",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi jamais j'ai jamais fait d'anglais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0703"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1372",
+          "begin": 2305122,
+          "end": 2306281,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0703",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que à mon époque"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0703"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1373",
+          "begin": 2306996,
+          "end": 2309878,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0703",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on ne faisait pas d'anglais y avait que ceux qui poussaient les études"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0703"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1374",
+          "begin": 2309878,
+          "end": 2310593,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0704",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0704"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1375",
+          "begin": 2312432,
+          "end": 2313344,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0705",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0705"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1376",
+          "begin": 2313344,
+          "end": 2315782,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0705",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh selon vous y a des différences"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0705"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1377",
+          "begin": 2316462,
+          "end": 2320001,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0705",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "dans la façon de parler français se- selon les gens"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0705"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1378",
+          "begin": 2320001,
+          "end": 2320932,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0706",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "appartenant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0706"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1379",
+          "begin": 2320001,
+          "end": 2320932,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0706",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0706"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1380",
+          "begin": 2320932,
+          "end": 2322284,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0707",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à différents milieux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0707"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1381",
+          "begin": 2322284,
+          "end": 2323984,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0708",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "sociaux ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0708"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1382",
+          "begin": 2322284,
+          "end": 2323984,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0708",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui oui oui de beaucoup beaucoup"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0708"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1383",
+          "begin": 2323984,
+          "end": 2324390,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0709",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0709"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1384",
+          "begin": 2324390,
+          "end": 2324838,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0710",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "beaucoup beaucoup ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0710"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1385",
+          "begin": 2324838,
+          "end": 2328412,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mon fils mon mon fils me reproche euh énormément"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1386",
+          "begin": 2328412,
+          "end": 2330521,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mon mauvais langage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1387",
+          "begin": 2330521,
+          "end": 2333399,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et et ce qui lui fait faire des fautes aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1388",
+          "begin": 2333399,
+          "end": 2334307,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en français"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1389",
+          "begin": 2335331,
+          "end": 2336200,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "n'est-ce pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1390",
+          "begin": 2336200,
+          "end": 2337379,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1391",
+          "begin": 2337379,
+          "end": 2339025,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh nos parents"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1392",
+          "begin": 2339025,
+          "end": 2340787,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "étaient de la campagne"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1393",
+          "begin": 2340787,
+          "end": 2342954,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et euh moi j'ai continué moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1394",
+          "begin": 2343553,
+          "end": 2344449,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et mes frères quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1395",
+          "begin": 2344449,
+          "end": 2348529,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh nous avons continué à causer comme on nous a montré tout petit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1396",
+          "begin": 2348529,
+          "end": 2351334,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh et alors on fait des fautes de langage énormément quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1397",
+          "begin": 2351334,
+          "end": 2354467,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "puisque euh tout ça nous étions pas de famille euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1398",
+          "begin": 2354467,
+          "end": 2355317,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0711",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "d'intellectuels"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0711"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1399",
+          "begin": 2356321,
+          "end": 2358060,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0712",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et donc alors sur vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0712"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1400",
+          "begin": 2358060,
+          "end": 2360478,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0712",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "d'après vous les différences de langage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0712"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1401",
+          "begin": 2360478,
+          "end": 2360749,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0713",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0713"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1402",
+          "begin": 2360749,
+          "end": 2364983,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0714",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "entre les les différents milieux sociaux ça porte surtout sur euh ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0714"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1403",
+          "begin": 2364983,
+          "end": 2368263,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0715",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "sur euh ce sera oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0715"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1404",
+          "begin": 2364983,
+          "end": 2368263,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0715",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "la famille euh ce c'est c'est ça c'est c'est euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0715"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1405",
+          "begin": 2368263,
+          "end": 2370079,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0716",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le coup du berceau de la famille quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0716"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1406",
+          "begin": 2370079,
+          "end": 2371319,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0716",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh c'est"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0716"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1407",
+          "begin": 2371319,
+          "end": 2374603,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0716",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "une famille intellectuelle ou une famille qui a eu de l'instruction"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0716"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1408",
+          "begin": 2374603,
+          "end": 2376616,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0716",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "cause euh s'exprime mieux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0716"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1409",
+          "begin": 2376616,
+          "end": 2378334,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0716",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et les enfants pareils"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0716"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1410",
+          "begin": 2378334,
+          "end": 2379246,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0717",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0717"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1411",
+          "begin": 2379246,
+          "end": 2381722,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0718",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui tandis que moi il se trouve handicapé par rapport à ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0718"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1412",
+          "begin": 2381722,
+          "end": 2381973,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0719",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0719"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1413",
+          "begin": 2381973,
+          "end": 2384233,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0720",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "faut qu'il redresse nos fautes de langage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0720"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1414",
+          "begin": 2384233,
+          "end": 2384678,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0721",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0721"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1415",
+          "begin": 2384678,
+          "end": 2386725,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0722",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et nous on peut pas en remédier maintenant il est trop tard"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0722"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1416",
+          "begin": 2388158,
+          "end": 2392176,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0723",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et selon vous est-ce que les gens parlent le français maintenant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0723"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1417",
+          "begin": 2392176,
+          "end": 2396387,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0723",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de mieux en mieux de plus en plus mal ou sans changement ça reste ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0723"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1418",
+          "begin": 2396387,
+          "end": 2399149,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0724",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh si tout de même je crois que si parce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1419",
+          "begin": 2399149,
+          "end": 2400656,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0724",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "dans le temps c'était affreux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1420",
+          "begin": 2400656,
+          "end": 2403036,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0724",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh en en campagne"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1421",
+          "begin": 2403036,
+          "end": 2405203,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0724",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le &coûtieau et tout ça quoi il y avait de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1422",
+          "begin": 2405203,
+          "end": 2406644,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0724",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de l'argot ou quoi de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1423",
+          "begin": 2406644,
+          "end": 2407811,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0724",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mauvais langage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0724"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1424",
+          "begin": 2407811,
+          "end": 2410732,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0725",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "dans toutes les régions toutes les provinces c'était p- pareil"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0725"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1425",
+          "begin": 2407811,
+          "end": 2410732,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0725",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0725"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1426",
+          "begin": 2410732,
+          "end": 2414000,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0726",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh non maintenant les gens s'expriment un peu mieux ça c'est sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0726"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1427",
+          "begin": 2414000,
+          "end": 2414425,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0727",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0727"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1428",
+          "begin": 2414425,
+          "end": 2414676,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0728",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0728"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1429",
+          "begin": 2414676,
+          "end": 2415777,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0729",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et de quoi ça vient ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0729"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1430",
+          "begin": 2417226,
+          "end": 2419467,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0730",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben tout de même de l'évolution du monde"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0730"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1431",
+          "begin": 2419467,
+          "end": 2422658,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0730",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "tout de même euh les gens sont de plus en plus instruits"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0730"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1432",
+          "begin": 2422658,
+          "end": 2425729,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0730",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on lit la radio d'abord qui aide beaucoup"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0730"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1433",
+          "begin": 2425729,
+          "end": 2426019,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0731",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0731"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1434",
+          "begin": 2426019,
+          "end": 2427854,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0732",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce qu'on s'exprime en grand français"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0732"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1435",
+          "begin": 2427854,
+          "end": 2428144,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0732",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0732"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1436",
+          "begin": 2428144,
+          "end": 2428438,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0733",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0733"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1437",
+          "begin": 2431050,
+          "end": 2434898,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0734",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "parmi les gens que v- parmi vos connaissances les gens que vous connaissez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0734"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1438",
+          "begin": 2434898,
+          "end": 2435250,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0735",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0735"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1439",
+          "begin": 2435250,
+          "end": 2435756,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0736",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0736"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1440",
+          "begin": 2435756,
+          "end": 2437649,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0736",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quelle est la personne qui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0736"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1441",
+          "begin": 2437649,
+          "end": 2440180,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0736",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "que vous voyez qui parlerait le mieux le français ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0736"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1442",
+          "begin": 2440180,
+          "end": 2440763,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0736",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "enfin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0736"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1443",
+          "begin": 2440763,
+          "end": 2441748,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0736",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "sa profession je vous demande"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0736"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1444",
+          "begin": 2441748,
+          "end": 2443352,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0737",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben rien que mon employeur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0737"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1445",
+          "begin": 2443352,
+          "end": 2445414,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0737",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi j'ai mon employeur qui est un ingénieur"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0737"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1446",
+          "begin": 2445414,
+          "end": 2445867,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0738",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0738"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1447",
+          "begin": 2445867,
+          "end": 2447030,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0739",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il s'exprime euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0739"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1448",
+          "begin": 2447030,
+          "end": 2448734,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0739",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "dans la perfection évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0739"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1449",
+          "begin": 2448734,
+          "end": 2449201,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0740",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0740"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1450",
+          "begin": 2449201,
+          "end": 2449395,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0741",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0741"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1451",
+          "begin": 2453030,
+          "end": 2454556,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0742",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que selon vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0742"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1452",
+          "begin": 2454556,
+          "end": 2457377,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0742",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "il existe en France un organisme"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0742"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1453",
+          "begin": 2457377,
+          "end": 2460742,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0742",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qui est chargé de décider si un mot ou une expression"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0742"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1454",
+          "begin": 2460742,
+          "end": 2462586,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0742",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "fait partie ou non du français ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0742"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1455",
+          "begin": 2463343,
+          "end": 2464579,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0743",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah bien c'est la"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0743"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1456",
+          "begin": 2465584,
+          "end": 2467887,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0743",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh c'est je si évidemment c'est euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0743"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1457",
+          "begin": 2467887,
+          "end": 2468953,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0743",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "bien l'Académie"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0743"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1458",
+          "begin": 2468953,
+          "end": 2469591,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0744",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0744"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1459",
+          "begin": 2469591,
+          "end": 2469981,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0745",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0745"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1460",
+          "begin": 2471565,
+          "end": 2473458,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0746",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous trouvez ça utile ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0746"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1461",
+          "begin": 2473458,
+          "end": 2474405,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0747",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0747"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1462",
+          "begin": 2474405,
+          "end": 2475143,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0748",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0748"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1463",
+          "begin": 2474405,
+          "end": 2475143,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0748",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0748"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1464",
+          "begin": 2475143,
+          "end": 2475997,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0749",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui oui oh oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0749"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1465",
+          "begin": 2475997,
+          "end": 2477990,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0750",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "très oh oui très utile"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0750"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1466",
+          "begin": 2475997,
+          "end": 2477990,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0750",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "très ut- très utile"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0750"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1467",
+          "begin": 2477990,
+          "end": 2483109,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0751",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ils nous ont introduit en plus dans le dictionnaire les mots nouveaux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0751"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1468",
+          "begin": 2483109,
+          "end": 2486779,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0751",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh comme électronique et tout ça euh aujourd'hui n'est-ce pas euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0751"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1469",
+          "begin": 2486779,
+          "end": 2488618,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0751",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh le Spoutnik"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0751"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1470",
+          "begin": 2486779,
+          "end": 2488618,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0751",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et tout ça euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0751"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1471",
+          "begin": 2488618,
+          "end": 2488796,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0752",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0752"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1472",
+          "begin": 2488796,
+          "end": 2489920,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0753",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on est forcé de suivre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0753"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1473",
+          "begin": 2490789,
+          "end": 2492103,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0753",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour l'évolution quoi on est forcé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0753"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1474",
+          "begin": 2492667,
+          "end": 2494348,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0754",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui alors donc vous trouvez que c'est"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0754"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1475",
+          "begin": 2494348,
+          "end": 2495395,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0755",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui tout à fait utile"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0755"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1476",
+          "begin": 2496403,
+          "end": 2497215,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0756",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "très utile"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0756"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1477",
+          "begin": 2497215,
+          "end": 2497644,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0756",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0756"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1478",
+          "begin": 2499753,
+          "end": 2503122,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0757",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "on dit parfois que la langue française se se dégrade"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0757"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1479",
+          "begin": 2504191,
+          "end": 2505183,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0757",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que vous en pensez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0757"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1480",
+          "begin": 2505183,
+          "end": 2507195,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0758",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous trouvez que c'est vrai ou c'est pas vrai ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0758"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1481",
+          "begin": 2505183,
+          "end": 2507195,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0758",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0758"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1482",
+          "begin": 2507195,
+          "end": 2508634,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0758",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0758"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1483",
+          "begin": 2507195,
+          "end": 2508634,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0758",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non je ne crois pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0758"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1484",
+          "begin": 2509256,
+          "end": 2509353,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0759",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0759"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1485",
+          "begin": 2512386,
+          "end": 2515069,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0760",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment y a de l'argot y a toujours eu de l'argot"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0760"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1486",
+          "begin": 2515069,
+          "end": 2515944,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0760",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0760"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1487",
+          "begin": 2515944,
+          "end": 2517246,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0760",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh dans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0760"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1488",
+          "begin": 2517246,
+          "end": 2518977,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0760",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "la la basse classe quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0760"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1489",
+          "begin": 2518977,
+          "end": 2520746,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0760",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh ça ça ça ne change rien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0760"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1490",
+          "begin": 2523720,
+          "end": 2530097,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0761",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous trouvez que c'est important que les journalistes les speakers les professeurs parlent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0761"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1491",
+          "begin": 2530097,
+          "end": 2530991,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0761",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "un"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0761"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1492",
+          "begin": 2530991,
+          "end": 2532119,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0761",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "bon français ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0761"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1493",
+          "begin": 2532119,
+          "end": 2533869,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0762",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh c'est indispensable"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0762"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1494",
+          "begin": 2535016,
+          "end": 2536979,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0763",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0763"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1495",
+          "begin": 2535016,
+          "end": 2536979,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0763",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est indispensable instantanément"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0763"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1496",
+          "begin": 2537951,
+          "end": 2539040,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0764",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on on répéterait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0764"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1497",
+          "begin": 2540109,
+          "end": 2541081,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0764",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le leurs fautes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0764"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1498",
+          "begin": 2541626,
+          "end": 2542054,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0765",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0765"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1499",
+          "begin": 2542832,
+          "end": 2546856,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0766",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors c'est à eux ah oui oui oui c'est à eux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0766"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1500",
+          "begin": 2542832,
+          "end": 2546856,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0766",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous trouvez qu'on devrait qu'on devrait les obliger à à parler bon français ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0766"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1501",
+          "begin": 2546856,
+          "end": 2547614,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0767",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est à eux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0767"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1502",
+          "begin": 2547614,
+          "end": 2549850,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0767",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et le laisser-aller de la radio"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0767"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1503",
+          "begin": 2549850,
+          "end": 2551133,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0767",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "est tout à fait nuisible"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0767"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1504",
+          "begin": 2552572,
+          "end": 2552864,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0768",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0768"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1505",
+          "begin": 2553758,
+          "end": 2556402,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0768",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "parce que vous trouvez qu'y a un certain laisser-aller à la radio ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0768"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1506",
+          "begin": 2556402,
+          "end": 2561339,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0769",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui maintenant euh ça commence à se tutoyer à employer des mots"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0769"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1507",
+          "begin": 2561884,
+          "end": 2561981,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0770",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0770"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1508",
+          "begin": 2561981,
+          "end": 2563109,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0771",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "déplacés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0771"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1509",
+          "begin": 2563109,
+          "end": 2563265,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0772",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0772"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1510",
+          "begin": 2563265,
+          "end": 2564762,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0773",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est c'est très néfaste"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0773"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1511",
+          "begin": 2564762,
+          "end": 2565676,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0773",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour les jeunes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0773"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1512",
+          "begin": 2566512,
+          "end": 2566959,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0774",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0774"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1513",
+          "begin": 2566959,
+          "end": 2568825,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0775",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qu'on a du mal à redresser alors ça c'est pas bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0775"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1514",
+          "begin": 2570147,
+          "end": 2570361,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0776",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0776"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1515",
+          "begin": 2570964,
+          "end": 2572111,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0777",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "sans rester évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0777"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1516",
+          "begin": 2573005,
+          "end": 2574074,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0777",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à l'ancienne mode"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0777"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1517",
+          "begin": 2574697,
+          "end": 2575455,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0778",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0778"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1518",
+          "begin": 2575455,
+          "end": 2576408,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0779",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en restant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0779"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1519",
+          "begin": 2576408,
+          "end": 2577594,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0779",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "correct très correct"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0779"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1520",
+          "begin": 2579149,
+          "end": 2580763,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0779",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et un professeur pareil surtout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0779"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1521",
+          "begin": 2581346,
+          "end": 2581657,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0780",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0780"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1522",
+          "begin": 2583290,
+          "end": 2584009,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0781",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et un prêtre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0781"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1523",
+          "begin": 2585934,
+          "end": 2589433,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0782",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que euh il y a des prêtres qui ont des langages maintenant vraiment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0782"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1524",
+          "begin": 2585934,
+          "end": 2589433,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0782",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0782"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1525",
+          "begin": 2589433,
+          "end": 2591533,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0782",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un petit peu"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0782"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1526",
+          "begin": 2589433,
+          "end": 2591533,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0782",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0782"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1527",
+          "begin": 2591533,
+          "end": 2592855,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0783",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et un peu mal placés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0783"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1528",
+          "begin": 2592855,
+          "end": 2593302,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0784",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0784"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1529",
+          "begin": 2595246,
+          "end": 2596024,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0785",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0785"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1530",
+          "begin": 2597812,
+          "end": 2599426,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0785",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "aujourd'hui à votre avis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0785"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1531",
+          "begin": 2600029,
+          "end": 2603625,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0785",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "on enseigne l'orthographe et la correction de la langue"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0785"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1532",
+          "begin": 2604092,
+          "end": 2604592,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0785",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "moins"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0785"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1533",
+          "begin": 2605220,
+          "end": 2608408,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0785",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mieux ou moins bien que du temps où vous étiez vous-même à l'école ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0785"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1534",
+          "begin": 2610002,
+          "end": 2611208,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0786",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0786"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1535",
+          "begin": 2611208,
+          "end": 2612413,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0786",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non ça suit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0786"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1536",
+          "begin": 2612413,
+          "end": 2613774,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0786",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0786"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1537",
+          "begin": 2613774,
+          "end": 2614299,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0787",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "aussi bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0787"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1538",
+          "begin": 2614299,
+          "end": 2616581,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je sais bien que mon fils était bon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1539",
+          "begin": 2616581,
+          "end": 2617623,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en orthographe"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1540",
+          "begin": 2618187,
+          "end": 2618556,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1541",
+          "begin": 2619392,
+          "end": 2620559,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça s'est"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1542",
+          "begin": 2620559,
+          "end": 2622347,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est venu progressivement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1543",
+          "begin": 2622872,
+          "end": 2624810,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça a suivi parce qu'il avait des facilités"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1544",
+          "begin": 2626521,
+          "end": 2629126,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais euh je ne crois pas qu'il y ait beaucoup plus d'efforts"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1545",
+          "begin": 2629126,
+          "end": 2630098,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0788",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "aujourd'hui euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0788"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1546",
+          "begin": 2631964,
+          "end": 2635203,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0789",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous pensez qu'on l'enseignement on enseigne de la même façon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0789"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1547",
+          "begin": 2635942,
+          "end": 2636720,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0789",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "l'orthographe"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0789"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1548",
+          "begin": 2636720,
+          "end": 2638334,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0790",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et la langue française ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0790"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1549",
+          "begin": 2636720,
+          "end": 2638334,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0790",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0790"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1550",
+          "begin": 2638334,
+          "end": 2638937,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0791",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "peut-être"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0791"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1551",
+          "begin": 2638937,
+          "end": 2642300,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0791",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "tout de même pas comme nous dans le temps non certainement aujourd'hui ils ont"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0791"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1552",
+          "begin": 2642300,
+          "end": 2644225,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0792",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "certainement modernisé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0792"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1553",
+          "begin": 2642300,
+          "end": 2644225,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0792",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "plutôt mieux ou moins bien ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0792"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1554",
+          "begin": 2645877,
+          "end": 2647957,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0793",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est peut-être plus compliqué mais c'est mieux"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0793"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1555",
+          "begin": 2647957,
+          "end": 2649493,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0794",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est mieux quand même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0794"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1556",
+          "begin": 2647957,
+          "end": 2649493,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0794",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi je suppose hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0794"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1557",
+          "begin": 2650310,
+          "end": 2651826,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0795",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et ça tient à quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0795"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1558",
+          "begin": 2651826,
+          "end": 2654120,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0795",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui vous m'avez dit c'est plus plus moderne"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0795"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1559",
+          "begin": 2654742,
+          "end": 2656298,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0796",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui évidemment maintenant"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0796"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1560",
+          "begin": 2656298,
+          "end": 2658475,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0796",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il y a euh beaucoup de textes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0796"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1561",
+          "begin": 2659547,
+          "end": 2661002,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0796",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh imprimés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0796"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1562",
+          "begin": 2661002,
+          "end": 2661722,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0797",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0797"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1563",
+          "begin": 2661722,
+          "end": 2664327,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0798",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ou qu'on leur donne comme modèle et tout ça euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0798"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1564",
+          "begin": 2665182,
+          "end": 2666329,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0799",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour les compositions"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0799"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1565",
+          "begin": 2665182,
+          "end": 2666329,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0799",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0799"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1566",
+          "begin": 2666329,
+          "end": 2668195,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0800",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et tout ça du coup moi je trouve c'est beaucoup mieux quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0800"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1567",
+          "begin": 2668195,
+          "end": 2669167,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0800",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est plus moderne que de notre temps"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0800"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1568",
+          "begin": 2669167,
+          "end": 2669420,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0801",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0801"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1569",
+          "begin": 2669420,
+          "end": 2669984,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0802",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0802"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1570",
+          "begin": 2672084,
+          "end": 2674786,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0803",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "dans quelles matières est-ce que vous étiez le plus fort à l'école ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0803"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1571",
+          "begin": 2674786,
+          "end": 2677760,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0804",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ben c'était ça nous c'était en écriture en écriture en orthographe"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0804"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1572",
+          "begin": 2678830,
+          "end": 2684662,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0805",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est là où vous étiez le plus fort personnellement ? en écriture orthographe"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0805"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1573",
+          "begin": 2678830,
+          "end": 2684662,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0805",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi et mon fils mon fils aussi oui oui et puis même mes frères aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0805"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1574",
+          "begin": 2685732,
+          "end": 2688628,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0806",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'était la famille mais alors euh pour les maths"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0806"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1575",
+          "begin": 2689367,
+          "end": 2689678,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0807",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0807"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1576",
+          "begin": 2690417,
+          "end": 2690884,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0808",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "zéro"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0808"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1577",
+          "begin": 2693333,
+          "end": 2694033,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0809",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0809"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1578",
+          "begin": 2694033,
+          "end": 2697202,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0809",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "habituellement vous avez quelque chose pour écrire sur vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0809"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1579",
+          "begin": 2697202,
+          "end": 2697960,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0809",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous avez de quoi écrire ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0809"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1580",
+          "begin": 2697960,
+          "end": 2698602,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0810",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah toujours oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0810"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1581",
+          "begin": 2698602,
+          "end": 2698835,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0811",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "toujours ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0811"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1582",
+          "begin": 2698835,
+          "end": 2699360,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0812",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "toujours"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0812"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1583",
+          "begin": 2699360,
+          "end": 2701712,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0812",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah toujours ah mon stylo un carnet tout le temps"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0812"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1584",
+          "begin": 2701712,
+          "end": 2702393,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0813",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0813"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1585",
+          "begin": 2703832,
+          "end": 2705718,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0813",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "un sty- un stylo à plume ou un Bic ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0813"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1586",
+          "begin": 2705718,
+          "end": 2707526,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0814",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah non euh une Bic une non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0814"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1587",
+          "begin": 2707526,
+          "end": 2708556,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0815",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0815"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1588",
+          "begin": 2707526,
+          "end": 2708556,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0815",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "un un"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0815"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1589",
+          "begin": 2708556,
+          "end": 2709334,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0815",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non j'ai pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0815"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1590",
+          "begin": 2708556,
+          "end": 2709334,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0815",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0815"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1591",
+          "begin": 2709334,
+          "end": 2710948,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0816",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "l'utilité d'un porte euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0816"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1592",
+          "begin": 2710948,
+          "end": 2711240,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0817",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0817"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1593",
+          "begin": 2711240,
+          "end": 2711668,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0818",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "plume"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0818"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1594",
+          "begin": 2712271,
+          "end": 2713982,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0819",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et un carnet enfin vous avez toujours"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0819"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1595",
+          "begin": 2713982,
+          "end": 2715193,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0820",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de quoi écrire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0820"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1596",
+          "begin": 2713982,
+          "end": 2715193,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0820",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui j'ai toujours toujours"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0820"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1597",
+          "begin": 2715193,
+          "end": 2716762,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0821",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je suis forcé tout les jours j'écris"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0821"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1598",
+          "begin": 2716762,
+          "end": 2717481,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0822",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0822"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1599",
+          "begin": 2717481,
+          "end": 2718434,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0823",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est forcé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0823"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1600",
+          "begin": 2718434,
+          "end": 2718784,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0824",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0824"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1601",
+          "begin": 2719698,
+          "end": 2721467,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0825",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous avez un stylo"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0825"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1602",
+          "begin": 2721467,
+          "end": 2721972,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0825",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à encre ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0825"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1603",
+          "begin": 2721972,
+          "end": 2723177,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0825",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous vous en vous vous servez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0825"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1604",
+          "begin": 2723177,
+          "end": 2724305,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0826",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de stylo à encre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0826"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1605",
+          "begin": 2723177,
+          "end": 2724305,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0826",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0826"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1606",
+          "begin": 2724305,
+          "end": 2727610,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0827",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui c'était trois ou quatre stylo plume or et tout ce"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0827"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1607",
+          "begin": 2727610,
+          "end": 2728893,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0827",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh oui bien sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0827"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1608",
+          "begin": 2729651,
+          "end": 2731051,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0827",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'était des cadeaux de famille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0827"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1609",
+          "begin": 2731051,
+          "end": 2731556,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0828",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0828"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1610",
+          "begin": 2732101,
+          "end": 2734512,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0828",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous vous souvenez la première fois que vous en avez eu un ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0828"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1611",
+          "begin": 2735406,
+          "end": 2737422,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0829",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui mon premier stylo"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0829"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1612",
+          "begin": 2737422,
+          "end": 2741044,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0829",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est un de mes camarades qui me l'avait payé une plume or"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0829"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1613",
+          "begin": 2741044,
+          "end": 2742405,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0829",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et j'avais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0829"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1614",
+          "begin": 2742405,
+          "end": 2743727,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0829",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je ne dix-huit ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0829"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1615",
+          "begin": 2743727,
+          "end": 2744563,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0830",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "dix-huit ans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0830"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1616",
+          "begin": 2744563,
+          "end": 2745321,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0831",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0831"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1617",
+          "begin": 2745321,
+          "end": 2746390,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0831",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un cadeau d'usine"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0831"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1618",
+          "begin": 2750667,
+          "end": 2752592,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0832",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "alors vous avez il faut pour euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0832"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1619",
+          "begin": 2752592,
+          "end": 2754011,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0832",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "que vous écriviez tous les jours"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0832"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1620",
+          "begin": 2754011,
+          "end": 2756072,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0833",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pour vo- pour votre métier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0833"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1621",
+          "begin": 2754011,
+          "end": 2756072,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0833",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui pour le travail"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0833"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1622",
+          "begin": 2756072,
+          "end": 2756344,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0834",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0834"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1623",
+          "begin": 2756344,
+          "end": 2758463,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0834",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour le travail j'ai toujours à écrire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0834"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1624",
+          "begin": 2758463,
+          "end": 2761535,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0834",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ce que j'ai fait ce que j'ai à faire et des rendez-vous et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0834"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1625",
+          "begin": 2761535,
+          "end": 2761866,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0835",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0835"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1626",
+          "begin": 2761866,
+          "end": 2762002,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0836",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0836"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1627",
+          "begin": 2762002,
+          "end": 2763479,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0837",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "par exemple aujourd'hui vous avez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0837"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1628",
+          "begin": 2763479,
+          "end": 2767795,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0838",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui moi toujours toujours j'ai euh à écrire pour euh ce qui me faut pour demain et après-demain"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0838"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1629",
+          "begin": 2767795,
+          "end": 2770517,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0838",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et puis alors en même temps pour penser pour ne pas oublier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0838"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1630",
+          "begin": 2770517,
+          "end": 2771450,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0838",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à quelque chose"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0838"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1631",
+          "begin": 2771450,
+          "end": 2773433,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0839",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je suis forcé tout le temps d'avoir le crayon à la main"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0839"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1632",
+          "begin": 2771450,
+          "end": 2773433,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0839",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0839"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1633",
+          "begin": 2773433,
+          "end": 2773763,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0840",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0840"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1634",
+          "begin": 2773763,
+          "end": 2774288,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0841",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0841"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1635",
+          "begin": 2776777,
+          "end": 2781637,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0842",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "la dernière fois que vous avez eu besoin d'écrire pour votre travail euh c'est c'est quand c'est aujourd'hui finalement ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0842"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1636",
+          "begin": 2781637,
+          "end": 2782434,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0843",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui tous les jours"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0843"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1637",
+          "begin": 2783231,
+          "end": 2783464,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0844",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0844"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1638",
+          "begin": 2784767,
+          "end": 2789258,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0845",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous p- vous avez sur vous pour écrire exactement c'est c'est un agenda finalement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0845"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1639",
+          "begin": 2789258,
+          "end": 2791066,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0846",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est ça oui c'est l'agenda c'est ça oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0846"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1640",
+          "begin": 2789258,
+          "end": 2791066,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0846",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est un agenda"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0846"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1641",
+          "begin": 2791066,
+          "end": 2791620,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0846",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0846"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1642",
+          "begin": 2791066,
+          "end": 2791620,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0846",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0846"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1643",
+          "begin": 2793885,
+          "end": 2797151,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0847",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "si vous avez un quelque chose à dire à"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0847"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1644",
+          "begin": 2797151,
+          "end": 2798084,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0847",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à un ami"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0847"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1645",
+          "begin": 2799173,
+          "end": 2800339,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0847",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qui habite à"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0847"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1646",
+          "begin": 2800809,
+          "end": 2802167,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0847",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quatre cinq kilomètres"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0847"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1647",
+          "begin": 2802167,
+          "end": 2802867,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0848",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0848"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1648",
+          "begin": 2802867,
+          "end": 2806444,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0849",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que vous faites vous vous déplacez ou vous lui écrivez une lettre ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0849"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1649",
+          "begin": 2806444,
+          "end": 2810371,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0850",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh euh je fais un mot oui oui oui oh oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0850"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1650",
+          "begin": 2806444,
+          "end": 2810371,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0850",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est ce que vous préférez ? vous préférez faire un mot ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0850"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1651",
+          "begin": 2810371,
+          "end": 2811129,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0851",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui enfin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0851"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1652",
+          "begin": 2811129,
+          "end": 2812490,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0852",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui ou alors ça serait vraiment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0852"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1653",
+          "begin": 2813365,
+          "end": 2816748,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0852",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour une chose indispensable que je voudrais le cau- lui causer"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0852"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1654",
+          "begin": 2816748,
+          "end": 2817856,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0853",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors je me déplace"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0853"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1655",
+          "begin": 2816748,
+          "end": 2817856,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0853",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0853"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1656",
+          "begin": 2817856,
+          "end": 2818264,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0854",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0854"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1657",
+          "begin": 2818264,
+          "end": 2819314,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0855",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm sans ça j'envoie un mot"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0855"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1658",
+          "begin": 2819314,
+          "end": 2820267,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0856",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous envoyez un mot"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0856"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1659",
+          "begin": 2820267,
+          "end": 2820423,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0857",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0857"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1660",
+          "begin": 2820967,
+          "end": 2821239,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0858",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0858"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1661",
+          "begin": 2821239,
+          "end": 2822659,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0858",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et si c'est une lettre offici-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0858"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1662",
+          "begin": 2822659,
+          "end": 2824020,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0858",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oh que non ça euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0858"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1663",
+          "begin": 2824020,
+          "end": 2825808,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0858",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quelq- si c'est quelque chose de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0858"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1664",
+          "begin": 2825808,
+          "end": 2826450,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0858",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "d'important"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0858"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1665",
+          "begin": 2826450,
+          "end": 2827597,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0859",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah là je me déplace"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0859"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1666",
+          "begin": 2826450,
+          "end": 2827597,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0859",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "d'officiel"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0859"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1667",
+          "begin": 2827597,
+          "end": 2828025,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0860",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh je me déplace"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0860"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1668",
+          "begin": 2828025,
+          "end": 2828939,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0861",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "là vous vous déplacez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0861"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1669",
+          "begin": 2828939,
+          "end": 2831233,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0862",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui sans hésitation bien sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0862"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1670",
+          "begin": 2831233,
+          "end": 2831952,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0863",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pourquoi ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0863"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1671",
+          "begin": 2832924,
+          "end": 2834343,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0864",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben euh je préfère"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0864"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1672",
+          "begin": 2834343,
+          "end": 2837259,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0864",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le contact hein personnel tout de suite"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0864"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1673",
+          "begin": 2837259,
+          "end": 2837609,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0865",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0865"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1674",
+          "begin": 2837609,
+          "end": 2838348,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0866",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour voir euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0866"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1675",
+          "begin": 2839106,
+          "end": 2841944,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0866",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh si c'est une chose importante on voit tout de suite la réaction"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0866"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1676",
+          "begin": 2842819,
+          "end": 2843091,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0867",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0867"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1677",
+          "begin": 2843091,
+          "end": 2844394,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0868",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ça je n'hésiterais pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0868"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1678",
+          "begin": 2844394,
+          "end": 2844919,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0869",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0869"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1679",
+          "begin": 2844919,
+          "end": 2848554,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0870",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "même pour un ouvrier un camarade ou un accident ou n'importe"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0870"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1680",
+          "begin": 2848554,
+          "end": 2849682,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0870",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je me déplacerais ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0870"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1681",
+          "begin": 2849682,
+          "end": 2851393,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0870",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je regarderais pas à faire dix ou quinze kilomètres"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0870"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1682",
+          "begin": 2851393,
+          "end": 2851782,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0871",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0871"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1683",
+          "begin": 2851782,
+          "end": 2852054,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0872",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0872"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1684",
+          "begin": 2852968,
+          "end": 2854869,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0872",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je préfère de vive voix même que par écrit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0872"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1685",
+          "begin": 2854869,
+          "end": 2855359,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0873",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0873"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1686",
+          "begin": 2856603,
+          "end": 2860200,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0874",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que pour vous croyez que c'est important d'avoir une une belle écriture ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0874"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1687",
+          "begin": 2861677,
+          "end": 2862144,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0875",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0875"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1688",
+          "begin": 2863796,
+          "end": 2868034,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0876",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est quoi très important important important"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0876"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1689",
+          "begin": 2863796,
+          "end": 2868034,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0876",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que très important non important parce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0876"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1690",
+          "begin": 2868034,
+          "end": 2871903,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0877",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi je suis malheureux pour mon fils qui a une très vilaine écriture"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0877"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1691",
+          "begin": 2871903,
+          "end": 2874683,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0877",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et euh nous moi et mon frère"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0877"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1692",
+          "begin": 2874683,
+          "end": 2875169,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0878",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0878"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1693",
+          "begin": 2875169,
+          "end": 2876685,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0879",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "nous avons une écriture"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0879"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1694",
+          "begin": 2876685,
+          "end": 2877288,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0879",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "potable"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0879"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1695",
+          "begin": 2877988,
+          "end": 2879504,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0880",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour pas dire une écriture de notaire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0880"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1696",
+          "begin": 2877988,
+          "end": 2879504,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0880",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0880"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1697",
+          "begin": 2879504,
+          "end": 2881584,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0881",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "comme on disait pour se fiche de nous mais vraiment je"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0881"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1698",
+          "begin": 2881584,
+          "end": 2883373,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0881",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "moi j'écris pas mal et mon frère"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0881"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1699",
+          "begin": 2883373,
+          "end": 2884462,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0882",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mes frères aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0882"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1700",
+          "begin": 2883373,
+          "end": 2884462,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0882",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0882"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1701",
+          "begin": 2884462,
+          "end": 2886037,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0883",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et pourquoi vous croyez que ce"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0883"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1702",
+          "begin": 2886426,
+          "end": 2887495,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0884",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pourquoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0884"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1703",
+          "begin": 2886426,
+          "end": 2887495,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0884",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh c'est presque"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0884"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1704",
+          "begin": 2887495,
+          "end": 2889264,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0885",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pas illisible mais tout de même c'est pas très joli"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0885"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1705",
+          "begin": 2889264,
+          "end": 2889847,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0885",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0885"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1706",
+          "begin": 2889847,
+          "end": 2891033,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0885",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je crois qu'un"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0885"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1707",
+          "begin": 2891033,
+          "end": 2892958,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0885",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un intellectuel euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0885"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1708",
+          "begin": 2894008,
+          "end": 2896055,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0885",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "d'une situation assez élevée"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0885"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1709",
+          "begin": 2896055,
+          "end": 2896405,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0886",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0886"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1710",
+          "begin": 2896405,
+          "end": 2899530,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0887",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ou qui a une vilaine écriture évidemment un docteur ça euh accepté"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0887"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1711",
+          "begin": 2899530,
+          "end": 2899788,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0888",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0888"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1712",
+          "begin": 2899788,
+          "end": 2901207,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0889",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh c'est do- euh c'est dommage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0889"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1713",
+          "begin": 2901207,
+          "end": 2903482,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0889",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est dommage euh moi je trouve qu'on"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0889"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1714",
+          "begin": 2903482,
+          "end": 2906087,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0889",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on ne peut pas distinguer l'instruction avec un écriture comme ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0889"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1715",
+          "begin": 2906806,
+          "end": 2907195,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0890",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0890"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1716",
+          "begin": 2907195,
+          "end": 2909372,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0891",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors c'est pourquoi j'ai voulu lui acheter une machine à écrire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0891"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1717",
+          "begin": 2911064,
+          "end": 2912250,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0893",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "il y gagne hein"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0893"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1718",
+          "begin": 2912250,
+          "end": 2913591,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0893",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "je mets que ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0893"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1719",
+          "begin": 2914680,
+          "end": 2917790,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0894",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et est-ce que c'est important d'avoir de de l'orthographe ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0894"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1720",
+          "begin": 2917790,
+          "end": 2919151,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0895",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh hein alors oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0895"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1721",
+          "begin": 2920220,
+          "end": 2920512,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0895",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0895"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1722",
+          "begin": 2921348,
+          "end": 2921834,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0896",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0896"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1723",
+          "begin": 2921834,
+          "end": 2922320,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0896",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0896"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1724",
+          "begin": 2922320,
+          "end": 2923992,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0897",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "beaucoup beaucoup beaucoup oh oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0897"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1725",
+          "begin": 2924789,
+          "end": 2928541,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0897",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça fiche une personnalité par terre avec trois fautes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0897"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1726",
+          "begin": 2929532,
+          "end": 2929921,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0898",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0898"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1727",
+          "begin": 2931962,
+          "end": 2936784,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0899",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous seriez favorable à une réforme de l'orthographe ? vous savez des fois on parle de simplifier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0899"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1728",
+          "begin": 2936784,
+          "end": 2943569,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0900",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "l'orthographe de faire une réforme vous auriez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0900"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1729",
+          "begin": 2936784,
+          "end": 2943569,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0900",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oh oui alors oh oui oui oui oui oh oui euh nous en France avec deux S trois F ou"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0900"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1730",
+          "begin": 2943569,
+          "end": 2944347,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0901",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0901"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1731",
+          "begin": 2944347,
+          "end": 2945844,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0901",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça oui bien sûr mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0901"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1732",
+          "begin": 2945844,
+          "end": 2947496,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0901",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça ça doit être très difficile"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0901"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1733",
+          "begin": 2947496,
+          "end": 2949115,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0902",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous seriez très favorable"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0902"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1734",
+          "begin": 2947496,
+          "end": 2949115,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0902",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0902"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1735",
+          "begin": 2949115,
+          "end": 2950626,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0903",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ou seulement favorable ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0903"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1736",
+          "begin": 2950626,
+          "end": 2952084,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0904",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh si très favorable"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0904"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1737",
+          "begin": 2952084,
+          "end": 2952978,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0905",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "très favorable"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0905"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1738",
+          "begin": 2952084,
+          "end": 2952978,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0905",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0905"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1739",
+          "begin": 2952978,
+          "end": 2954825,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0906",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça serait tout de même beaucoup plus facile"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0906"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1740",
+          "begin": 2955506,
+          "end": 2955934,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0907",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0907"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1741",
+          "begin": 2958403,
+          "end": 2960036,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0908",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et certainement qu'y a pas qu'en France"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0908"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1742",
+          "begin": 2965129,
+          "end": 2969834,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0909",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "chez vous euh dans la famille qui est-ce qui écrit les lettres normalement ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0909"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1743",
+          "begin": 2969834,
+          "end": 2971175,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0910",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous ou votre femme ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0910"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1744",
+          "begin": 2969834,
+          "end": 2971175,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0910",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est moi c'est moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0910"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1745",
+          "begin": 2971175,
+          "end": 2971797,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0911",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah c'est vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0911"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1746",
+          "begin": 2971797,
+          "end": 2974286,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0912",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ma femme écrit euh à ses amis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0912"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1747",
+          "begin": 2974286,
+          "end": 2976036,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0912",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais malgré tout moi j'écris"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0912"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1748",
+          "begin": 2976036,
+          "end": 2978408,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0913",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le plus souvent ah le plus souvent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0913"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1749",
+          "begin": 2976036,
+          "end": 2978408,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0913",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "par exemple à des amis communs ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0913"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1750",
+          "begin": 2978408,
+          "end": 2982393,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0914",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh si il y a à écrire au lycée ou n'importe ma femme me fait confiance c'est moi qui écris"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0914"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1751",
+          "begin": 2983112,
+          "end": 2985348,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0915",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui et par exemple dans la famille si vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0915"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1752",
+          "begin": 2985348,
+          "end": 2987156,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0916",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui c'est toujours moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0916"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1753",
+          "begin": 2985348,
+          "end": 2987156,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0916",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "dans la famille de votre femme ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0916"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1754",
+          "begin": 2987156,
+          "end": 2987890,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0917",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ben"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0917"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1755",
+          "begin": 2987890,
+          "end": 2990242,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0917",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh ça elle écrit à ses"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0917"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1756",
+          "begin": 2990242,
+          "end": 2992303,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0917",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ses amis et à sa famille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0917"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1757",
+          "begin": 2992303,
+          "end": 2994791,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0918",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est sûr oui tout de même oui oui oui oh oui ben si tout de même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0918"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1758",
+          "begin": 2992303,
+          "end": 2994791,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0918",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0918"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1759",
+          "begin": 2994791,
+          "end": 2997824,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0919",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais dans votre famille c'est vous qui qui écrivez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0919"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1760",
+          "begin": 2994791,
+          "end": 2997824,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0919",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on aime mieux oui oh oui oui oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0919"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1761",
+          "begin": 2997824,
+          "end": 2999476,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0920",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour n'importe quoi de la maison"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0920"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1762",
+          "begin": 2999476,
+          "end": 3001459,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0920",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh c'est ma femme me dit écris donc euh à tel"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0920"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1763",
+          "begin": 3001459,
+          "end": 3007097,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0921",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à tel c'est ça c'est toujours moi oui ah oui oui c'est toujours moi oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0921"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1764",
+          "begin": 3001459,
+          "end": 3007097,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0921",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "les papiers administratifs euh les feuilles d'impôts sécurité sociale tout ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0921"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1765",
+          "begin": 3007097,
+          "end": 3007816,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0922",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pourquoi ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0922"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1766",
+          "begin": 3008633,
+          "end": 3008866,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0923",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0923"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1767",
+          "begin": 3010052,
+          "end": 3012385,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0923",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment c'est de aussi une question peut-être d'écriture"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0923"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1768",
+          "begin": 3012988,
+          "end": 3013182,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0924",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0924"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1769",
+          "begin": 3013182,
+          "end": 3014388,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0925",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "eh ben puis alors le temps"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0925"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1770",
+          "begin": 3014388,
+          "end": 3017965,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0925",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que ma femme a toujours toujours quelque chose à faire n'est-ce pas comme beaucoup de dames hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0925"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1771",
+          "begin": 3017965,
+          "end": 3018412,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0926",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0926"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1772",
+          "begin": 3023350,
+          "end": 3024186,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0927",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "selon vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0927"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1773",
+          "begin": 3024828,
+          "end": 3026636,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0927",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qui est-ce qui a la la plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0927"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1774",
+          "begin": 3026636,
+          "end": 3029401,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0927",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "la plus belle écriture votre femme ou vous ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0927"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1775",
+          "begin": 3029401,
+          "end": 3031948,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0928",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ça euh évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0928"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1776",
+          "begin": 3029401,
+          "end": 3031948,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0928",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "j'introduis la brouille là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0928"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1777",
+          "begin": 3031948,
+          "end": 3033678,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0929",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est moi évidemment mais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0929"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1778",
+          "begin": 3033678,
+          "end": 3034242,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0930",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est vous"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0930"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1779",
+          "begin": 3034242,
+          "end": 3036244,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0931",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui mais ma femme n'écrit pas mal tout de même oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0931"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1780",
+          "begin": 3036244,
+          "end": 3039316,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0932",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et au point de vue orthographe euh bon français ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0932"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1781",
+          "begin": 3039316,
+          "end": 3040677,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0933",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah c'est ma femme est meilleure"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0933"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1782",
+          "begin": 3040677,
+          "end": 3043379,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0934",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "au point de vue orthographe c'est votre femme ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0934"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1783",
+          "begin": 3040677,
+          "end": 3043379,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0934",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui elle relève ah oui elle corrige mes lettres"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0934"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1784",
+          "begin": 3043379,
+          "end": 3043690,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0935",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0935"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1785",
+          "begin": 3044293,
+          "end": 3045207,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0936",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et au point de vue"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0936"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1786",
+          "begin": 3045207,
+          "end": 3046665,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0936",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "correction du français ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0936"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1787",
+          "begin": 3046665,
+          "end": 3047384,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0937",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui aussi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0937"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1788",
+          "begin": 3047384,
+          "end": 3048026,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0938",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0938"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1789",
+          "begin": 3048026,
+          "end": 3048629,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0939",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "aussi oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0939"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1790",
+          "begin": 3048629,
+          "end": 3050612,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0940",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh même même euh dans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0940"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1791",
+          "begin": 3050612,
+          "end": 3051740,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0940",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oral même quand on parle ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0940"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1792",
+          "begin": 3051740,
+          "end": 3053062,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0941",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui oui oui oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0941"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1793",
+          "begin": 3051740,
+          "end": 3053062,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0941",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0941"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1794",
+          "begin": 3053062,
+          "end": 3053490,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0942",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0942"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1795",
+          "begin": 3056562,
+          "end": 3056776,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0943",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0943"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1796",
+          "begin": 3056776,
+          "end": 3059167,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0944",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour une bonne chose elle est restée toujours avec ses parents"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0944"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1797",
+          "begin": 3059731,
+          "end": 3060159,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0945",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0945"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1798",
+          "begin": 3060159,
+          "end": 3062628,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0946",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qui ont été dans le commerce et ils ont euh un niveau"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0946"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1799",
+          "begin": 3062628,
+          "end": 3063619,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0946",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh moyen"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0946"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1800",
+          "begin": 3063619,
+          "end": 3064300,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0947",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0947"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1801",
+          "begin": 3064300,
+          "end": 3065661,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0948",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "d'ins- euh d'instruction"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0948"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1802",
+          "begin": 3065661,
+          "end": 3066089,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0949",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0949"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1803",
+          "begin": 3066089,
+          "end": 3070385,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0950",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et alors elle s'exprime mieux que moi qui ai été en usine et dans le bâtiment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0950"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1804",
+          "begin": 3070385,
+          "end": 3071027,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0951",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0951"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1805",
+          "begin": 3071027,
+          "end": 3071591,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0952",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "vous comprenez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0952"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1806",
+          "begin": 3071591,
+          "end": 3072116,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0953",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0953"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1807",
+          "begin": 3073982,
+          "end": 3077073,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0954",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "en moyenne combien de lettres vous écrivez par mois ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0954"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1808",
+          "begin": 3078084,
+          "end": 3080436,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0955",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh par mois c'est plutôt à la fin de l'année"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0955"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1809",
+          "begin": 3080436,
+          "end": 3083527,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0955",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh y a tout de suite une dizaine de lettre au premier de l'an"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0955"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1810",
+          "begin": 3083527,
+          "end": 3083897,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0956",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0956"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1811",
+          "begin": 3083897,
+          "end": 3085627,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0957",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et dans euh au cours de l'année"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0957"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1812",
+          "begin": 3087552,
+          "end": 3091226,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0957",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm peut-être euh trois trois lettres par mois euh moyenne euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0957"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1813",
+          "begin": 3091226,
+          "end": 3098458,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0958",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pour le travail quoi ou en général non des lettres personnelles ? personnelles tr- trois par mois"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0958"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1814",
+          "begin": 3091226,
+          "end": 3098458,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0958",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ah pour le travail non ah oui oui oui ben lettres de la maison oui oui person- oui oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0958"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1815",
+          "begin": 3099780,
+          "end": 3101160,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0959",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et pour le travail là beaucoup plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0959"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1816",
+          "begin": 3101160,
+          "end": 3104100,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0960",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ben c'est tous les jours ça n'importe euh ça c'est sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0960"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1817",
+          "begin": 3101160,
+          "end": 3104100,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0960",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0960"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1818",
+          "begin": 3104896,
+          "end": 3105306,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0961",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0961"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1819",
+          "begin": 3105306,
+          "end": 3105542,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0962",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0962"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1820",
+          "begin": 3106917,
+          "end": 3109239,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0963",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que vous gardez les lettres qu'on vous envoie ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0963"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1821",
+          "begin": 3109239,
+          "end": 3113435,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0964",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "enfin pas les lettres de travail hein les lettres d'amis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0964"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1822",
+          "begin": 3109239,
+          "end": 3113435,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0964",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui c'est manque de de place mais on les garde un an"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0964"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1823",
+          "begin": 3113435,
+          "end": 3114173,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0965",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "un an ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0965"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1824",
+          "begin": 3114173,
+          "end": 3114505,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0966",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0966"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1825",
+          "begin": 3115587,
+          "end": 3117851,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0966",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "une pour euh l'année suivante toujours"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0966"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1826",
+          "begin": 3118917,
+          "end": 3121255,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0966",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais sans ça euh dans le temps on les conservait beaucoup plus"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0966"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1827",
+          "begin": 3121255,
+          "end": 3122997,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0967",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quelles lettres les les let- les lettres"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0967"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1828",
+          "begin": 3122997,
+          "end": 3124021,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0968",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "les lettres de famille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0968"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1829",
+          "begin": 3124021,
+          "end": 3125528,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0969",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0969"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1830",
+          "begin": 3124021,
+          "end": 3125528,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0969",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on aime bien relire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0969"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1831",
+          "begin": 3125528,
+          "end": 3126053,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0970",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0970"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1832",
+          "begin": 3126053,
+          "end": 3129666,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0971",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "les lettres de famille même si il vient un autre parent nous leur lisons les lettres"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0971"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1833",
+          "begin": 3129666,
+          "end": 3130385,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0971",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui ensuite"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0971"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1834",
+          "begin": 3130385,
+          "end": 3134288,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0972",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "alors par exemple en ce moment vous en possédez approximativement combien ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0972"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1835",
+          "begin": 3135219,
+          "end": 3137657,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0973",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "enfin un chiffre global"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0973"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1836",
+          "begin": 3135219,
+          "end": 3137657,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0973",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "les deux placards les deux placards eh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0973"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1837",
+          "begin": 3137657,
+          "end": 3139457,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0974",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en sont pas plein mais presque"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0974"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1838",
+          "begin": 3139457,
+          "end": 3140539,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0974",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "y a toujours bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0974"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1839",
+          "begin": 3141524,
+          "end": 3143456,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0974",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "une cinquantaine de lettres certainement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0974"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1840",
+          "begin": 3143456,
+          "end": 3143981,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0975",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0975"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1841",
+          "begin": 3148115,
+          "end": 3148714,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0976",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0976"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1842",
+          "begin": 3148714,
+          "end": 3150572,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0976",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quand vous écrivez à"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0976"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1843",
+          "begin": 3150572,
+          "end": 3151615,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0976",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à vos amis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0976"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1844",
+          "begin": 3152195,
+          "end": 3155174,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0976",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que est-ce que vous faites un brouillon ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0976"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1845",
+          "begin": 3155174,
+          "end": 3156916,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0977",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ou vous écrivez directement ? rarement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0977"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1846",
+          "begin": 3155174,
+          "end": 3156916,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0977",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh rarement rarement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0977"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1847",
+          "begin": 3156916,
+          "end": 3158887,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0978",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "quand c'est une personne supérieure"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0978"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1848",
+          "begin": 3158887,
+          "end": 3160127,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0978",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "là je fais le brouillon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0978"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1849",
+          "begin": 3160127,
+          "end": 3163372,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0978",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh si j'écris au proviseur du lycée ou des"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0978"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1850",
+          "begin": 3163372,
+          "end": 3164435,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0978",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors là je fais un brouillon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0978"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1851",
+          "begin": 3164999,
+          "end": 3165911,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0979",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais sans quoi euh non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0979"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1852",
+          "begin": 3164999,
+          "end": 3165911,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0979",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0979"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1853",
+          "begin": 3165911,
+          "end": 3168851,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0980",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je ne je ne fais pas pour ma famille j'écris directement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0980"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1854",
+          "begin": 3170555,
+          "end": 3170965,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0980",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0980"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1855",
+          "begin": 3174040,
+          "end": 3176184,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0981",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais est-ce que vous vous re- relisez par exemple"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0981"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1856",
+          "begin": 3176184,
+          "end": 3177096,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0982",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pour l'orthographe ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0982"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1857",
+          "begin": 3176184,
+          "end": 3177096,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0982",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0982"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1858",
+          "begin": 3177096,
+          "end": 3178800,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0983",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui oui oui et puis ma femme relis derrière moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0983"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1859",
+          "begin": 3179383,
+          "end": 3179692,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0984",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0984"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1860",
+          "begin": 3180368,
+          "end": 3185623,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0984",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quand vous écrivez une lettre qu'est-ce que vous vous vous écrivez à quoi au Bic au stylo plume à quoi ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0984"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1861",
+          "begin": 3185623,
+          "end": 3187810,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0985",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est ce que vous préférez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0985"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1862",
+          "begin": 3185623,
+          "end": 3187810,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0985",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ça je j'aime mieux la"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0985"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1863",
+          "begin": 3187810,
+          "end": 3189958,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0986",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "plume quand c'est une personnalité"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0986"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1864",
+          "begin": 3189958,
+          "end": 3191391,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0987",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais sans quoi ordinaire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0987"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1865",
+          "begin": 3189958,
+          "end": 3191391,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0987",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0987"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1866",
+          "begin": 3191391,
+          "end": 3195815,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0988",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh pour la famille mes frères je prends mon mon s- mon s- pointe Bic"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0988"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1867",
+          "begin": 3195815,
+          "end": 3196379,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0989",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0989"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1868",
+          "begin": 3196379,
+          "end": 3196553,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0990",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0990"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1869",
+          "begin": 3197754,
+          "end": 3200536,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0990",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais eh vous m- pour par grande politesse je prends la plume"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0990"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1870",
+          "begin": 3201077,
+          "end": 3201660,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0991",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0991"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1871",
+          "begin": 3201660,
+          "end": 3204075,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0991",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et quel genre de papier de quel genre de papier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0991"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1872",
+          "begin": 3204075,
+          "end": 3207305,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0992",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous vous servez ? deux sortes de papiers ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0992"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1873",
+          "begin": 3204075,
+          "end": 3207305,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0992",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah j'ai deux sortes de papier évidemment j'ai du beau oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0992"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1874",
+          "begin": 3207305,
+          "end": 3208082,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0993",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0993"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1875",
+          "begin": 3208082,
+          "end": 3208511,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0994",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0994"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1876",
+          "begin": 3208511,
+          "end": 3212243,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0995",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "j'ai du papier ordinaire pour euh les frères ou n'importe un mot d'urgence"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0995"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1877",
+          "begin": 3212243,
+          "end": 3212653,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0996",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0996"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1878",
+          "begin": 3212653,
+          "end": 3214395,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0997",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh et du beau papier glacé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0997"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1879",
+          "begin": 3214395,
+          "end": 3215071,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0997",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0997"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1880",
+          "begin": 3215071,
+          "end": 3217118,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0997",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour écrire aux à une personnalité"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0997"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1881",
+          "begin": 3217118,
+          "end": 3221272,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0998",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "du pa- du papier qu'est-ce que vous pour les lettres d'amis vous prenez de famille"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0998"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1882",
+          "begin": 3221272,
+          "end": 3223362,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0999",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben le petit bloc un petit bloc"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0999"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1883",
+          "begin": 3221272,
+          "end": 3223362,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn0999",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous prenez du papier"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn0999"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1884",
+          "begin": 3223362,
+          "end": 3225375,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1000",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à lignes ou blanc ou ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1000"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1885",
+          "begin": 3225375,
+          "end": 3227755,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1001",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui rayé rayé ou rayé oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1001"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1886",
+          "begin": 3225375,
+          "end": 3227755,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1001",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "rayé rayé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1001"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1887",
+          "begin": 3227755,
+          "end": 3229922,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1002",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1002"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1888",
+          "begin": 3227755,
+          "end": 3229922,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1002",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et puis alors le papier blanc uni"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1002"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1889",
+          "begin": 3229922,
+          "end": 3230444,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1003",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1003"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1890",
+          "begin": 3230444,
+          "end": 3230911,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1004",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1004"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1891",
+          "begin": 3230911,
+          "end": 3232070,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1004",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "pour euh les"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1004"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1892",
+          "begin": 3232070,
+          "end": 3233268,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1004",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "choses importantes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1004"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1893",
+          "begin": 3233268,
+          "end": 3233886,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1005",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1005"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1894",
+          "begin": 3233886,
+          "end": 3234079,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1006",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1006"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1895",
+          "begin": 3239411,
+          "end": 3240091,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1007",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et pour"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1007"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1896",
+          "begin": 3240091,
+          "end": 3244055,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1007",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "par exemple euh si vous faites un mot pour le lycée pour votre fils"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1007"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1897",
+          "begin": 3244055,
+          "end": 3245276,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1007",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous vous faites euh ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1007"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1898",
+          "begin": 3246420,
+          "end": 3247544,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1007",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous prenez quoi du papier ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1007"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1899",
+          "begin": 3247544,
+          "end": 3249437,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1008",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah toujours le papier le plus propre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1008"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1900",
+          "begin": 3249437,
+          "end": 3249727,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1009",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1009"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1901",
+          "begin": 3249727,
+          "end": 3250194,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1010",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le plus beau"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1010"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1902",
+          "begin": 3250194,
+          "end": 3250426,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1010",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1010"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1903",
+          "begin": 3250426,
+          "end": 3250561,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1011",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1011"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1904",
+          "begin": 3250561,
+          "end": 3250967,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1012",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "bien sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1012"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1905",
+          "begin": 3251643,
+          "end": 3253440,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1013",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "du bl- du du papier uni"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1013"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1906",
+          "begin": 3253440,
+          "end": 3254159,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1014",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1014"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1907",
+          "begin": 3254159,
+          "end": 3254781,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1015",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1015"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1908",
+          "begin": 3260580,
+          "end": 3264389,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1015",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh et le pap- le le papier à lignes alors donc vous le réservez pour euh ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1015"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1909",
+          "begin": 3264389,
+          "end": 3267074,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1016",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui les choses urgentes pour la famille ou"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1016"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1910",
+          "begin": 3267557,
+          "end": 3269585,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1016",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh des amis que je connais"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1016"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1911",
+          "begin": 3270165,
+          "end": 3270420,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1017",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1017"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1912",
+          "begin": 3270420,
+          "end": 3271390,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1018",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ordinaires oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1018"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1913",
+          "begin": 3279429,
+          "end": 3279970,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1019",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1019"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1914",
+          "begin": 3282501,
+          "end": 3282891,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1020",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1020"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1915",
+          "begin": 3282891,
+          "end": 3289092,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1020",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce qu'il y a des choses qui vous qui vous agacent dans la façon de parler de de votre femme par exemple ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1020"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1916",
+          "begin": 3292264,
+          "end": 3293021,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1021",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non non non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1021"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1917",
+          "begin": 3293021,
+          "end": 3293659,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1021",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1021"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1918",
+          "begin": 3295073,
+          "end": 3297472,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1022",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "non parce que des fois il arrive qu'on se reprenne en"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1022"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1919",
+          "begin": 3297472,
+          "end": 3297974,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1023",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1023"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1920",
+          "begin": 3297974,
+          "end": 3298728,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1024",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mutuellement"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1024"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1921",
+          "begin": 3298728,
+          "end": 3299157,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1025",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1025"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1922",
+          "begin": 3299157,
+          "end": 3299702,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1026",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1026"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1923",
+          "begin": 3299702,
+          "end": 3300131,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1027",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1027"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1924",
+          "begin": 3300131,
+          "end": 3301101,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1028",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "y a rien de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1028"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1925",
+          "begin": 3301101,
+          "end": 3301684,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1029",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1029"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1926",
+          "begin": 3301684,
+          "end": 3304099,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1030",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais est-ce que par exemple il vous arrive de"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1030"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1927",
+          "begin": 3305030,
+          "end": 3306131,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1030",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de la reprendre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1030"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1928",
+          "begin": 3306131,
+          "end": 3307676,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1031",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah euh simplement de la"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1031"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1929",
+          "begin": 3306131,
+          "end": 3307676,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1031",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quand elle parle ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1031"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1930",
+          "begin": 3307676,
+          "end": 3308874,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1032",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh elle a tout un"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1032"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1931",
+          "begin": 3308874,
+          "end": 3310558,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1032",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm qu'elle cause trop fort"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1032"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1932",
+          "begin": 3310558,
+          "end": 3312162,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1032",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "elle parle trop fort c'est tout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1032"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1933",
+          "begin": 3312162,
+          "end": 3313016,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1033",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1033"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1934",
+          "begin": 3313016,
+          "end": 3315241,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1034",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et c'est pour ça je la reprends sans arrêt sans arrêt"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1034"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1935",
+          "begin": 3316284,
+          "end": 3316420,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1035",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1035"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1936",
+          "begin": 3316420,
+          "end": 3316694,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1036",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1036"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1937",
+          "begin": 3316694,
+          "end": 3317718,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1036",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "elle cause trop fort"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1036"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1938",
+          "begin": 3319186,
+          "end": 3319553,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1037",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1037"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1939",
+          "begin": 3319553,
+          "end": 3321465,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1038",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah ça c'est c'est de naissance y a rien à faire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1038"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1940",
+          "begin": 3321465,
+          "end": 3321832,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1039",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1039"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1941",
+          "begin": 3324811,
+          "end": 3328041,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1040",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qui est-ce qui reprend l'autre le plus souvent vous reprenez plus souvent votre femme"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1040"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1942",
+          "begin": 3328041,
+          "end": 3330189,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1041",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui oh oui oui c'est sûrement moi plus souvent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1041"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1943",
+          "begin": 3328041,
+          "end": 3330189,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1041",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ou votre femme vous reprend plus souvent ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1041"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1944",
+          "begin": 3330189,
+          "end": 3332530,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1042",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui c'est vous le plus souvent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1042"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1945",
+          "begin": 3330189,
+          "end": 3332530,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1042",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui sans sans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1042"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1946",
+          "begin": 3332530,
+          "end": 3336683,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1043",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "sans chamailler mais j'aime pas la la je vous l'ai déjà dit j'aime pas la guerre alors"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1043"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1947",
+          "begin": 3336683,
+          "end": 3339040,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1043",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais c'est certainement moi qui la reprends le plus souvent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1043"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1948",
+          "begin": 3339040,
+          "end": 3339507,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1044",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1044"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1949",
+          "begin": 3340299,
+          "end": 3342250,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1045",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et dans la façon de parler de votre fils ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1045"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1950",
+          "begin": 3343606,
+          "end": 3345210,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1045",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce qu'y a des choses qui vous agacent ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1045"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1951",
+          "begin": 3345890,
+          "end": 3348231,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1046",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh hm non non non non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1046"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1952",
+          "begin": 3348231,
+          "end": 3350008,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1046",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "certainement pas si vous voulez mon fils"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1046"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1953",
+          "begin": 3350008,
+          "end": 3351013,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1046",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1046"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1954",
+          "begin": 3351013,
+          "end": 3353586,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1046",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "va de plus en plus être instruit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1046"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1955",
+          "begin": 3353586,
+          "end": 3353880,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1047",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1047"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1956",
+          "begin": 3353880,
+          "end": 3356202,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1048",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors c'est plutôt lui qui va pouvoir nous reprendre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1048"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1957",
+          "begin": 3357346,
+          "end": 3358760,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1049",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "alors vous vous le reprenez pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1049"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1958",
+          "begin": 3359961,
+          "end": 3361198,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1050",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm non euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1050"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1959",
+          "begin": 3361198,
+          "end": 3363365,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1051",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "c'est j'ai pas à me plaindre de sa conduite"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1051"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1960",
+          "begin": 3363365,
+          "end": 3365355,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1051",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et dans son parler"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1051"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1961",
+          "begin": 3363365,
+          "end": 3365355,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1051",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui enfin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1051"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1962",
+          "begin": 3365355,
+          "end": 3368306,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1052",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh lui même il serait outré de mal parler"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1052"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1963",
+          "begin": 3368306,
+          "end": 3368847,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1053",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1053"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1964",
+          "begin": 3377211,
+          "end": 3380101,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1053",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce qu'y a quand même des mots que vous lui interdisez de prononcer ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1053"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1965",
+          "begin": 3380997,
+          "end": 3383497,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1054",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh c'est encore pas arrivé parce que de lui-même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1054"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1966",
+          "begin": 3383497,
+          "end": 3385262,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1054",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il ne prononcerait pas"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1054"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1967",
+          "begin": 3386131,
+          "end": 3386633,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1054",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "un mot euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1054"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1968",
+          "begin": 3386633,
+          "end": 3387155,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1055",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1055"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1969",
+          "begin": 3387155,
+          "end": 3388217,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1056",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "interdit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1056"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1970",
+          "begin": 3388217,
+          "end": 3388662,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1057",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1057"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1971",
+          "begin": 3393476,
+          "end": 3395373,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1057",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais si ça lui arrivait vous le punissez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1057"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1972",
+          "begin": 3395373,
+          "end": 3396671,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1058",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ben évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1058"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1973",
+          "begin": 3396671,
+          "end": 3397077,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1059",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1059"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1974",
+          "begin": 3397077,
+          "end": 3399534,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1060",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça évidemment parce que nous avons été élevés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1060"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1975",
+          "begin": 3399534,
+          "end": 3404231,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1060",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à l'ancienne mode évidemment nos parents étaient assez durs mais c'était tout à fait juste"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1060"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1976",
+          "begin": 3405220,
+          "end": 3406132,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1061",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui vous trouvez que c'était ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1061"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1977",
+          "begin": 3406132,
+          "end": 3407952,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1062",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah moi je trouve que c'était tout à fait juste"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1062"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1978",
+          "begin": 3407952,
+          "end": 3408265,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1062",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1062"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1979",
+          "begin": 3408868,
+          "end": 3409065,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1063",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vos"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1063"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1980",
+          "begin": 3409065,
+          "end": 3412346,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1064",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et mes frères ont élevé leurs enfants comme nous avons été élevés ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1064"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1981",
+          "begin": 3412890,
+          "end": 3412971,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1065",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1065"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1982",
+          "begin": 3412971,
+          "end": 3416661,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1066",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on peut très bien causer normalement sans c'est s- mal euh s'exprimer"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1066"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1983",
+          "begin": 3416661,
+          "end": 3417399,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1067",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1067"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1984",
+          "begin": 3417399,
+          "end": 3420049,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1068",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vos parents faisaient attention à la façon dont vous parliez ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1068"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1985",
+          "begin": 3420049,
+          "end": 3420706,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1069",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1069"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1986",
+          "begin": 3420706,
+          "end": 3422699,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1069",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui oui oui oui oui parce que eux-mêmes"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1069"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1987",
+          "begin": 3423704,
+          "end": 3425485,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1069",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "n'auraient pas mal parlé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1069"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1988",
+          "begin": 3426532,
+          "end": 3428583,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1069",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm hm tout en n'étant pas instruits"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1069"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1989",
+          "begin": 3428583,
+          "end": 3428989,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1070",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1070"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1990",
+          "begin": 3428989,
+          "end": 3429881,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1071",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais tout de même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1071"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1991",
+          "begin": 3431871,
+          "end": 3434343,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1072",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça jam- jamais on a eu un mauvais langage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1072"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1992",
+          "begin": 3431871,
+          "end": 3434343,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1072",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1072"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1993",
+          "begin": 3434343,
+          "end": 3434788,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1073",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1073"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1994",
+          "begin": 3434788,
+          "end": 3436067,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1074",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ils n'auraient pas toléré"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1074"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1995",
+          "begin": 3436067,
+          "end": 3436959,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1074",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "à tous points de vue"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1074"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1996",
+          "begin": 3437983,
+          "end": 3439571,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1075",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qui est-ce qui vous reprenait le plus souvent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1075"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1997",
+          "begin": 3439571,
+          "end": 3441120,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1075",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "votre père ou votre mère ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1075"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1998",
+          "begin": 3441120,
+          "end": 3442936,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1076",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh c'est la mère ah c'est maman ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1076"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a1999",
+          "begin": 3442936,
+          "end": 3443365,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1077",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1077"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2000",
+          "begin": 3443365,
+          "end": 3443846,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1078",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1078"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2001",
+          "begin": 3444744,
+          "end": 3447255,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1079",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pour quel genre de choses surtout elle vous reprenait ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1079"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2002",
+          "begin": 3450133,
+          "end": 3450597,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1080",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça vous savez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1080"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2003",
+          "begin": 3451447,
+          "end": 3452088,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1080",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "elle avait p-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1080"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2004",
+          "begin": 3452088,
+          "end": 3454290,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1080",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "elle nous a tellement bien élevés petits"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1080"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2005",
+          "begin": 3454290,
+          "end": 3455797,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1080",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh que même étant grands"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1080"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2006",
+          "begin": 3456434,
+          "end": 3458601,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1080",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "elle n'avait pas euh beaucoup à nous reprendre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1080"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2007",
+          "begin": 3458601,
+          "end": 3458852,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1081",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1081"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2008",
+          "begin": 3458852,
+          "end": 3461715,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1082",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce qu'on savait d'avance euh ce qui lui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1082"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2009",
+          "begin": 3458852,
+          "end": 3461715,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1082",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "plaisait et déplaisait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1082"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2010",
+          "begin": 3462237,
+          "end": 3462666,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1082",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1082"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2011",
+          "begin": 3463404,
+          "end": 3463582,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1082",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1082"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2012",
+          "begin": 3463582,
+          "end": 3465749,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1083",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "enfin je veux dire pour le langage c'était"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1083"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2013",
+          "begin": 3466889,
+          "end": 3470041,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1084",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh pour le langage non elle n'aurait pas eu à nous reprendre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1084"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2014",
+          "begin": 3470041,
+          "end": 3471548,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1084",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce que je vous dis"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1084"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2015",
+          "begin": 3471548,
+          "end": 3473325,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1084",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "elle n'aurait pu nous prendre que les choses"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1084"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2016",
+          "begin": 3474156,
+          "end": 3478004,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1084",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh des mots outrageants et jamais on en a prononcé"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1084"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2017",
+          "begin": 3478004,
+          "end": 3478433,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1085",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1085"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2018",
+          "begin": 3478433,
+          "end": 3478958,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1086",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de vilaines choses"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1086"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2019",
+          "begin": 3479692,
+          "end": 3480059,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1087",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1087"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2020",
+          "begin": 3481779,
+          "end": 3482111,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1087",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1087"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2021",
+          "begin": 3485569,
+          "end": 3488335,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1087",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "euh je vais regarder où on en est sur euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1087"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2022",
+          "begin": 3488335,
+          "end": 3490069,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1088",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "on va poser ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1088"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2023",
+          "begin": 3490069,
+          "end": 3493744,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1088",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "si un étranger voulait venir en France pour apprendre le français ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1088"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2024",
+          "begin": 3493744,
+          "end": 3494424,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1089",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1089"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2025",
+          "begin": 3494424,
+          "end": 3496978,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1090",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "dans quelle région est-ce qu'il doit euh vous v-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1090"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2026",
+          "begin": 3496978,
+          "end": 3498276,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1090",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "vous lui conseilleriez d'aller ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1090"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2027",
+          "begin": 3498276,
+          "end": 3500353,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1091",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "où il devrait aller d'après vous ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1091"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2028",
+          "begin": 3498276,
+          "end": 3500353,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1091",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah pour le meilleur langage"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1091"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2029",
+          "begin": 3500353,
+          "end": 3500797,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1092",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1092"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2030",
+          "begin": 3500797,
+          "end": 3502575,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1093",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je crois que ça doit être la ville de Lyon"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1093"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2031",
+          "begin": 3503139,
+          "end": 3503800,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1094",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de Lyon ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1094"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2032",
+          "begin": 3503800,
+          "end": 3507030,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1095",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je crois que c'est Lyon qui cause le mieux le français sans accent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1095"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2033",
+          "begin": 3503800,
+          "end": 3507030,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1095",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1095"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2034",
+          "begin": 3507787,
+          "end": 3508579,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1096",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "sans accent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1096"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2035",
+          "begin": 3508579,
+          "end": 3508850,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1097",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1097"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2036",
+          "begin": 3509530,
+          "end": 3511581,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1098",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et est-ce qu'y a des endroits qu'il devrait"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1098"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2037",
+          "begin": 3512161,
+          "end": 3512918,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1098",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "éviter ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1098"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2038",
+          "begin": 3514966,
+          "end": 3515839,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1099",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1099"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2039",
+          "begin": 3515839,
+          "end": 3517790,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1099",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le Midi euh le Midi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1099"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2040",
+          "begin": 3518312,
+          "end": 3522353,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1099",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "où on a du mal nous-mêmes Français à les comprendre le Midi ou la Bretagne évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1099"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2041",
+          "begin": 3522353,
+          "end": 3523149,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1100",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1100"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2042",
+          "begin": 3523149,
+          "end": 3524447,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1100",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à cause de quoi ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1100"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2043",
+          "begin": 3524447,
+          "end": 3525645,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1101",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ben de leur accent"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1101"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2044",
+          "begin": 3525645,
+          "end": 3526093,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1102",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1102"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2045",
+          "begin": 3527098,
+          "end": 3530502,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1103",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qui rend presque le français hein inintelligible"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1103"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2046",
+          "begin": 3530502,
+          "end": 3530892,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1104",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1104"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2047",
+          "begin": 3531549,
+          "end": 3535378,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1104",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et pour bien apprendre le français quel genre de gens est-ce qu'il doit fréquenter ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1104"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2048",
+          "begin": 3536483,
+          "end": 3537530,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1105",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh évidemment tous les"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1105"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2049",
+          "begin": 3537530,
+          "end": 3538055,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1106",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pourquoi ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1106"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2050",
+          "begin": 3538055,
+          "end": 3540045,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1107",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "tous les le corps enseignant d'abord"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1107"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2051",
+          "begin": 3540532,
+          "end": 3540729,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1108",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1108"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2052",
+          "begin": 3540729,
+          "end": 3541579,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1109",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1109"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2053",
+          "begin": 3541579,
+          "end": 3542626,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1109",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh les"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1109"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2054",
+          "begin": 3543364,
+          "end": 3546710,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1109",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "les av- oui les avocats les professions libérales quoi les docteurs"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1109"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2055",
+          "begin": 3546710,
+          "end": 3547324,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1110",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1110"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2056",
+          "begin": 3546710,
+          "end": 3547324,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1110",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1110"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2057",
+          "begin": 3548835,
+          "end": 3549418,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1111",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pourquoi ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1111"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2058",
+          "begin": 3549418,
+          "end": 3552393,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1112",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh bien et tous ces gens s'expriment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1112"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2059",
+          "begin": 3552393,
+          "end": 3554557,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1112",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "dans le grand français forcément"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1112"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2060",
+          "begin": 3554557,
+          "end": 3555237,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1113",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1113"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2061",
+          "begin": 3555994,
+          "end": 3559150,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1113",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et est-ce qu'y a des gens qu'il devrait éviter de fréquenter au contraire ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1113"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2062",
+          "begin": 3561055,
+          "end": 3561383,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1114",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1114"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2063",
+          "begin": 3562060,
+          "end": 3562856,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1114",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça va de soit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1114"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2064",
+          "begin": 3563381,
+          "end": 3563536,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1115",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1115"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2065",
+          "begin": 3563536,
+          "end": 3564892,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1116",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça ça va de soi évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1116"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2066",
+          "begin": 3566070,
+          "end": 3566901,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1116",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est sûr"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1116"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2067",
+          "begin": 3566901,
+          "end": 3567465,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1117",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1117"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2068",
+          "begin": 3568102,
+          "end": 3569223,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1117",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "quels par exemple"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1117"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2069",
+          "begin": 3569223,
+          "end": 3570482,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1118",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ben c'est"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1118"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2070",
+          "begin": 3570482,
+          "end": 3575080,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1118",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh moi je ne voudrais pas aller me promener dans les bars ou les trucs comme ça euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1118"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2071",
+          "begin": 3575080,
+          "end": 3575702,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1119",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1119"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2072",
+          "begin": 3575702,
+          "end": 3576324,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1120",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1120"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2073",
+          "begin": 3576324,
+          "end": 3578279,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1120",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "des endroits tout à fait déplacés quoi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1120"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2074",
+          "begin": 3578746,
+          "end": 3579847,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1120",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "qui s'expriment euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1120"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2075",
+          "begin": 3580524,
+          "end": 3582440,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1120",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en mauvais très mauvais français"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1120"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2076",
+          "begin": 3583213,
+          "end": 3583545,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1121",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1121"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2077",
+          "begin": 3583545,
+          "end": 3584897,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1122",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "non non ça ces choses-là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1122"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2078",
+          "begin": 3585844,
+          "end": 3586833,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1122",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "je les évite moi"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1122"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2079",
+          "begin": 3586833,
+          "end": 3587416,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1123",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1123"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2080",
+          "begin": 3588324,
+          "end": 3593034,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1123",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et quels s- d'après vous quelles sont les difficultés de la langue française pour un étranger ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1123"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2081",
+          "begin": 3594505,
+          "end": 3594969,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1123",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "surtout"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1123"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2082",
+          "begin": 3596186,
+          "end": 3596769,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1124",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2083",
+          "begin": 3598469,
+          "end": 3600072,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1124",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh nos mots"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2084",
+          "begin": 3600072,
+          "end": 3601695,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1124",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "nos mots stupides"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2085",
+          "begin": 3601695,
+          "end": 3603047,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1124",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "comme euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2086",
+          "begin": 3603047,
+          "end": 3605288,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1124",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh avec des"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2087",
+          "begin": 3605288,
+          "end": 3607958,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1124",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "des homonymes du diable le mot ver"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1124"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2088",
+          "begin": 3607958,
+          "end": 3608252,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1125",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1125"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2089",
+          "begin": 3608252,
+          "end": 3608816,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1126",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "entre autres"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1126"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2090",
+          "begin": 3609338,
+          "end": 3611119,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1127",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh qui a sept ou huit sens"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1127"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2091",
+          "begin": 3609338,
+          "end": 3611119,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1127",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1127"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2092",
+          "begin": 3611119,
+          "end": 3613248,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1128",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ver de terre verre à boire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1128"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2093",
+          "begin": 3613248,
+          "end": 3616285,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1128",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh la couleur vert le verre à vitre et"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1128"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2094",
+          "begin": 3616285,
+          "end": 3616675,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1129",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1129"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2095",
+          "begin": 3616675,
+          "end": 3617081,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1130",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1130"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2096",
+          "begin": 3617081,
+          "end": 3619847,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1130",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "alors voilà des choses idiotes que je trouve pour un étranger"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1130"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2097",
+          "begin": 3619847,
+          "end": 3621605,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1130",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le même mot signifie"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1130"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2098",
+          "begin": 3621605,
+          "end": 3624178,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1130",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "en en rajoutant un S ou un T"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1130"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2099",
+          "begin": 3624178,
+          "end": 3626013,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1131",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ou un R ou un E"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1131"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2100",
+          "begin": 3624178,
+          "end": 3626013,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1131",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1131"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2101",
+          "begin": 3626013,
+          "end": 3628467,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1132",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on on on transforme le même mot"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1132"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2102",
+          "begin": 3628467,
+          "end": 3629958,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1133",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "avec la même prononciation"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1133"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2103",
+          "begin": 3628467,
+          "end": 3629958,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1133",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1133"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2104",
+          "begin": 3629958,
+          "end": 3630982,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1134",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est stupide"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1134"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2105",
+          "begin": 3630982,
+          "end": 3631392,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1135",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1135"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2106",
+          "begin": 3631392,
+          "end": 3631647,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1136",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1136"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2107",
+          "begin": 3632559,
+          "end": 3635248,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1136",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "comme pend et euh beaucoup de mot en euh dans le français"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1136"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2108",
+          "begin": 3636546,
+          "end": 3638072,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1137",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce qu'on parle bien à Orléans ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1137"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2109",
+          "begin": 3638787,
+          "end": 3639486,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1137",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "d'après vous ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1137"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2110",
+          "begin": 3639486,
+          "end": 3641577,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1138",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh oui tout de même"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1138"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2111",
+          "begin": 3641577,
+          "end": 3643261,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1138",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il y a un petit brin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1138"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2112",
+          "begin": 3643261,
+          "end": 3648168,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1138",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de de solognot comme moi je l'ai le pays de Blois et la le Loire-et-Cher le Centre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1138"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2113",
+          "begin": 3648168,
+          "end": 3648423,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1139",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1139"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2114",
+          "begin": 3648423,
+          "end": 3649798,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1140",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on on cause ben"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1140"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2115",
+          "begin": 3649798,
+          "end": 3650339,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1140",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "comme on dit"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1140"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2116",
+          "begin": 3650339,
+          "end": 3650745,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1141",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1141"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2117",
+          "begin": 3650745,
+          "end": 3651715,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1142",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "on parle le ben"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1142"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2118",
+          "begin": 3651715,
+          "end": 3652047,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1143",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1143"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2119",
+          "begin": 3652047,
+          "end": 3655756,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1144",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "parce qu'au lieu de dire bien on dit ben et moi ça me c'est sans arrêt"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1144"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2120",
+          "begin": 3655756,
+          "end": 3657112,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1145",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "et on reconnaît"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1145"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2121",
+          "begin": 3655756,
+          "end": 3657112,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1145",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1145"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2122",
+          "begin": 3657112,
+          "end": 3658004,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1146",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "le centre"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1146"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2123",
+          "begin": 3658004,
+          "end": 3659592,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1146",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de la France par rapport à ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1146"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2124",
+          "begin": 3659592,
+          "end": 3660253,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1147",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ah bon ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1147"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2125",
+          "begin": 3660253,
+          "end": 3660566,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1148",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1148"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2126",
+          "begin": 3661033,
+          "end": 3663892,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1149",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui on est du pa- du pays qu'on parle le ben"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1149"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2127",
+          "begin": 3661033,
+          "end": 3663892,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1149",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1149"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2128",
+          "begin": 3665090,
+          "end": 3666968,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1150",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce qu'y a des gens qui parlent pas bien ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1150"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2129",
+          "begin": 3667976,
+          "end": 3668575,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1150",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à Orléans ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1150"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2130",
+          "begin": 3669580,
+          "end": 3670914,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1151",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh de moins en moins"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1151"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2131",
+          "begin": 3670914,
+          "end": 3672112,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1152",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de moins en moins"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1152"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2132",
+          "begin": 3670914,
+          "end": 3672112,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1152",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "de moins en moins"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1152"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2133",
+          "begin": 3672112,
+          "end": 3673024,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1153",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1153"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2134",
+          "begin": 3673024,
+          "end": 3673472,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1154",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1154"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2135",
+          "begin": 3673472,
+          "end": 3674766,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1155",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh oui tous les gens"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1155"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2136",
+          "begin": 3675578,
+          "end": 3676316,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1155",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "même les"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1155"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2137",
+          "begin": 3676316,
+          "end": 3677556,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1155",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "même les ouvriers"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1155"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2138",
+          "begin": 3678271,
+          "end": 3682215,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1155",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh s'expriment en en vraiment français sans argot"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1155"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2139",
+          "begin": 3682853,
+          "end": 3683185,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1156",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1156"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2140",
+          "begin": 3684982,
+          "end": 3687806,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1157",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "est-ce que à votre avis le français c'est une langue difficile ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1157"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2141",
+          "begin": 3688540,
+          "end": 3689912,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1158",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oh euh nous sommes nés"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1158"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2142",
+          "begin": 3689912,
+          "end": 3690534,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1158",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh non"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1158"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2143",
+          "begin": 3690534,
+          "end": 3691504,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1159",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "pour un étranger"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1159"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2144",
+          "begin": 3691504,
+          "end": 3694079,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1160",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah pour un étranger il paraît il paraît"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1160"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2145",
+          "begin": 3694721,
+          "end": 3695030,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1161",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1161"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2146",
+          "begin": 3695030,
+          "end": 3696614,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1162",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "que le français est assez difficile"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1162"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2147",
+          "begin": 3696614,
+          "end": 3699222,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1162",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "certainement pour ces choses-là déjà"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1162"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2148",
+          "begin": 3699222,
+          "end": 3701930,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1162",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh ce ces nombreux sens"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1162"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2149",
+          "begin": 3701930,
+          "end": 3702838,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1162",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1162"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2150",
+          "begin": 3702838,
+          "end": 3703128,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1163",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1163"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2151",
+          "begin": 3705102,
+          "end": 3707478,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "si quelqu'un était de passage à"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2152",
+          "begin": 3707478,
+          "end": 3708425,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "à Orléans"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2153",
+          "begin": 3708425,
+          "end": 3710071,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et vous demandait ce qui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2154",
+          "begin": 3711253,
+          "end": 3713185,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "ce qu'il pouvait faire pendant son séjour"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2155",
+          "begin": 3713730,
+          "end": 3714989,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que vous lui conseillez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2156",
+          "begin": 3715685,
+          "end": 3716191,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1164",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "de faire ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1164"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2157",
+          "begin": 3716693,
+          "end": 3719668,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1165",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah nos châteaux de la Loire évidemment puisque ça c'est ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1165"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2158",
+          "begin": 3720305,
+          "end": 3724478,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1165",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "euh les les les les beautés des sites euh aux alentours"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1165"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2159",
+          "begin": 3724478,
+          "end": 3724733,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1166",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "hm hm"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1166"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2160",
+          "begin": 3724733,
+          "end": 3729004,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1167",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "la forêt d'Orléans le Loiret la Loire les bords de la Loire"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1167"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2161",
+          "begin": 3729004,
+          "end": 3731249,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1168",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment puis alors nos musées"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1168"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2162",
+          "begin": 3729004,
+          "end": 3731249,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1168",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1168"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2163",
+          "begin": 3731249,
+          "end": 3732528,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1169",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment nos églises"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1169"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2164",
+          "begin": 3732528,
+          "end": 3733053,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1170",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1170"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2165",
+          "begin": 3733749,
+          "end": 3735066,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1171",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "l'archéologie tout ça vous savez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1171"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2166",
+          "begin": 3736245,
+          "end": 3736635,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1172",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1172"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2167",
+          "begin": 3736635,
+          "end": 3737833,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1173",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ah c'est un beau coin"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1173"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2168",
+          "begin": 3737833,
+          "end": 3738281,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1174",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1174"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2169",
+          "begin": 3740039,
+          "end": 3740352,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1175",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "là"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1175"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2170",
+          "begin": 3740352,
+          "end": 3744045,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1175",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est un petit peu différent on imagi- imaginez que quelqu'un frappe à la porte"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1175"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2171",
+          "begin": 3744045,
+          "end": 3744393,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1176",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1176"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2172",
+          "begin": 3744393,
+          "end": 3745247,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1177",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que vous lui dites ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1177"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2173",
+          "begin": 3746062,
+          "end": 3746526,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1178",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "entrez"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1178"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2174",
+          "begin": 3747360,
+          "end": 3747708,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1178",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "évidemment"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1178"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2175",
+          "begin": 3748481,
+          "end": 3751885,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1179",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "et si vous voulez l'inviter euh à prendre quelque chose à la maison ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1179"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2176",
+          "begin": 3751885,
+          "end": 3752990,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1179",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que vous lui dites ?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1179"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2177",
+          "begin": 3754230,
+          "end": 3757301,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1180",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "comment euh c'est c'est la moindre des choses aussi ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1180"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2178",
+          "begin": 3757301,
+          "end": 3760545,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1180",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ça c'est un peu le Solognot le Solognot lui il offre toujours"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1180"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2179",
+          "begin": 3760545,
+          "end": 3763077,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1181",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "mais quelle phrase vous lui dites pour lui dire?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1181"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2180",
+          "begin": 3760545,
+          "end": 3763077,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1181",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "mais au fond il il cache bien vite"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1181"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2181",
+          "begin": 3763869,
+          "end": 3765383,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1183",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "il cache bien vite euh ce qu'y a sur la table"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1183"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2182",
+          "begin": 3765383,
+          "end": 3766156,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1184",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "c'est pas gentil ça"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1184"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2183",
+          "begin": 3766156,
+          "end": 3767083,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1185",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui oui oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1185"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2184",
+          "begin": 3767083,
+          "end": 3768802,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1186",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "qu'est-ce que vous lui dites euh"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1186"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2185",
+          "begin": 3768802,
+          "end": 3770302,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1186",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "comme phrase d'invitation?"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1186"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2186",
+          "begin": 3770302,
+          "end": 3771255,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1186",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "enfin co-"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1186"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2187",
+          "begin": 3771255,
+          "end": 3772859,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1187",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "ben je vous offre quelque chose"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1187"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2188",
+          "begin": 3771255,
+          "end": 3772859,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1187",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "n'importe"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1187"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2189",
+          "begin": 3772859,
+          "end": 3773206,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1188",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1188"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2190",
+          "begin": 3773206,
+          "end": 3773515,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1189",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr002"
+              },
+              "content": "oui"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1189"
+          }
+        },
+        {
+          "id": "11280.100/crdo-ESLO1_ENT_047_a2191",
+          "begin": 3775640,
+          "end": 3776123,
+          "media": "11280.100/crdo-ESLO1_ENT_047_m2",
+          "type": "11280.100/crdo-ESLO1_ENT_047_trn1190",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "speaker": {
+                "id-ref": "11280.100/crdo-ESLO1_ENT_047_spkr001"
+              },
+              "content": "bien"
+            }
+          },
+          "meta": {
+            "id-ref": "11280.100/crdo-ESLO1_ENT_047_trn1190"
+          }
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-CAYCHAX_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:53+00:00",
+        "dc:modified": "2016-06-01T23:47:53+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Caychax : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144792_09-CAYCHAX_22km.wav",
+          "meta": {
+            "dc:duration": 198000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Caychax : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144792.wav",
+          "meta": {
+            "dc:duration": 198000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Caychax : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144792_09-CAYCHAX_44k.mp3",
+          "meta": {
+            "dc:duration": 198000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Caychax : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a001",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme aviá que dos gojats.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3485
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a002",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pus jove diguèc a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3485,
+          "end": 7312
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a003",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« es temps que siá le mieu mèstre,",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 7312,
+          "end": 11264
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a004",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que aja argent;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 11264,
+          "end": 14168
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a005",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cau que me'n pèsca anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 14168,
+          "end": 17606
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a006",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que veja país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 17606,
+          "end": 20103
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a007",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben,",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 20103,
+          "end": 22855
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a008",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que devi aver. »",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 22855,
+          "end": 25217
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a009",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ò le mieu gojat,diguèc le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 25217,
+          "end": 29321
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a010",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma voldràs;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 29321,
+          "end": 31974
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a011",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ès un maishant, e siràs punit.",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 31974,
+          "end": 36326
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a012",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, derbic un tiroèr,",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 36326,
+          "end": 40694
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a013",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "partatgèc son ben ende fer dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 40694,
+          "end": 45104
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a014",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualque jorns aprèts, le maishant se n'anèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 45104,
+          "end": 51985
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a015",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fèrn le fièr,",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 51985,
+          "end": 55336
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a016",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "sense dire adieu a diguns.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 55336,
+          "end": 59304
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a017",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Travessèc un pauc de bosiasses,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 59304,
+          "end": 63173
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a018",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsques e de rius.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 63173,
+          "end": 66619
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a019",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualqui mèses,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 66619,
+          "end": 70099
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a020",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "deviè vendre la sia farda a una vièlha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 70099,
+          "end": 75034
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a021",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèc per estre vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 75034,
+          "end": 78723
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a022",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L'envoièren enà's camps per gardar les ases e li biòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 78723,
+          "end": 85989
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a023",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz, fec plan malerós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 85989,
+          "end": 89670
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a024",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ajec pas mèi de lèit per dermir la nèit,",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 89670,
+          "end": 94028
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a025",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni fòc per se calfar quant aviá fret.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 94028,
+          "end": 98553
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a026",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aviá qualque còp tant de talent,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 98553,
+          "end": 102754
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a027",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu'aurá plan manjat aquera fèdolh de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 102754,
+          "end": 106637
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a028",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquera fruta poirida que manjan les pòrcs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 106637,
+          "end": 111163
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a029",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mes diguns i balhava pas res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 111163,
+          "end": 115210
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a030",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Una nèit, le ventre vuèit,",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 115210,
+          "end": 119232
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a031",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishèc cáire sus una tronca,",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 119232,
+          "end": 122977
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a032",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e guèitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 122977,
+          "end": 126863
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a033",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausèls que volavan laugèrament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 126863,
+          "end": 131227
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a034",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, vic arrivar dins le cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 131227,
+          "end": 135112
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a035",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la duna e i estels.",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 135112,
+          "end": 138311
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a036",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E se diguèc en plorant :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 138311,
+          "end": 141720
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a037",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Adà, l'ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 141720,
+          "end": 144966
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a038",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 144966,
+          "end": 148004
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a039",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "que an pan e vin,",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 148004,
+          "end": 151157
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a040",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "iòus e formatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 151157,
+          "end": 154792
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a041",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que ne vòlen.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 154792,
+          "end": 158238
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a042",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Dins aquel temps, ieu mòri de talent ací.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 158238,
+          "end": 163654
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a043",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben, me vau lhevar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 163654,
+          "end": 167257
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a044",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "virè trobar le mieu paire, e i dirè :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 167257,
+          "end": 171988
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a045",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« fèi un pecat quan volguèi voi dishar;",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 171988,
+          "end": 176355
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a046",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agèi un gran tòrt",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 176355,
+          "end": 180002
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a047",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me'n puniscatz,",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 180002,
+          "end": 183365
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a048",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ac sabi plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 183365,
+          "end": 185721
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a049",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Maperèi poi mei le vòstre gojat,",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 185721,
+          "end": 189815
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a050",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "menatz-me coma le darrèr dei vòstre vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 189815,
+          "end": 194419
+        },
+        {
+          "id": "11280.100/crdo-09-CAYCHAX_SOUND_a051",
+          "media": "11280.100/crdo-09-CAYCHAX_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Fèi copable, mèi m'enujava luenh de vos. »",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 194419,
+          "end": 199105.306122
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-DUN_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:54+00:00",
+        "dc:modified": "2016-06-01T23:47:54+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Dun : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144793_09-DUN_22km.wav",
+          "meta": {
+            "dc:duration": 187000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Dun : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144793.wav",
+          "meta": {
+            "dc:duration": 187000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Dun : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144793_09-DUN_44k.mp3",
+          "meta": {
+            "dc:duration": 187000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Dun : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a001",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme aviá pas que dos gojats",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3503
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a002",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pus jove diguèc a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3503,
+          "end": 7654
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a003",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Es temps que siague mon mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 7654,
+          "end": 10921
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a004",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’aja argent ;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 10921,
+          "end": 13083
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a005",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cal que pesca me’n anar,",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 13083,
+          "end": 15993
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a006",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que veja país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 15993,
+          "end": 18412
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a007",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partissetz vòstre ben,",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 18412,
+          "end": 21034
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a008",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que debi aver. »",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 21034,
+          "end": 23617
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a009",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ò mon filh, diguèc le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 23617,
+          "end": 27460
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a010",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma voldràs.",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 27460,
+          "end": 29724
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a011",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Es un maishant, e siràs punit.",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 29724,
+          "end": 33126
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a012",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, durbisquèc una tireta",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 33126,
+          "end": 37006
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a013",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "partisquèc son ben, e ne fasquèc dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 37006,
+          "end": 41481
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a014",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualque jorns après, le maishant se n’anguèc del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 41481,
+          "end": 46674
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a015",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fasent le fièr,",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 46674,
+          "end": 49261
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a016",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sense dire adieu a diguns.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 49261,
+          "end": 52467
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a017",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Travetsèc fòrça bosigas,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 52467,
+          "end": 56136
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a018",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "bòsques e rivièras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 56136,
+          "end": 59337
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a019",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualqui meses",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 59337,
+          "end": 63126
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a020",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "devèc vendre sos vestits a una vielha femna.",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 63126,
+          "end": 68390
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a021",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loguèc per estre vailet",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 68390,
+          "end": 71786
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a022",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièguen dins les camps per gardar les ases e li biòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 71786,
+          "end": 79249
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a023",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz, fosquèc plan malerós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 79249,
+          "end": 82976
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a024",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèc pas mèi de lèit per durmir anèit",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 82976,
+          "end": 87022
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a025",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fòc per se calfar quan aviá fret.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 87022,
+          "end": 91213
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a026",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "T’aviá qualque còp talament talent",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 91213,
+          "end": 95413
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a027",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’auriá plan manjat aquelas fèlhas de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 95413,
+          "end": 99611
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a028",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquela fruta poirida que manjan les pòrcs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 99611,
+          "end": 104572
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a029",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mès diguns i donava pas res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 104572,
+          "end": 107993
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a030",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un soèr, le ventre voit,",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 107993,
+          "end": 111587
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a031",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishèc tombar sus una turra",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 111587,
+          "end": 115351
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a032",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e gaitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 115351,
+          "end": 119154
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a033",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausèls que volavan leugèrament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 119154,
+          "end": 123674
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a034",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E pèi, vegèc paréisher dins le cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 123674,
+          "end": 128133
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a035",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 128133,
+          "end": 131701
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a036",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguèc en plorant :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 131701,
+          "end": 134993
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a037",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "A la bàs, l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 134993,
+          "end": 138600
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a038",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets,",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 138600,
+          "end": 141237
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a039",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’an pan e vin,",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 141237,
+          "end": 143956
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a040",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "iòus e fromatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 143956,
+          "end": 147104
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a041",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que ne vòlen.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 147104,
+          "end": 150527
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a042",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Dins aquel temps, ieu mòri de talent ací.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 150527,
+          "end": 155543
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a043",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben, me vau lhevar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 155543,
+          "end": 158484
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a044",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "anirè trobar mon paire, e i dirè :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 158484,
+          "end": 162903
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a045",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« fasquègui un pecat quan voi volguègui dishar",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 162903,
+          "end": 167348
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a046",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agèi plan tòrt, e cal que me’n castiguetz,",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 167348,
+          "end": 173391
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a047",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ac sèi plan.",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 173391,
+          "end": 175710
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a048",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mes non me’n sè pas pus vòstre filh",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 175710,
+          "end": 179760
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a049",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tratatz-me coma le darnièr de vostri vailets.",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 179760,
+          "end": 184088
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a050",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Fosquèri copable,",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 184088,
+          "end": 186290
+        },
+        {
+          "id": "11280.100/crdo-09-DUN_SOUND_a051",
+          "media": "11280.100/crdo-09-DUN_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "mes m’enejava loènh de vos. »",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 186290,
+          "end": 188969.795918
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:54+00:00",
+        "dc:modified": "2016-06-01T23:47:54+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : La Bastide-de-Lordat : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144794_09-LABASTIDE-DE-LORDAT_22km.wav",
+          "meta": {
+            "dc:duration": 166000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : La Bastide-de-Lordat : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144794.wav",
+          "meta": {
+            "dc:duration": 166000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : La Bastide-de-Lordat : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144794_09-LABASTIDE-DE-LORDAT_44k.mp3",
+          "meta": {
+            "dc:duration": 166000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : La Bastide-de-Lordat : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a001",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme n’aviá que dos gojats",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3464
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a002",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pus jove diguec a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3464,
+          "end": 6887
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a003",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Es temps que siá le mieu mèstre,",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 6887,
+          "end": 10410
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a004",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’aja argent.",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 10410,
+          "end": 12893
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a005",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Cal que me’n pèsca anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 12893,
+          "end": 15781
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a006",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que veja país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 15781,
+          "end": 18271
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a007",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben,",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 18271,
+          "end": 21150
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a008",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que devi aver.",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 21150,
+          "end": 24635
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a009",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "O le mieu filh, diguèc le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 24635,
+          "end": 28555
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a010",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma vèrgas ;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 28555,
+          "end": 30648
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a011",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es un mashant, e siràs punit.",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 30648,
+          "end": 33987
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a012",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, drubisquec una tireta",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 33987,
+          "end": 37637
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a013",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatgèc son ben e ne fasquèc dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 37637,
+          "end": 41364
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a014",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualqui jorns aprèts, le mashant se n’anguec del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 41364,
+          "end": 46646
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a015",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fèr le fièr,",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 46646,
+          "end": 48885
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a016",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e san dire adieu a digun.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 48885,
+          "end": 52246
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a017",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Travetsèc un flòc de bosigas,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 52246,
+          "end": 55280
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a018",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsques e de rius.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 55280,
+          "end": 58194
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a019",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualqui mèses",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 58194,
+          "end": 61068
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a020",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "divec vendre sas fardas a una vièlha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 61068,
+          "end": 65532
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a021",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèc per estre vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 65532,
+          "end": 68779
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a022",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièren dins les camps per gardar les ases e li biòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 68779,
+          "end": 75356
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a023",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz fosquec plan malerós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 75356,
+          "end": 78475
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a024",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Avec pas pus de lieit per dremir la nèit,",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 78475,
+          "end": 82431
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a025",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fòc per se calfar quand aviá fret.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 82431,
+          "end": 85992
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a026",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aviá qualque còp talament talent,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 85992,
+          "end": 89380
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a027",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’aurá plan manjat aquelas fèlhas de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 89380,
+          "end": 93220
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a028",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquela fruta poirida que manjan les pòrcs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 93220,
+          "end": 97087
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a029",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mès diguns i donava pas ren.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 97087,
+          "end": 100447
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a030",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Una nèit, le ventre voit,",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 100447,
+          "end": 104160
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a031",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishèc tombar sus un tanc",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 104160,
+          "end": 107176
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a032",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e gaitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 107176,
+          "end": 110226
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a033",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausels que volavan laugèrament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 110226,
+          "end": 113215
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a034",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, vesec aparéister dins le cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 113215,
+          "end": 116507
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a035",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas ;",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 116507,
+          "end": 118856
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a036",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguec en plorant :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 118856,
+          "end": 121408
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a037",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ala lènh, l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 121408,
+          "end": 124815
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a038",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets.",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 124815,
+          "end": 127156
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a039",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qu’an pan e vin,",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 127156,
+          "end": 129616
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a040",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "iòus e formatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 129616,
+          "end": 132400
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a041",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que’n vòlen.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 132400,
+          "end": 134636
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a042",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aquel temps, ieu mòri de talent ací.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 134636,
+          "end": 138667
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a043",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben, me vau levar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 138667,
+          "end": 141029
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a044",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "airè trobar mon paire, e i dirè :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 141029,
+          "end": 143834
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a045",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« fasquèi un pecat quan vos [buj] volguèi dishar,",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 143834,
+          "end": 147603
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a046",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "avèi gran tòrt,",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 147603,
+          "end": 149964
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a047",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n puniscatz,",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 149964,
+          "end": 153088
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a048",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ac sai plan ;",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 153088,
+          "end": 155486
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a049",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "me cridetz pas mes vòstre gojat,",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 155486,
+          "end": 159046
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a050",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Tretatz-me coma le darrièr des [dej] vòstres vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 159046,
+          "end": 162727
+        },
+        {
+          "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_a051",
+          "media": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Fosquei copable, mes me languissiá lènh de vos. »",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 162727,
+          "end": 167915.102041
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-LOUBENS_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:54+00:00",
+        "dc:modified": "2016-06-01T23:47:54+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Loubens : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144795_09-LOUBENS_22km.wav",
+          "meta": {
+            "dc:duration": 148000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Loubens : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144795.wav",
+          "meta": {
+            "dc:duration": 148000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Loubens : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144795_09-LOUBENS_44k.mp3",
+          "meta": {
+            "dc:duration": 148000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Loubens : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a001",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme aviá pas que dos [duj] filhs .",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3041
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a002",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pus joen diguec a son pair :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3041,
+          "end": 5988
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a003",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« es temps que siá ‘l mieu mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 5988,
+          "end": 8591
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a004",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’aja argent.",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 8591,
+          "end": 10529
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a005",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Cal que me’n pèsca anar,",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 10529,
+          "end": 12678
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a006",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que veja país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 12678,
+          "end": 14363
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a007",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben, e donatz-me çò que devi aver. »",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 14363,
+          "end": 18518
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a008",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "O’l mieu filh, diguèc le pair,",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 18518,
+          "end": 21661
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a009",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma vèlgas ;",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 21661,
+          "end": 23516
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a010",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ès un maishant, e siràs punit.",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 23516,
+          "end": 26828
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a011",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, destampèc una tireta,",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 26828,
+          "end": 30198
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a012",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "partatgèc le sieu ben,",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 30198,
+          "end": 32005
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a013",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e’n fasquèt dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 32005,
+          "end": 33840
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a014",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualqui jorns apèi, le maishant se’n anguec del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 33840,
+          "end": 38339
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a015",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fèr le fièr,",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 38339,
+          "end": 40392
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a016",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sense dire adieu en digun.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 40392,
+          "end": 43397
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a017",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Travessèc un flòc de bosics,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 43397,
+          "end": 45834
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a018",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsques e de rivièras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 45834,
+          "end": 48016
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a019",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualqui meses,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 48016,
+          "end": 51256
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a020",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "devec vendre la sieu farda a una vièlha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 51256,
+          "end": 55379
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a021",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loguèc per èsser vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 55379,
+          "end": 58397
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a022",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièren dins les camps ende gardar les ases e li biòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 58397,
+          "end": 63152
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a023",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz, fusquèc plan malerós ;",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 63152,
+          "end": 66417
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a024",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "avec pas mei de lieit per dremir la nèit,",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 66417,
+          "end": 70306
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a025",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fòc per se calfar quand aviá fret ;",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 70306,
+          "end": 74128
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a026",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "aviá qualque còp talament talent,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 74128,
+          "end": 77290
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a027",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’aurá plan manjat aquelas fèlhas de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 77290,
+          "end": 80743
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a028",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquela fruta poirida que manjan les pòrcs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 80743,
+          "end": 84421
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a029",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mès diguns i donava pas [pɔ] res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 84421,
+          "end": 87611
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a030",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Una nèit, le ventre voit,",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 87611,
+          "end": 90417
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a031",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishèc tombar sus una soca",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 90417,
+          "end": 92950
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a032",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e gaitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 92950,
+          "end": 95235
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a033",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausèls que volavan laugèrament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 95235,
+          "end": 98336
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a034",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Apèi, vesec paréisher dins le cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 98336,
+          "end": 101746
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a035",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas ;",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 101746,
+          "end": 104150
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a036",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguec en plorant :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 104150,
+          "end": 106893
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a037",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alà, l’ostal de mon pair",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 106893,
+          "end": 109557
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a038",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets ;",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 109557,
+          "end": 111460
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a039",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’an pan e vin,",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 111460,
+          "end": 113819
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a040",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "iòus e fromatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 113819,
+          "end": 116265
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a041",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que ne vòlen.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 116265,
+          "end": 118429
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a042",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "D’aquel temps, jo me mòri de talent ací ;",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 118429,
+          "end": 122511
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a043",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e ben, me vau levar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 122511,
+          "end": 125228
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a044",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "anirè trobar ‘l mieu pair e i dirè :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 125228,
+          "end": 128795
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a045",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« fasquègui un pecat quan vos volguègui dishar,",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 128795,
+          "end": 132490
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a046",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "avèi gran tòrt,",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 132490,
+          "end": 134249
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a047",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n puniscatz,",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 134249,
+          "end": 136302
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a048",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ac sabi plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 136302,
+          "end": 138205
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a049",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apelè pas [pɔj] mèi le vòste filh,",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 138205,
+          "end": 141027
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a050",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tretatz-me coma’l darrèr des vòsti vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 141027,
+          "end": 145000
+        },
+        {
+          "id": "11280.100/crdo-09-LOUBENS_SOUND_a051",
+          "media": "11280.100/crdo-09-LOUBENS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Fusquèi copable, mès m’anejava lènh de vos. »",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 145000,
+          "end": 149472.653061
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:55+00:00",
+        "dc:modified": "2016-06-01T23:47:55+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Mérens-les-Vals : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144796_09-MERENS-LES-VALS_22km.wav",
+          "meta": {
+            "dc:duration": 165000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Mérens-les-Vals : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144796.wav",
+          "meta": {
+            "dc:duration": 165000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Mérens-les-Vals : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144796_09-MERENS-LES-VALS_44k.mp3",
+          "meta": {
+            "dc:duration": 165000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Mérens-les-Vals : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a001",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme n’avía que dos /doj/ gojats.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3421
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a002",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le mès jove diguèc a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3421,
+          "end": 6847
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a003",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« es temps que sía mon mèstre,",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 6847,
+          "end": 9686
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a004",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’age argent ;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 9686,
+          "end": 12077
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a005",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cal que pèsca me n’anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 12077,
+          "end": 14589
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a006",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que vege país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 14589,
+          "end": 16831
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a007",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatgètz vòstre ben,",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 16831,
+          "end": 19166
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a008",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que devi aver. »",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 19166,
+          "end": 22075
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a009",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "O’l mieu gojat, diguec le paire",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 22075,
+          "end": 24449
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a010",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma voldràs ;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 24449,
+          "end": 26129
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a011",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ès un maishant e siràs punit.",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 26129,
+          "end": 29149
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a012",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, durbic un tiroèr,",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 29149,
+          "end": 32429
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a013",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatgèt son ben en fèr dos parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 32429,
+          "end": 35801
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a014",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualque jorn après, le maishant se n’anèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 35801,
+          "end": 39611
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a015",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fèr le fièr,",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 39611,
+          "end": 42030
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a016",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sense dire adieu a diguns.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 42030,
+          "end": 44922
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a017",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Traversè bèl còp de landes,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 44922,
+          "end": 47532
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a018",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòscs e de rivères.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 47532,
+          "end": 49340
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a019",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualques mesis,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 49340,
+          "end": 51856
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a020",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "deviè vendre sievas fardas a una vielha femna ;",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 51856,
+          "end": 55556
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a021",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loè per èstre vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 55556,
+          "end": 58429
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a022",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L'envoièren dins les camps per gardar les ases e’ls biòus",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 58429,
+          "end": 64024
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a023",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz frec plan malerós ;",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 64024,
+          "end": 66715
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a024",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agè pas mes de lieit per dremir la nèit",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 66715,
+          "end": 69728
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a025",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fòc per se calfar quan avía fret.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 69728,
+          "end": 73312
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a026",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Avía qualque còp talament fam,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 73312,
+          "end": 76967
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a027",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’auría plan manjat aquelhas fèlhas de caulet,",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 76967,
+          "end": 82012
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a028",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquelhi fruts poiridi que mangen les pòrcs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 82012,
+          "end": 86395
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a029",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mès diguns i donava pas rès.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 86395,
+          "end": 90195
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a030",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Una nèit, le ventre voit,",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 90195,
+          "end": 94303
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a031",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishè cáire sus un tronc",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 94303,
+          "end": 98602
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a032",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e guèitava per la frinèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 98602,
+          "end": 102480
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a033",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausels que volavan laugèrament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 102480,
+          "end": 106485
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a034",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E pèi, vic paréisher dins le cel*",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 106485,
+          "end": 109311
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a035",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e les esteles.",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 109311,
+          "end": 112125
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a036",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E se diguec en plorant :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 112125,
+          "end": 115737
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a037",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Ailà, l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 115737,
+          "end": 119714
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a038",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets ;",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 119714,
+          "end": 122458
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a039",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "que tenen pan e vin,",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 122458,
+          "end": 124787
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a040",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e èus e fromatge,",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 124787,
+          "end": 126773
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a041",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que’n vòlen.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 126773,
+          "end": 129147
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a042",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aquel temps, jo mòri de fam ací.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 129147,
+          "end": 133372
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a043",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben, me vau lhevar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 133372,
+          "end": 136151
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a044",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "virè trobar mon paire e i dirè :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 136151,
+          "end": 140083
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a045",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "fègui un pecat quan volguèi vos dishar",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 140083,
+          "end": 144184
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a046",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agègui gran tòrt,",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 144184,
+          "end": 147581
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a047",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n punissetz",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 147581,
+          "end": 150989
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a048",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ac sabi plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 150989,
+          "end": 153478
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a049",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apeletz pas mes le vòstre gojat.",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 153478,
+          "end": 156947
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a050",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Tretatz-me coma’l darrèr des vòsti vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 156947,
+          "end": 161155
+        },
+        {
+          "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_a051",
+          "media": "11280.100/crdo-09-MERENS-LES-VALS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Fregui copable, mes m’anujavi luenh de vos ».",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 161155,
+          "end": 166818
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-MONTSEGUR_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:55+00:00",
+        "dc:modified": "2016-06-01T23:47:55+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Montségur : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144797_09-MONTSEGUR_22km.wav",
+          "meta": {
+            "dc:duration": 170000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Montségur : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144797.wav",
+          "meta": {
+            "dc:duration": 170000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Montségur : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144797_09-MONTSEGUR_44k.mp3",
+          "meta": {
+            "dc:duration": 170000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Montségur : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a001",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme aviá que dos gojats.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 2937
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a002",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pus jove diguec a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 2937,
+          "end": 6796
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a003",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« es temps que siá le mieu mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 6796,
+          "end": 9873
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a004",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que aja argent;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 9873,
+          "end": 12982
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a005",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cal que me’n pèsca anar,",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 12982,
+          "end": 15887
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a006",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que veja país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 15887,
+          "end": 18485
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a007",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben,",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 18485,
+          "end": 20963
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a008",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que divi aver.",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 20963,
+          "end": 24077
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a009",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "O le mieu gojat, diguèc le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 24077,
+          "end": 27489
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a010",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma voldràs ;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 27489,
+          "end": 29814
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a011",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es un maishant, e siràs punit.",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 29814,
+          "end": 33114
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a012",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, durbisquèc una tireta,",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 33114,
+          "end": 36885
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a013",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "partatgèc le sieu ben, e ne fasquèc dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 36885,
+          "end": 41894
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a014",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualqui jorns aprèts, le maishant se’n anèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 41894,
+          "end": 46895
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a015",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fasent le fier,",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 46895,
+          "end": 49772
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a016",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sense dire adieu a deguns.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 49772,
+          "end": 52980
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a017",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Travetsèc un pauc de bosigas,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 52980,
+          "end": 56121
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a018",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsques e de rivièras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 56121,
+          "end": 59631
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a019",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualqui meses,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 59631,
+          "end": 62964
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a020",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "divec vendre la sieva farda a una vielha femnae",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 62964,
+          "end": 67308
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a021",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se loè per estre vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 67308,
+          "end": 70529
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a022",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièren dins les camps per gardar les ases e li biòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 70529,
+          "end": 76618
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a023",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz, fosquèc plan malurós;",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 76618,
+          "end": 80191
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a024",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agè pas pus de lèit per durmir anèit",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 80191,
+          "end": 83779
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a025",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni cap de fòc per se calfar quand aviá fret.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 83779,
+          "end": 87598
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a026",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aviá qualque còp talament talent,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 87598,
+          "end": 91291
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a027",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’aurá plan manjat aquelas felhas de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 91291,
+          "end": 94981
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a028",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aqueli fruts poiridi que manjan les pòrcs;",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 94981,
+          "end": 99539
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a029",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "mes degun i donava pas res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 99539,
+          "end": 102653
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a030",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Una nèit, le ventre voit,",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 102653,
+          "end": 105947
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a031",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishèc tombar sus un soc",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 105947,
+          "end": 108872
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a032",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e guèitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 108872,
+          "end": 112148
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a033",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausels que volavan laugèrament;",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 112148,
+          "end": 116514
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a034",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e apèi vic lúser dins le cel",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 116514,
+          "end": 120158
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a035",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e les estels",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 120158,
+          "end": 123012
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a036",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguec en plorant :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 123012,
+          "end": 125993
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a037",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ailà, l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 125993,
+          "end": 128698
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a038",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 128698,
+          "end": 130033
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a039",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "que an pan e vin,",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 130033,
+          "end": 132338
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a040",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "iòus e fromatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 132338,
+          "end": 135031
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a041",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que ne vòlen.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 135031,
+          "end": 137655
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a042",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aquel temps, jo crèbi de talent ací.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 137655,
+          "end": 141774
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a043",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben, me vau levar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 141774,
+          "end": 144775
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a044",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "airè trobar papà, e i ac dirè :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 144775,
+          "end": 148434
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a045",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« fasquèi un pecat quan vos volguèi dishar",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 148434,
+          "end": 152120
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a046",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agèi gran tòrt,",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 152120,
+          "end": 155104
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a047",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n punisquetz,",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 155104,
+          "end": 157892
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a048",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ac sai plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 157892,
+          "end": 160376
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a049",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Maperè pas mèi le vòstre gojat",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 160376,
+          "end": 164089
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a050",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tretatz-me coma le darnièr des vòstri vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 164089,
+          "end": 167905
+        },
+        {
+          "id": "11280.100/crdo-09-MONTSEGUR_SOUND_a051",
+          "media": "11280.100/crdo-09-MONTSEGUR_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Fosquèi copable, mes m’anejava luènh de vos ».",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 167905,
+          "end": 171990.204082
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-PRAYOLS_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:55+00:00",
+        "dc:modified": "2016-06-01T23:47:55+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Prayols : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144798_09-PRAYOLS_22km.wav",
+          "meta": {
+            "dc:duration": 182000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Prayols : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144798.wav",
+          "meta": {
+            "dc:duration": 182000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Prayols : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144798_09-PRAYOLS_44k.mp3",
+          "meta": {
+            "dc:duration": 182000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Prayols : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a001",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme n’aviá ren que dos gojats.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3879
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a002",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pus jove diguèc a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3879,
+          "end": 7547
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a003",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« es temps que siá’ l mieu mèstre,",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 7547,
+          "end": 10641
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a004",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’aja argent ;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 10641,
+          "end": 13181
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a005",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cal que me’n pèsca anar,",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 13181,
+          "end": 16023
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a006",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que veja país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 16023,
+          "end": 18792
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a007",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben,",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 18792,
+          "end": 21519
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a008",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que devi aver.",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 21519,
+          "end": 23804
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a009",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "O’l mieu gojat, diguèc le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 23804,
+          "end": 27182
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a010",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma voldràs;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 27182,
+          "end": 29730
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a011",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es un maishant, e siràs punit. »",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 29730,
+          "end": 33452
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a012",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e apèi, derbic una tireta",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 33452,
+          "end": 37196
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a013",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "partatgèc le sieu ben e ne’n fèc dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 37196,
+          "end": 41389
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a014",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualqui jorns aprèts, le maishant se n’anèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 41389,
+          "end": 46412
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a015",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fèr le fièr,",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 46412,
+          "end": 49293
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a016",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sense dire adiu a diguns.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 49293,
+          "end": 52453
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a017",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Travessèc un flòc de landas,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 52453,
+          "end": 55885
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a018",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsques e de rius.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 55885,
+          "end": 59007
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a019",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualqui mèses,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 59007,
+          "end": 61905
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a020",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "devèc vendre la sieu [siw] farda a una vièla femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 61905,
+          "end": 66192
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a021",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèc per éstre vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 66192,
+          "end": 69796
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a022",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièren dins les camps per gardar les ases e i biòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 69796,
+          "end": 76685
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a023",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz, fèc plan malerós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 76685,
+          "end": 80027
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a024",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "N’agèc pas mèi de lèit per dermir la nèit;",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 80027,
+          "end": 83869
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a025",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fòc per se calfar quand aviá fret.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 83869,
+          "end": 87973
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a026",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aviá qualque còp talament talent,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 87973,
+          "end": 91705
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a027",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’aurá plan manjat aquelai fèlhas de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 91705,
+          "end": 96290
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a028",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquela fruta poirida que manjan les pòrcs;",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 96290,
+          "end": 101158
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a029",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "mès diguns i donava pas ren.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 101158,
+          "end": 104869
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a030",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Una nèit, le ventre voit,",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 104869,
+          "end": 108162
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a031",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishèc tombar sus una soca",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 108162,
+          "end": 111353
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a032",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e guèitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 111353,
+          "end": 114950
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a033",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausels que volavan laugèrament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 114950,
+          "end": 118658
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a034",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, vic aparetre dins le cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 118658,
+          "end": 122477
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a035",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e i-s-estels",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 122477,
+          "end": 125542
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a036",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e s’a diguèc en plorant :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 125542,
+          "end": 129072
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a037",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alà, la maison de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 129072,
+          "end": 131931
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a038",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plena de vailets.",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 131931,
+          "end": 133903
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a039",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qu’an pan e vin,",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 133903,
+          "end": 136534
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a040",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "iòus e fromatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 136534,
+          "end": 139546
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a041",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que’n vòlen.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 139546,
+          "end": 142842
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a042",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aquel temps, ieu mòri de fam ací.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 142842,
+          "end": 147725
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a043",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben, me vau devar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 147725,
+          "end": 151152
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a044",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "airè trobar mon paire, e i dirè :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 151152,
+          "end": 155761
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a045",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« fèi un pecat quan vos volèi dishar",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 155761,
+          "end": 160557
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a046",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agèi gran tòrt,",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 160557,
+          "end": 163350
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a047",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n puniscatz,",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 163350,
+          "end": 166990
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a048",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ac sabi plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 166990,
+          "end": 169649
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a049",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apeletz pas mes le vòstre gojat,",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 169649,
+          "end": 173869
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a050",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tretatz-me coma’l darrèr dei vòstri vailets;",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 173869,
+          "end": 178322
+        },
+        {
+          "id": "11280.100/crdo-09-PRAYOLS_SOUND_a051",
+          "media": "11280.100/crdo-09-PRAYOLS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "fèi copable, mès m’anujava luènh de vos. »",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 178322,
+          "end": 183431.836735
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-QUERIGUT_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:55+00:00",
+        "dc:modified": "2016-06-01T23:47:55+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Quérigut : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144799_09-QUERIGUT_22km.wav",
+          "meta": {
+            "dc:duration": 171000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Quérigut : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144799.wav",
+          "meta": {
+            "dc:duration": 171000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Quérigut : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144799_09-QUERIGUT_44k.mp3",
+          "meta": {
+            "dc:duration": 171000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Quérigut : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a001",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme avía que dos mainatges.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3880
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a002",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al pus jove diguèc a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3880,
+          "end": 7173
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a003",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« es temps que síe mon mèstre,",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 7173,
+          "end": 10608
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a004",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’age argent;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 10608,
+          "end": 13228
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a005",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cal que pusque me n’anar,",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 13228,
+          "end": 15960
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a006",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que vege país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 15960,
+          "end": 18303
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a007",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatgetz al vòstre ben,",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 18303,
+          "end": 20803
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a008",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donetz-me a çò que me reven. »",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 20803,
+          "end": 23880
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a009",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ai, al miu gojat, diguèc al paire",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 23880,
+          "end": 27742
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a010",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma volràs;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 27742,
+          "end": 30266
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a011",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es un maishant e seràs punit.",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 30266,
+          "end": 33402
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a012",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, drobic un tirador,",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 33402,
+          "end": 36609
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a013",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "partatgèc al sieu ben, e ne fèc dos parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 36609,
+          "end": 40468
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a014",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualque jorns après, al maishant partit del vilatge,",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 40468,
+          "end": 45199
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a015",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fèr al fièr,",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 45199,
+          "end": 47518
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a016",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sans dire adiu-s-a diguns.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 47518,
+          "end": 50616
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a017",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Trevessèc una colha de bosigues",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 50616,
+          "end": 53847
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a018",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsqui e de rivières.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 53847,
+          "end": 56967
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a019",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualque mes,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 56967,
+          "end": 59841
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a020",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "calguè que vendesse a sivi habits a una femna vièlha",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 59841,
+          "end": 64889
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a021",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loguèc per èsser vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 64889,
+          "end": 68355
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a022",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièn dins les camps per gardar als ases e als biòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 68355,
+          "end": 75300
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a023",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz, sièc plan malerόs;",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 75300,
+          "end": 78598
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a024",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agèc pas pus de lièit per dromir a la nèit",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 78598,
+          "end": 82811
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a025",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni fòc per se calfar quan avía fret;",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 82811,
+          "end": 86782
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a026",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "avía de alcuni còp talament fam,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 86782,
+          "end": 90248
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a027",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’auría plan manjat aquelhas fèlhas de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 90248,
+          "end": 93891
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a028",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquelha fruta poirida que manjan als pòrcs;",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 93891,
+          "end": 97772
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a029",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mès diguns li donava pas res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 97772,
+          "end": 101067
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a030",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Una nèit, al ventre voit,",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 101067,
+          "end": 103922
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a031",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishèc cáire sus una soca",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 103922,
+          "end": 107172
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a032",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e guardava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 107172,
+          "end": 109987
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a033",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "als audels que volaven laugièrament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 109987,
+          "end": 114759
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a034",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, vegèc aparéisher dins d’al cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 114759,
+          "end": 118626
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a035",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e als esteles ;",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 118626,
+          "end": 121244
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a036",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguèc en plorant :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 121244,
+          "end": 124054
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a037",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Ailà, l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 124054,
+          "end": 127658
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a038",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets.",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 127658,
+          "end": 130559
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a039",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qu’an pan e vin,",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 130559,
+          "end": 133499
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a040",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "iòus e fromatge,",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 133499,
+          "end": 135826
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a041",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que ne vòlen.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 135826,
+          "end": 137872
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a042",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Dins aquel temps, ieu me mòri de fam ací.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 137872,
+          "end": 141766
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a043",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben, me vau lhevar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 141766,
+          "end": 144203
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a044",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "airè trobar mon paire, e li dirè :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 144203,
+          "end": 147801
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a045",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« fèi un pecat quan vos volguèi dishar ;",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 147801,
+          "end": 151848
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a046",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agèi gran tòrt,",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 151848,
+          "end": 154238
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a047",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n castiguetz",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 154238,
+          "end": 157118
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a048",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "o sai plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 157118,
+          "end": 159335
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a049",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apelhetz pas pus al vòstre gojat.",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 159335,
+          "end": 162401
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a050",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Tretetz-me coma al darrèr des vòstri vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 162401,
+          "end": 166170
+        },
+        {
+          "id": "11280.100/crdo-09-QUERIGUT_SOUND_a051",
+          "media": "11280.100/crdo-09-QUERIGUT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Sièi copable, mes m’anujavi liènh de vos ».",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 166170,
+          "end": 172408.163265
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-SIGUER_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:56+00:00",
+        "dc:modified": "2016-06-01T23:47:56+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Siguer : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144800_09-SIGUER_22km.wav",
+          "meta": {
+            "dc:duration": 177000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Siguer : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144800.wav",
+          "meta": {
+            "dc:duration": 177000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Siguer : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144800_09-SIGUER_44k.mp3",
+          "meta": {
+            "dc:duration": 177000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Siguer : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a001",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme n’aviá pas que doi gojats.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3223
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a002",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pus jove diguèc a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3223,
+          "end": 6920
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a003",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« es temps que siá le mieu mèstre,",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 6920,
+          "end": 10470
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a004",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’aja argent ;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 10470,
+          "end": 12868
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a005",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cal que me’n pèsca anar,",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 12868,
+          "end": 15764
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a006",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que veja país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 15764,
+          "end": 18240
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a007",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz le vòstre ben,",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 18240,
+          "end": 21163
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a008",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que devi aver.",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 21163,
+          "end": 24325
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a009",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "A le mieu gojat, diguèc le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 24325,
+          "end": 27975
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a010",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma voldràs ;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 27975,
+          "end": 30359
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a011",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es un maishant, e siràs punit.",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 30359,
+          "end": 33903
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a012",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, dorbic un tiroèr,",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 33903,
+          "end": 37149
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a013",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "patratgè le sieu ben, ne fasquè dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 37149,
+          "end": 43338
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a014",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualqui jorns après, le maishant se n’anèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 43338,
+          "end": 49275
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a015",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fèr le fièr,",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 49275,
+          "end": 51288
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a016",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sense dire adieu a digun.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 51288,
+          "end": 54789
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a017",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Travessè bèl còp de landas,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 54789,
+          "end": 58204
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a018",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsques e de rivièras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 58204,
+          "end": 61010
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a019",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualqui meses,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 61010,
+          "end": 63917
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a020",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "devèc vendre le siu fardas a una vièlha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 63917,
+          "end": 68204
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a021",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèc per èstre vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 68204,
+          "end": 71550
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a022",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièren dins les camps per gardar les ases e lei biòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 71550,
+          "end": 78047
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a023",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz, fèc plan malerós ;",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 78047,
+          "end": 81336
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a024",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agè pas mes de lheit per dermir la nèit,",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 81336,
+          "end": 85375
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a025",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni fòc per se calfar quand aviá fret.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 85375,
+          "end": 89122
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a026",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aviá qualque còp talament talent",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 89122,
+          "end": 93139
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a027",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’aurá plan manjat aquelas fèlhas de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 93139,
+          "end": 97780
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a028",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquela fruta poirida que manjan les pòrcs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 97780,
+          "end": 102041
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a029",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mès digun li donava pas ren.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 102041,
+          "end": 105203
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a030",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Una nèt le ventre voit,",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 105203,
+          "end": 108266
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a031",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishèc cáire sus una soca",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 108266,
+          "end": 111258
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a032",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e gaitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 111258,
+          "end": 114216
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a033",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausèls que volavan laugèrament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 114216,
+          "end": 117876
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a034",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, vic paréisher dins le cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 117876,
+          "end": 121342
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a035",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 121342,
+          "end": 124532
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a036",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguèc en plorant :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 124532,
+          "end": 127595
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a037",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ailà la maison de mieu paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 127595,
+          "end": 130630
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a038",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plena de vailets.",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 130630,
+          "end": 132124
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a039",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’an pan e vin,",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 132124,
+          "end": 134940
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a040",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "èus e fromatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 134940,
+          "end": 137713
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a041",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que ne vòlen.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 137713,
+          "end": 140249
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a042",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aquel temps, ieu mòri de fam ací.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 140249,
+          "end": 144092
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a043",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben, me vau lhevar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 144092,
+          "end": 147268
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a044",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "irè trobar al mieu paire, e i dirè :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 147268,
+          "end": 150801
+        },
+        {
+          "id": "11280.100/crdo-09-SIGUER_SOUND_a045",
+          "media": "11280.100/crdo-09-SIGUER_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« fèi un pecat quan vos volguèi dishar,",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 150801,
+          "end": 177998.367347
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:56+00:00",
+        "dc:modified": "2016-06-01T23:47:56+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Saint-Martin-d'Oydes : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144801_09-ST-MARTIN-D-OYDES_22km.wav",
+          "meta": {
+            "dc:duration": 185000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Saint-Martin-d'Oydes : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144801.wav",
+          "meta": {
+            "dc:duration": 185000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Saint-Martin-d'Oydes : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144801_09-ST-MARTIN-D-OYDES_44k.mp3",
+          "meta": {
+            "dc:duration": 185000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Saint-Martin-d'Oydes : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a001",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme aviá pas [pɔs] que dus dròlles.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3438
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a002",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pus joen diguec a son pair :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3438,
+          "end": 7369
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a003",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« es ora que siai mon mèstre,",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 7369,
+          "end": 11037
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a004",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’ájai argent;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 11037,
+          "end": 14007
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a005",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cal que pèscai me n’anar,",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 14007,
+          "end": 16779
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a006",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que véjai país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 16779,
+          "end": 18914
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a007",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben,",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 18914,
+          "end": 21995
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a008",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que devi aver.",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 21995,
+          "end": 24542
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a009",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "O mon filh, diguè le pair,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 24542,
+          "end": 27885
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a010",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma vèlgas ;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 27885,
+          "end": 29773
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a011",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ès un mashant e siràs punit. »",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 29773,
+          "end": 33854
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a012",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, durbisquec un tiroèr,",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 33854,
+          "end": 37990
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a013",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "partatgec son ben e ne fasquec dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 37990,
+          "end": 42733
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a014",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualque jorn apèi, le mashant se n’anguet del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 42733,
+          "end": 48073
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a015",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fèr le fièr,",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 48073,
+          "end": 50579
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a016",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "sanse dire adieu a diguns.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 50579,
+          "end": 54283
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a017",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Travessèc un flòc de landas,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 54283,
+          "end": 57598
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a018",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòscs e de rivièras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 57598,
+          "end": 61119
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a019",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualque mes,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 61119,
+          "end": 64441
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a020",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "devec vénder se farda a una vièlha femna,",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 64441,
+          "end": 68795
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a021",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèc per èstre vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 68795,
+          "end": 72536
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a022",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièren dins las pèças per gardar les ases e les biòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 72536,
+          "end": 78656
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a023",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz, fusquè plan malerós ;",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 78656,
+          "end": 82071
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a024",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "avè pas [pɔs] cap de lièit per drumir la nèit,",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 82071,
+          "end": 86134
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a025",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni fòc per se calfar quand aviá fret ;",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 86134,
+          "end": 90214
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a026",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "aviá qualque còp talament de talent",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 90214,
+          "end": 93903
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a027",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’auriá plan manjat aquelas fèlhas de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 93903,
+          "end": 98008
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a028",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquela fruta poirida que manjan les pòrcs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 98008,
+          "end": 102430
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a029",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mès diguns i donava pas res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 102430,
+          "end": 106149
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a030",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Una nèit, le ventre voit,",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 106149,
+          "end": 109405
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a031",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishèc tombar sus una turra,",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 109405,
+          "end": 113555
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a032",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e guèitava per la frinèsta",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 113555,
+          "end": 117434
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a033",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausels que volavan laugèrament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 117434,
+          "end": 121585
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a034",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, vesec lusir dins le cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 121585,
+          "end": 124866
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a035",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas.",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 124866,
+          "end": 127607
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a036",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E se diguec en plorant :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 127607,
+          "end": 130631
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a037",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aquí delà, l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 130631,
+          "end": 134308
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a038",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets ;",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 134308,
+          "end": 136376
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a039",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’an pan e vin,",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 136376,
+          "end": 139368
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a040",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "uèus e formatge,",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 139368,
+          "end": 142603
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a041",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que ne vòlen.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 142603,
+          "end": 145722
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a042",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aqueth temps, jo mòri de talent ací.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 145722,
+          "end": 150418
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a043",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben, me vau levar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 150418,
+          "end": 153241
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a044",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "anerè trobar mon paire, e li dirè :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 153241,
+          "end": 158619
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a045",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Fasquèi un pecat quan vos volguèi dishar,",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 158619,
+          "end": 163438
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a046",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "avèi plan tòrt,",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 163438,
+          "end": 165928
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a047",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n puniscatz,",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 165928,
+          "end": 169428
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a048",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ac sabi plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 169428,
+          "end": 172467
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a049",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’aperè pas mèi vòste filh.",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 172467,
+          "end": 176349
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a050",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Tretatz-me coma le darrèr des vòsti vailets ;",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 176349,
+          "end": 180700
+        },
+        {
+          "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_a051",
+          "media": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "fusquèi copable, mès m’avejavai lènh de vos.»",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 180700,
+          "end": 186148.571429
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-09-SURBA_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:56+00:00",
+        "dc:modified": "2016-06-01T23:47:56+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Surba : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144802_09-SURBA_22km.wav",
+          "meta": {
+            "dc:duration": 159000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Surba : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144802.wav",
+          "meta": {
+            "dc:duration": 159000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Surba : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144802_09-SURBA_44k.mp3",
+          "meta": {
+            "dc:duration": 159000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Surba : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a001",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme aviá pas que dos gojats.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3487
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a002",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pus jove diguec a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3487,
+          "end": 6602
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a003",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« es ora que siá le mieu mèstre,",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 6602,
+          "end": 9548
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a004",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que aja argent ;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 9548,
+          "end": 11765
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a005",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cal que me’n pèsca anar,",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 11765,
+          "end": 14361
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a006",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que veja país .",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 14361,
+          "end": 16910
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a007",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz le vòstre ben,",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 16910,
+          "end": 19606
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a008",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "bailhatz-me çò que devi aver.",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 19606,
+          "end": 22268
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a009",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "O’l mieu enfant, diguè le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 22268,
+          "end": 25601
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a010",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma vèlgas ;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 25601,
+          "end": 27669
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a011",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ès un maishant e siràs punit. »",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 27669,
+          "end": 30514
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a012",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, destampèc un tiroèr,",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 30514,
+          "end": 33287
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a013",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "partagè le sieu ben, ne fasquè dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 33287,
+          "end": 38045
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a014",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualque jorns aprèts, le maishant se n’anèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 38045,
+          "end": 43687
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a015",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fèr le fièr,",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 43687,
+          "end": 45872
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a016",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sense dire adieu a diguns.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 45872,
+          "end": 48529
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a017",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Travessèc plan bosigas,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 48529,
+          "end": 50895
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a018",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "plan bòsques e rivièras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 50895,
+          "end": 53475
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a019",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualques mèses",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 53475,
+          "end": 56442
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a020",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "deviec vendre la siva fardas a una vièlha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 56442,
+          "end": 60810
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a021",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loguec per éstre vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 60810,
+          "end": 64042
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a022",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièren endà’s camps per gardar les ases e-i biòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 64042,
+          "end": 69663
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a023",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz, fusquè plan malurós ;",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 69663,
+          "end": 72428
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a024",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agè pas mèi de lhièt per durmir la nèit",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 72428,
+          "end": 75878
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a025",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni fòc per se calfar quand aviá fret.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 75878,
+          "end": 80315
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a026",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aviá qualque còp talament talent",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 80315,
+          "end": 83441
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a027",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "que s’aurá plan manjat aquelas fèlhas de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 83441,
+          "end": 86840
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a028",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquela fruta poirida que se manjan les pòrcs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 86840,
+          "end": 90569
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a029",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mès digun i donava pas ren.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 90569,
+          "end": 93364
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a030",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Una nèit, le ventre voit,",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 93364,
+          "end": 95919
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a031",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishèc cáire sus una soca",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 95919,
+          "end": 99169
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a032",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e gaitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 99169,
+          "end": 101857
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a033",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausels que volavan laugèrament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 101857,
+          "end": 104925
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a034",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi, vic lúser dins le cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 104925,
+          "end": 107732
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a035",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas.",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 107732,
+          "end": 110623
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a036",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E se diguec en plorant :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 110623,
+          "end": 113296
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a037",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ailà la maison de mieu pair",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 113296,
+          "end": 116228
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a038",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plena de vailets ;",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 116228,
+          "end": 118728
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a039",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’an pan e vin,",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 118728,
+          "end": 120908
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a040",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "iòus e fromatge,",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 120908,
+          "end": 122828
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a041",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que ne vòlen.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 122828,
+          "end": 124830
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a042",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aquel temps, ieu crèbi de talent ací.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 124830,
+          "end": 130661
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a043",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben, me vau lhevar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 130661,
+          "end": 133444
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a044",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "virè trobar le mieu paire, e i dirè :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 133444,
+          "end": 138189
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a045",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Fasquèi un pecat quan vos volguèi dishar,",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 138189,
+          "end": 141357
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a046",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agèi un gran tòrt,",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 141357,
+          "end": 143668
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a047",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n puniscatz,",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 143668,
+          "end": 146851
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a048",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ac sabi plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 146851,
+          "end": 149239
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a049",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apeletz pas mèi le vòstre gojat.",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 149239,
+          "end": 152060
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a050",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Tretatz-me coma’l darrèr de vòstre vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 152060,
+          "end": 155459
+        },
+        {
+          "id": "11280.100/crdo-09-SURBA_SOUND_a051",
+          "media": "11280.100/crdo-09-SURBA_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "fusquèi copable, mès m’anujava luènh de vos. »",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 155459,
+          "end": 160548.571429
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-11-GRAMAZIE_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:57+00:00",
+        "dc:modified": "2016-06-01T23:47:57+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Gramazie : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144803_11-GRAMAZIE_22km.wav",
+          "meta": {
+            "dc:duration": 147000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Gramazie : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144803.wav",
+          "meta": {
+            "dc:duration": 147000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Gramazie : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144803_11-GRAMAZIE_44k.mp3",
+          "meta": {
+            "dc:duration": 147000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Gramazie : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a001",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme n’aviá que dos gojat.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3085
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a002",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pu jove diguèc a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3085,
+          "end": 6170
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a003",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“es tèmp que siás que mon mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 6170,
+          "end": 8780
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a004",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’age d’argènt.",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 8780,
+          "end": 10916
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a005",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Cal que pòsque me’n anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 10916,
+          "end": 13052
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a006",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que vege de país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 13052,
+          "end": 15117
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a007",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 15117,
+          "end": 17723
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a008",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e’s donatz-me çò que me reven.”",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 17723,
+          "end": 20756
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a009",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“Ò mon filh digà le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 20756,
+          "end": 23575
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a010",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma vodràs",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 23575,
+          "end": 24928
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a011",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es un maishant e seràs punit.?",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 24928,
+          "end": 27605
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a012",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèp druvisquèt una tiretta.",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 27605,
+          "end": 30567
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a013",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatgèt son ben e ne fasquèt dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 30567,
+          "end": 35522
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a014",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualque jorn pus tard, le maishant se’n anèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 35522,
+          "end": 40833
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a015",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fasquent le conflat",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 40833,
+          "end": 43012
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a016",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sans dire adieu a diguns.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 43012,
+          "end": 45262
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a017",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Traversèt plan de raishèsas,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 45262,
+          "end": 47725
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a018",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsques e de rivièras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 47725,
+          "end": 50046
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a019",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de quauque mes,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 50046,
+          "end": 52225
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a020",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "devèt vendre sons abits a una vielha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 52225,
+          "end": 55827
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a021",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèt per essèr vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 55827,
+          "end": 58497
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a022",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièron dins las terras per gardar les ases e li buòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 58497,
+          "end": 63955
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a023",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz fosquèt plan malurós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 63955,
+          "end": 66447
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a024",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agès pas pus de lèit per dormir la nèit,",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 66447,
+          "end": 69295
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a025",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fuòc per se calfar quand aviá freg.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 69295,
+          "end": 73566
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a026",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aviá qualque còp talament talent,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 73566,
+          "end": 76177
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a027",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’aurá plan manjat aquelas fèlha de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 76177,
+          "end": 79380
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a028",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquala fruta poirida que manjon les pòrs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 79380,
+          "end": 83177
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a029",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mè diguns li donava pa res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 83177,
+          "end": 86262
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a030",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un soèr, le ventre truda",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 86262,
+          "end": 88991
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a031",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se daishèt tombar sur un sonc",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 88991,
+          "end": 91685
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a032",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e gaitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 91685,
+          "end": 93725
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a033",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausèl que volavon laugèrament",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 93725,
+          "end": 96611
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a034",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "[apεβeʒε] qu’aparèstre din le cèu,",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 96611,
+          "end": 99842
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a035",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 99842,
+          "end": 102487
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a036",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguèc en plorant",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 102487,
+          "end": 105020
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a037",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“Avau l’ostau de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 105020,
+          "end": 108155
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a038",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailet",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 108155,
+          "end": 110447
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a039",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "que an de pan e de vin",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 110447,
+          "end": 112627
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a040",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "d’uòus e de fromatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 112627,
+          "end": 114631
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a041",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tan que ne’n volon.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 114631,
+          "end": 116436
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a042",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aquel tèmps, ieu morissi de talent aishí.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 116436,
+          "end": 121366
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a043",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben me vau levar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 121366,
+          "end": 123771
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a044",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "anirè trobar mon paire e li dirè:",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 123771,
+          "end": 128269
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a045",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“fasquèri un pecat quand volèri vos daishar.",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 128269,
+          "end": 131532
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a046",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèri grand tòrt",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 131532,
+          "end": 133376
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a047",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cau que me’n punisquetz.",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 133376,
+          "end": 135586
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a048",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ba sabi plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 135586,
+          "end": 137590
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a049",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apèletz pas mai vòstre gojat.",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 137590,
+          "end": 140170
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a050",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Tretatz-me coma le darnièr de vòstres vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 140170,
+          "end": 143408
+        },
+        {
+          "id": "11280.100/crdo-11-GRAMAZIE_SOUND_a051",
+          "media": "11280.100/crdo-11-GRAMAZIE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Fosquèri copable, me languissiá len de vos”.",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 143408,
+          "end": 148793
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-11-MOLLEVILLE_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:57+00:00",
+        "dc:modified": "2016-06-01T23:47:57+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Molleville : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144804_11-MOLLEVILLE_22km.wav",
+          "meta": {
+            "dc:duration": 173000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Molleville : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144804.wav",
+          "meta": {
+            "dc:duration": 173000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Molleville : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144804_11-MOLLEVILLE_44k.mp3",
+          "meta": {
+            "dc:duration": 173000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Molleville : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a001",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme aiá que dos filhs.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3289
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a002",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pu jove diguèt a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3289,
+          "end": 6731
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a003",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“es tèmps que siás que mon mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 6731,
+          "end": 10707
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a004",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’age d’argènt.",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 10707,
+          "end": 13564
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a005",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Cal que pòsque me’n anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 13564,
+          "end": 16180
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a006",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que vege de país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 16180,
+          "end": 18778
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a007",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 18778,
+          "end": 21463
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a008",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e’s donatz-me çò que divi aver.”",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 21463,
+          "end": 24835
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a009",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“Ò mon dròlle diguèt le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 24835,
+          "end": 28566
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a010",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma vodràs",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 28566,
+          "end": 30749
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a011",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es un maishant e seràs punit.”",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 30749,
+          "end": 34053
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a012",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E après durbisquèt una tiretta.",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 34053,
+          "end": 37687
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a013",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatgèt son ben e ne fasquèt dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 37687,
+          "end": 41631
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a014",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualque jorn aprèts, le maishant se’n anguèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 41631,
+          "end": 47208
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a015",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e en fasent le bavard",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 47208,
+          "end": 50509
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a016",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sans dire adieu a diguns.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 50509,
+          "end": 54191
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a017",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Traversèt plan de sèrras,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 54191,
+          "end": 57532
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a018",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsques e de rivièras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 57532,
+          "end": 60812
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a019",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualque mes,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 60812,
+          "end": 63574
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a020",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "divèt vendre sa farda a una vielha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 63574,
+          "end": 67913
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a021",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèt per vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 67913,
+          "end": 70942
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a022",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoian dins les camps per gardar les ases e li buòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 70942,
+          "end": 77619
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a023",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz fosquèt plan malurós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 77619,
+          "end": 81161
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a024",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèt poi mai de lèit per dormir la nèit,",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 81161,
+          "end": 84936
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a025",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fòc per se calfar quand aiá freg.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 84936,
+          "end": 88780
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a026",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aiá qualque còp talament talent,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 88780,
+          "end": 92565
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a027",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’aurá plan manjat aquelas fèlha de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 92565,
+          "end": 96370
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a028",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquela fruta poirida que manjan les pòrs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 96370,
+          "end": 100648
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a029",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mè diguns li donaa pa res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 100648,
+          "end": 104311
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a030",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un soèr, le ventre vude",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 104311,
+          "end": 107547
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a031",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se daissèt tombar sus un tronc",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 107547,
+          "end": 110721
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a032",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e regardaa per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 110721,
+          "end": 113599
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a033",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausèls que voletejan laugèrament",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 113599,
+          "end": 117572
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a034",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e apèi vegèt parèisser din le cèl,",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 117572,
+          "end": 121461
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a035",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 121461,
+          "end": 124439
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a036",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguèt en plorant",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 124439,
+          "end": 127152
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a037",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“Avals l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 127152,
+          "end": 130034
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a038",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "è plen de vailets",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 130034,
+          "end": 132816
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a039",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’an de pan e de vin",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 132816,
+          "end": 135832
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a040",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "d’uòus e de formatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 135832,
+          "end": 138662
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a041",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tan que ne vòlan.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 138662,
+          "end": 140639
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a042",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Dins aquel tèmps, iò morissi de talent aissí.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 140639,
+          "end": 144485
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a043",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben me vau levar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 144485,
+          "end": 146867
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a044",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "anirè trobar mon paire e i dirè:",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 146867,
+          "end": 150742
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a045",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“fasquèi un pecat quand volèi vos quitar.",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 150742,
+          "end": 154611
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a046",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèi grand tòrt",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 154611,
+          "end": 156987
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a047",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n punisquetz.",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 156987,
+          "end": 159796
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a048",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ba sai plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 159796,
+          "end": 161856
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a049",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apèletz poi mai vòstre filh.",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 161856,
+          "end": 165407
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a050",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Tretatz-me coma le darrièr de vòstri vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 165407,
+          "end": 169289
+        },
+        {
+          "id": "11280.100/crdo-11-MOLLEVILLE_SOUND_a051",
+          "media": "11280.100/crdo-11-MOLLEVILLE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Fosquèi copable, mè m’embestiai len de vos”.",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 169289,
+          "end": 174497.959184
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-11-PUIVERT_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:57+00:00",
+        "dc:modified": "2016-06-01T23:47:57+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Puivert : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144805_11-PUIVERT_22km.wav",
+          "meta": {
+            "dc:duration": 155000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Puivert : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144805.wav",
+          "meta": {
+            "dc:duration": 155000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Puivert : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144805_11-PUIVERT_44k.mp3",
+          "meta": {
+            "dc:duration": 155000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Puivert : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a001",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme aviá que doj gojat.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3709
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a002",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pu jove dièc a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3709,
+          "end": 7056
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a003",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“es tèmp que siáj mon mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 7056,
+          "end": 9956
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a004",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’age argent.",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 9956,
+          "end": 12140
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a005",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Cal que pòsque me’n anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 12140,
+          "end": 14906
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a006",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que vèige país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 14906,
+          "end": 17124
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a007",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 17124,
+          "end": 19919
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a008",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que divi aver.”",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 19919,
+          "end": 23330
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a009",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“Ò mon gojat diguèt le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 23330,
+          "end": 26418
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a010",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "còma vordàs",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 26418,
+          "end": 28223
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a011",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es un mishant e seràs punit.”",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 28223,
+          "end": 31178
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a012",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E après durbisquèc una tiretta.",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 31178,
+          "end": 34474
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a013",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatgèc son ben e ne fasquèc dòs borsilhas.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 34474,
+          "end": 39423
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a014",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualque jorn aprèts, le mishant se’n anè del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 39423,
+          "end": 44368
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a015",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“en” fasquen le fièr",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 44368,
+          "end": 47251
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a016",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e “sans” dire adieus “en” diguns.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 47251,
+          "end": 50020
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a017",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Traversèc un pauc de rashissi,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 50020,
+          "end": 53265
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a018",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsques e de rivièras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 53265,
+          "end": 55608
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a019",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualque mes,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 55608,
+          "end": 58076
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a020",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "deviè vendre sa farda “en” una vielha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 58076,
+          "end": 61796
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a021",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèc per èsser vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 61796,
+          "end": 64312
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a022",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièran dins les camts per gardar les ases ei buòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 64312,
+          "end": 69997
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a023",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavè fosquèc plan malurós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 69997,
+          "end": 72888
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a024",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèc pas pus de lèit per dormir la nèit,",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 72888,
+          "end": 76043
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a025",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fòc per se calfar quand aviá fred.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 76043,
+          "end": 79997
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a026",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aviá qualque còp talament talent,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 79997,
+          "end": 82784
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a027",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’auriá plan manjat aquelha fèlha de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 82784,
+          "end": 86042
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a028",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquelha fruta poirida que manjan les pòrs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 86042,
+          "end": 90142
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a029",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mè diguns i donava pa res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 90142,
+          "end": 93022
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a030",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Una nèi, le ventre vide",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 93022,
+          "end": 95778
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a031",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishè tombar sus una soca",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 95778,
+          "end": 98515
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a032",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e gaitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 98515,
+          "end": 100918
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a033",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausèls que volavan laugièrament",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 100918,
+          "end": 104477
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a034",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "apèi vegè parèstre din le cèl,",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 104477,
+          "end": 107598
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a035",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 107598,
+          "end": 110158
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a036",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se dièc “en” plorant",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 110158,
+          "end": 112604
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a037",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“Alà l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 112604,
+          "end": 115101
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a038",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "è plen de vailets",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 115101,
+          "end": 117030
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a039",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "que an pan e vin",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 117030,
+          "end": 118749
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a040",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "d’uòus e fromatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 118749,
+          "end": 120747
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a041",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tan que’n vòlan.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 120747,
+          "end": 122539
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a042",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aquel temps, iò mòri de talent assí.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 122539,
+          "end": 127286
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a043",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben me vau lhevar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 127286,
+          "end": 129262
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a044",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "airè trobar mon paire e i dirè:",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 129262,
+          "end": 133433
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a045",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“fasquèi un pecat quand vol... volguèri vos dishar.",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 133433,
+          "end": 137450
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a046",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèri grand tòrt",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 137450,
+          "end": 139539
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a047",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n punisquetz.",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 139539,
+          "end": 141738
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a048",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ba sabi plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 141738,
+          "end": 143494
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a049",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apèletz pas pu vòstre gojat.",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 143494,
+          "end": 146376
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a050",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Tratatz-me coma lei... le darnièr di vòstri vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 146376,
+          "end": 150675
+        },
+        {
+          "id": "11280.100/crdo-11-PUIVERT_SOUND_a051",
+          "media": "11280.100/crdo-11-PUIVERT_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Fosquèi copable, mè me languissiá len de vos”.",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 150675,
+          "end": 156264.489796
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-11-RIBOUISSE_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:57+00:00",
+        "dc:modified": "2016-06-01T23:47:57+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Ribouisse : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144806_11-RIBOUISSE_22km.wav",
+          "meta": {
+            "dc:duration": 191000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Ribouisse : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144806.wav",
+          "meta": {
+            "dc:duration": 191000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Ribouisse : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144806_11-RIBOUISSE_44k.mp3",
+          "meta": {
+            "dc:duration": 191000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Ribouisse : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a001",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme aiá que dos gojats.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 4111
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a002",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pu jove dièc a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 4111,
+          "end": 8293
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a003",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“es tèmps que siás que mon mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 8293,
+          "end": 11981
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a004",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’age d’argènt.",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 11981,
+          "end": 14786
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a005",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Cal que me’n pòsque anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 14786,
+          "end": 17711
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a006",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que veja de país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 17711,
+          "end": 20768
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a007",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 20768,
+          "end": 23512
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a008",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que divi aver.”",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 23512,
+          "end": 26531
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a009",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“Ò le mieu dròlle dià le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 26531,
+          "end": 29482
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a010",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma vordràs",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 29482,
+          "end": 31473
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a011",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es un mashant e seiràs punit.”",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 31473,
+          "end": 35209
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a012",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi durbisquèc una tiretta.",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 35209,
+          "end": 38784
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a013",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatgèc son ben e ne fasquèc dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 38784,
+          "end": 44215
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a014",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualque jorn aprèts, le mashant se’n anèc del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 44215,
+          "end": 50793
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a015",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fasent le fièr",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 50793,
+          "end": 53293
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a016",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sans dire adieu a digun.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 53293,
+          "end": 56614
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a017",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Traversèc plan de sèrras,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 56614,
+          "end": 59720
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a018",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsques e de rivièras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 59720,
+          "end": 62719
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a019",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualque mes,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 62719,
+          "end": 65351
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a020",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "divèc vendre sa farda a una vielha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 65351,
+          "end": 70504
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a021",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèc per essèr vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 70504,
+          "end": 74017
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a022",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièron din les camps per gardar les ases e lei buòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 74017,
+          "end": 81037
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a023",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz fosquèc plan malerós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 81037,
+          "end": 85045
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a024",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèc pas mai de lèit per dormir la nèit,",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 85045,
+          "end": 89525
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a025",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fòc per se calfar quand fasia fred.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 89525,
+          "end": 93810
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a026",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aiá qualque còp talament talent,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 93810,
+          "end": 98021
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a027",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’aurá plan manjat aquelas fèlha de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 98021,
+          "end": 102276
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a028",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aqui fruits poirits que manjon les pòrs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 102276,
+          "end": 106824
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a029",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mè digun i balhava pa re.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 106824,
+          "end": 110442
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a030",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un soèr, le ventre vude",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 110442,
+          "end": 113654
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a031",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishèc tombar sus un tronc",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 113654,
+          "end": 117978
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a032",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e gaitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 117978,
+          "end": 121002
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a033",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausèls que volaon laugèrament",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 121002,
+          "end": 124823
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a034",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e apèi vegèc parèstre din le cèl,",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 124823,
+          "end": 129199
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a035",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 129199,
+          "end": 132474
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a036",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se dièc en plorant",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 132474,
+          "end": 135802
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a037",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“Alà l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 135802,
+          "end": 139758
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a038",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e plen de vailets",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 139758,
+          "end": 142416
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a039",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’an de pan e de vin",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 142416,
+          "end": 145335
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a040",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "d’uòus e de formatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 145335,
+          "end": 148389
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a041",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tan que ne’n vòlon.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 148389,
+          "end": 150844
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a042",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aquel tèmps, ieu mòri de talent aishí.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 150844,
+          "end": 155967
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a043",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben me vau levar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 155967,
+          "end": 158688
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a044",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "airè trobar mon paire e i dirè:",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 158688,
+          "end": 164163
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a045",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“fasquèi un pecat quand vorguèi vos dishar.",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 164163,
+          "end": 168986
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a046",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèi grand tòrt",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 168986,
+          "end": 171962
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a047",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n punisquetz.",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 171962,
+          "end": 175896
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a048",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ba sai plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 175896,
+          "end": 178016
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a049",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apèletz pas mai vòstre gojat.",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 178016,
+          "end": 181490
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a050",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Tretatz-me coma le darnièr de vòstri vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 181490,
+          "end": 186209
+        },
+        {
+          "id": "11280.100/crdo-11-RIBOUISSE_SOUND_a051",
+          "media": "11280.100/crdo-11-RIBOUISSE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Sosquèi copable, mè m’anujaa len de vos”.",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 186209,
+          "end": 192470.204082
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:58+00:00",
+        "dc:modified": "2016-06-01T23:47:58+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Sonnac-sur-l'Hers : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144807_11-SONNAC-SUR-L-HERS_22km.wav",
+          "meta": {
+            "dc:duration": 147000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Sonnac-sur-l'Hers : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144807.wav",
+          "meta": {
+            "dc:duration": 147000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Sonnac-sur-l'Hers : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144807_11-SONNAC-SUR-L-HERS_44k.mp3",
+          "meta": {
+            "dc:duration": 147000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Sonnac-sur-l'Hers : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a001",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme n’aiá que dos gojats.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 2877
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a002",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pu jove dièc a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 2877,
+          "end": 5843
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a003",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“es ora que siá que le mieu mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 5843,
+          "end": 9070
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a004",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’age argènt.",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 9070,
+          "end": 11279
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a005",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Cal que pòsque me’n anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 11279,
+          "end": 13752
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a006",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que vege país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 13752,
+          "end": 16009
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a007",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 16009,
+          "end": 18426
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a008",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que divi aver.”",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 18426,
+          "end": 21209
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a009",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“Ò mon filh dià le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 21209,
+          "end": 24218
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a010",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma vordràs",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 24218,
+          "end": 26599
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a011",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es un maishant e siràs punit.”",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 26599,
+          "end": 29314
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a012",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi durbisquèc una tiretta.",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 29314,
+          "end": 32098
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a013",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatgèc son ben e ne fasquèc dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 32098,
+          "end": 37314
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a014",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualqui jorns aprèts, le maishant se’n anguèc del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 37314,
+          "end": 42893
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a015",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fasquent le fièr",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 42893,
+          "end": 45159
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a016",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sans dire adieu a diguns.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 45159,
+          "end": 47780
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a017",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Traversèc plan de raisèsas,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 47780,
+          "end": 50452
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a018",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "plan de bòsques e plan de rivièras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 50452,
+          "end": 53426
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a019",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualqui meses,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 53426,
+          "end": 55909
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a020",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "divèc vendre sa farda a una vielha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 55909,
+          "end": 59521
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a021",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèc per estar vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 59521,
+          "end": 62049
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a022",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoien dins les camps per gardar les ases e li buòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 62049,
+          "end": 67076
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a023",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz fosquèc plan malerós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 67076,
+          "end": 70014
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a024",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "N’aigèc pos pu de lièit per dormir la nèit,",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 70014,
+          "end": 73280
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a025",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni fòc per se caufar quand aia fred.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 73280,
+          "end": 76517
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a026",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aiá qualque còp talament talent,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 76517,
+          "end": 79119
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a027",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’aurá plan manjat aquelha fèlha de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 79119,
+          "end": 82619
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a028",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquelha fruita poirida que manjon les pòrs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 82619,
+          "end": 86085
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a029",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mè diguns i donava pa re.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 86085,
+          "end": 89323
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a030",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un soèr, le ventre voit",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 89323,
+          "end": 92221
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a031",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se dishèc tombar sus un tanc",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 92221,
+          "end": 94667
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a032",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en gaitant/gaitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 94667,
+          "end": 97251
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a033",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausèl que volaon laugèrament",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 97251,
+          "end": 99974
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a034",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e apèi vegi aparèsher din le cèl,",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 99974,
+          "end": 102636
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a035",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 102636,
+          "end": 105451
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a036",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se dièc en plorant",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 105451,
+          "end": 108005
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a037",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“Aval l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 108005,
+          "end": 110537
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a038",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 110537,
+          "end": 112587
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a039",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’an pan e vin",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 112587,
+          "end": 114527
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a040",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "uòus e formatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 114527,
+          "end": 116922
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a041",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tan que ne’n vòlon.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 116922,
+          "end": 119066
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a042",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aquel tèmp, ieu crèbi de talent aisí.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 119066,
+          "end": 123132
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a043",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben me vau lhevar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 123132,
+          "end": 125268
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a044",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "airè trapar mon paire e i dirè:",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 125268,
+          "end": 128089
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a045",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“fasquèi un pecat quand volèi vos dishar.",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 128089,
+          "end": 131358
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a046",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèi grand tòrt",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 131358,
+          "end": 133296
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a047",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n punisquetz.",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 133296,
+          "end": 135550
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a048",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ba sai plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 135550,
+          "end": 137371
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a049",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apèletz pas mai vòstre gojat.",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 137371,
+          "end": 139809
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a050",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Tretatz-me coma le darnièr de vòstri vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 139809,
+          "end": 143202
+        },
+        {
+          "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_a051",
+          "media": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Fosquèi copable, mè me languissia lhen de vos”.",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 143202,
+          "end": 148793.469388
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:58+00:00",
+        "dc:modified": "2016-06-01T23:47:58+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Saint-Martin-Lalande : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144808_11-ST-MARTIN-LALANDE_22km.wav",
+          "meta": {
+            "dc:duration": 119000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Saint-Martin-Lalande : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144808.wav",
+          "meta": {
+            "dc:duration": 119000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Saint-Martin-Lalande : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144808_11-ST-MARTIN-LALANDE_44k.mp3",
+          "meta": {
+            "dc:duration": 119000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Saint-Martin-Lalande : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a001",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme n’aià que dos gojats.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 2154
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a002",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Le pu jove dièc a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 2154,
+          "end": 4634
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a003",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“es tèmp que siás que mon mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 4634,
+          "end": 7047
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a004",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’age d’argènt.",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 7047,
+          "end": 8936
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a005",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Cal que pòsque me’n anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 8936,
+          "end": 10880
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a006",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que vese de país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 10880,
+          "end": 12639
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a007",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 12639,
+          "end": 14609
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a008",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que divi aver.”",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 14609,
+          "end": 16895
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a009",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“Ò le mieu gojat dià le paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 16895,
+          "end": 19200
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a010",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma vordràs",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 19200,
+          "end": 20622
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a011",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es un maisant e seràs punit.”",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 20622,
+          "end": 22915
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a012",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E apèi durbisquèt una tiretta.",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 22915,
+          "end": 25307
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a013",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatgèt son ben e ne fasquèt dòs parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 25307,
+          "end": 28594
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a014",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualque jorns aprèts, le maisant se’n anguèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 28594,
+          "end": 32955
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a015",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fasent le fièr",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 32955,
+          "end": 34425
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a016",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sans dire adieu a digun.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 34425,
+          "end": 36560
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a017",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Traversèt plan de sèrras,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 36560,
+          "end": 38546
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a018",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsques e de rivièras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 38546,
+          "end": 40516
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a019",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualque mes,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 40516,
+          "end": 42371
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a020",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "divèt vendre las fardas a una vielha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 42371,
+          "end": 45262
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a021",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèt pr’èsser vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 45262,
+          "end": 47074
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a022",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoien dins les camps per gardar ases ei buòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 47074,
+          "end": 51118
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a023",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alavetz fosquèc plan malerós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 51118,
+          "end": 52979
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a024",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aigèt po mèi de lièit per dromir la nèit,",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 52979,
+          "end": 55762
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a025",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni mai de fòc per se calfar quand aia freds.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 55762,
+          "end": 59166
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a026",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aiá qualque còp talament talent,",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 59166,
+          "end": 61486
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a027",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’aurá plan manjat aquela fèlha de caulet",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 61486,
+          "end": 64200
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a028",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquela fruita poirida que manjon les pòrs.",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 64200,
+          "end": 67015
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a029",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Mè digun i balhava pa res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 67015,
+          "end": 69423
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a030",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un soèr, le ventre vude",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 69423,
+          "end": 71775
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a031",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se lèisèc tombar sus un soc",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 71775,
+          "end": 73883
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a032",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e gaitava per la finèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 73883,
+          "end": 76078
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a033",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "les ausèl que volavon laugèrament",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 76078,
+          "end": 78918
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a034",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e apèi vièt aparèstre din le cèl,",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 78918,
+          "end": 81553
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a035",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna, las estelas",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 81553,
+          "end": 83564
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a036",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguèt en plorant",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 83564,
+          "end": 85780
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a037",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“Avàs l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 85780,
+          "end": 88120
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a038",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 88120,
+          "end": 90276
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a039",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’an de pan e de vin",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 90276,
+          "end": 92122
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a040",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "d’uòus e de fromatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 92122,
+          "end": 94073
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a041",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tan qu’en vòlon.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 94073,
+          "end": 95744
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a042",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "D’aquel tèmp, ieu morissi de talent aisí.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 95744,
+          "end": 98424
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a043",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben me vau levar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 98424,
+          "end": 100131
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a044",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "anirè trobar mon paire e i dirè:",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 100131,
+          "end": 102826
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a045",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "“fasquèi un pecat quand volèi vos daisar.",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 102826,
+          "end": 105492
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a046",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèi grand tòrt",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 105492,
+          "end": 107039
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a047",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n punisquetz.",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 107039,
+          "end": 109302
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a048",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Ba sai plan.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 109302,
+          "end": 110849
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a049",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apèletz pas mai le vòstre gojat.",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 110849,
+          "end": 113297
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a050",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Tretatz-me coma le darnièr de vòstri vailets.",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 113297,
+          "end": 116465
+        },
+        {
+          "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_a051",
+          "media": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Fosquèi copable, me languissia len de vos”.",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 116465,
+          "end": 120476.734694
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-AUZITS_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:58+00:00",
+        "dc:modified": "2016-06-01T23:47:58+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Auzits : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144810_12-AUZITS_22km.wav",
+          "meta": {
+            "dc:duration": 199000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Auzits : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144810.wav",
+          "meta": {
+            "dc:duration": 199000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Auzits : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144810_12-AUZITS_44k.mp3",
+          "meta": {
+            "dc:duration": 199000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Auzits : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a001",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme aviá pas que dos enfants.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 4461
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a002",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Lo pus jove diguèt a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 4461,
+          "end": 8455
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a003",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Es temps que siasque mon mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 8455,
+          "end": 13015
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a004",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’age d’argent ;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 13015,
+          "end": 16035
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a005",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cal que pògue me n’anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 16035,
+          "end": 20382
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a006",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que vege de país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 20382,
+          "end": 23754
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a007",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 23754,
+          "end": 27544
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a008",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e bailatz-me çò que duve avure. »",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 27544,
+          "end": 31386
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a009",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Ò mon enfant, diguèt lo paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 31386,
+          "end": 35234
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a010",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma volràs ;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 35234,
+          "end": 38095
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a011",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ès un false e seràs punit. »",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 38095,
+          "end": 42355
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a012",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E puèi durbiguèt un tirador",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 42355,
+          "end": 46811
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a013",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "partatgèt son ben e ne fèt doas parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 46811,
+          "end": 53942
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a014",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Quauques jorns apuèi, lo false se n’anèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 53942,
+          "end": 61463
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a015",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fasquent lo fièr",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 61463,
+          "end": 64128
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a016",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "a sans dire adieu a degús.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 64128,
+          "end": 67691
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a017",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Traversèt bel còp de landas,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 67691,
+          "end": 71016
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a018",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsses e de ribièiras.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 71016,
+          "end": 74466
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a019",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de quauques meses",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 74466,
+          "end": 77492
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a020",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "digèt vendre sos abilhaments a una vièlha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 77492,
+          "end": 82186
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a021",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loguèt per èstre vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 82186,
+          "end": 85667
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a022",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièron pels camps per gardar los ases e los buòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 85667,
+          "end": 92824
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a023",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alèra sièt plan malurós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 92824,
+          "end": 96567
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a024",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèt pas plus de lièch per dormir la nuech",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 96567,
+          "end": 100982
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a025",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fuòc per se caufar quand aviá freg.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 100982,
+          "end": 106522
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a026",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aviá quauqu’un còp talament apetit",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 106522,
+          "end": 110346
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a027",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’auriá plan manjat aquela fuèlha de caule",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 110346,
+          "end": 114370
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a028",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquela frucha poirida que manjan los pòrcs ;",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 114370,
+          "end": 118783
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a029",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "mès degús li bailava pas res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 118783,
+          "end": 122870
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a030",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un ser lo ventre vide",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 122870,
+          "end": 126446
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a031",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se daissèt tombar sur una soca",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 126446,
+          "end": 130008
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a032",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e agachava per la fenèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 130008,
+          "end": 133265
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a033",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "los aucèls que volavan laugièirament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 133265,
+          "end": 137225
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a034",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E puèi vegèt parèstre dins lo cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 137225,
+          "end": 141052
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a035",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 141052,
+          "end": 144571
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a036",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguèt en plorent :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 144571,
+          "end": 147550
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a037",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Alai l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 147550,
+          "end": 150945
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a038",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 150945,
+          "end": 153602
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a039",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’an de pan e de vin",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 153602,
+          "end": 156780
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a040",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "d’uòus e de fromatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 156780,
+          "end": 160175
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a041",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que ne vòlon.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 160175,
+          "end": 162913
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a042",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "D’aquel temps ieu crebe de fam aicí.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 162913,
+          "end": 167365
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a043",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben me vau levar",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 167365,
+          "end": 170639
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a044",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "anarai trobar mon paire e li dirai :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 170639,
+          "end": 174239
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a045",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Fèri un pecat quand volguère vos daissar",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 174239,
+          "end": 178979
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a046",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agère grand tòrt",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 178979,
+          "end": 182060
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a047",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n puniguèssetz ;",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 182060,
+          "end": 185380
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a048",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "zo sabe ben.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 185380,
+          "end": 187974
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a049",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apelèssetz pas plus vòstre enfant,",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 187974,
+          "end": 191428
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a050",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tretatz-me coma lo darrèr de vòstres vailets ;",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 191428,
+          "end": 195679
+        },
+        {
+          "id": "11280.100/crdo-12-AUZITS_SOUND_a051",
+          "media": "11280.100/crdo-12-AUZITS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "sière copable mès languissiái luènh de vos.",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 195679,
+          "end": 200986.122449
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-JOUELS_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:59+00:00",
+        "dc:modified": "2016-06-01T23:47:59+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Jouels : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144809_12-JOUELS_22km.wav",
+          "meta": {
+            "dc:duration": 153000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Jouels : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144809.wav",
+          "meta": {
+            "dc:duration": 153000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Jouels : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144809_12-JOUELS_44k.mp3",
+          "meta": {
+            "dc:duration": 153000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Jouels : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a001",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme aviá pas que dos enfants;",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3479
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a002",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Lo pus jove diguèt a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3479,
+          "end": 6610
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a003",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Es ora que sià mon mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 6610,
+          "end": 9591
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a004",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’aja d’argent ;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 9591,
+          "end": 11604
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a005",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cal que pògue me n’anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 11604,
+          "end": 13806
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a006",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que veja de país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 13806,
+          "end": 15880
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a007",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 15880,
+          "end": 18089
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a008",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que devi avure. »",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 18089,
+          "end": 20553
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a009",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Ò mon enfant, diguèt lo paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 20553,
+          "end": 23827
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a010",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma voràs ;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 23827,
+          "end": 26031
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a011",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "siás un missant e seràs punit. »",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 26031,
+          "end": 29143
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a012",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E après dubriguèt un tirador,",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 29143,
+          "end": 32193
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a013",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "partatgèt son ben e ne fèt doas parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 32193,
+          "end": 35632
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a014",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Qualques jorns après lo missant se n’anèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 35632,
+          "end": 40785
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a015",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fent lo fièr",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 40785,
+          "end": 42458
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a016",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sans dire adieu a degús.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 42458,
+          "end": 44817
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a017",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Traversèt bravament de landas,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 44817,
+          "end": 47702
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a018",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsses e de ribièidas.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 47702,
+          "end": 50281
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a019",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de qualques meses",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 50281,
+          "end": 52655
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a020",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "calguèt que vendèssa sos abilhaments a una vièlha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 52655,
+          "end": 56826
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a021",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loguèt per èstre vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 56826,
+          "end": 59271
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a022",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièron pels camps per gardar los ases e los buòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 59271,
+          "end": 64377
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a023",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alara sièt plan malurós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 64377,
+          "end": 67081
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a024",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèt pas pus de lièch per dormir la nuèch",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 67081,
+          "end": 70697
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a025",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fuòc per se caufar quand aviá freg.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 70697,
+          "end": 74239
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a026",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aviá qualque còp talament taren",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 74239,
+          "end": 77196
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a027",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’auriá plan manjadas aquelas fuelhas de cauret",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 77196,
+          "end": 80432
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a028",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquelas fruchas poiridas que manjan los pòrcs ;",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 80432,
+          "end": 84553
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a029",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "mès degús li bailava pas res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 84553,
+          "end": 87536
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a030",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un ser lo ventre curat",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 87536,
+          "end": 90185
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a031",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se daissèt tombar sur una soca",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 90185,
+          "end": 92695
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a032",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e fintava per la fenèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 92695,
+          "end": 94833
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a033",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "los aucèls que volavan laugièirament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 94833,
+          "end": 98008
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a034",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E puèi vegèt paretre dins lo cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 98008,
+          "end": 101471
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a035",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estelas",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 101471,
+          "end": 104407
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a036",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguèt en plorent :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 104407,
+          "end": 107234
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a037",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Aval l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 107234,
+          "end": 110567
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a038",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 110567,
+          "end": 113142
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a039",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’an de pan e de vin",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 113142,
+          "end": 117128
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a040",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "d’uòus e de fromatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 117128,
+          "end": 119388
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a041",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que ne vòron.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 119388,
+          "end": 121594
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a042",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Dins aquel temps ièu crèbi de fam aicí.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 121594,
+          "end": 125346
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a043",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben me vau levar",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 125346,
+          "end": 127625
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a044",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "anarai trobar mon paire e li dirai :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 127625,
+          "end": 130805
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a045",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Fèri un pecat quand volguèri vos daissar",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 130805,
+          "end": 134158
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a046",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agèri plan tòrt",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 134158,
+          "end": 136395
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a047",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me puniguètz ;",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 136395,
+          "end": 139479
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a048",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "o sabi ben.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 139479,
+          "end": 141389
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a049",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apelètz pas pus vòstre enfant",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 141389,
+          "end": 144149
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a050",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tretatz-me coma lo darrièr de vòstres vailets ;",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 144149,
+          "end": 147941
+        },
+        {
+          "id": "11280.100/crdo-12-JOUELS_SOUND_a051",
+          "media": "11280.100/crdo-12-JOUELS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "sièri copable mès languissiái luènh de vos.",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 147941,
+          "end": 154017.959184
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-LACASSAGNE_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:59+00:00",
+        "dc:modified": "2016-06-01T23:47:59+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Lacassagne : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144811_12-LACASSAGNE_22km.wav",
+          "meta": {
+            "dc:duration": 172000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Lacassagne : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144811.wav",
+          "meta": {
+            "dc:duration": 172000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Lacassagne : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144811_12-LACASSAGNE_44k.mp3",
+          "meta": {
+            "dc:duration": 172000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Lacassagne : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a001",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme avi’a pas que dos enfants.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 2824
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a002",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Lo pus jove diguèt a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 2824,
+          "end": 5795
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a003",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Es ora que siague mon mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 5795,
+          "end": 9075
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a004",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que agi d’argent ;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 9075,
+          "end": 11856
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a005",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cal que me’n pògui anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 11856,
+          "end": 14579
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a006",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que vegi de país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 14579,
+          "end": 17120
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a007",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 17120,
+          "end": 19791
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a008",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me aquò que devi avure. »",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 19791,
+          "end": 22872
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a009",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Ò mon enfant, diguèt lo paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 22872,
+          "end": 25968
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a010",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma vodràs ;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 25968,
+          "end": 28263
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a011",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "siès un missant e seràs punit.”",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 28263,
+          "end": 31583
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a012",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E après durbiguèt un tirador",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 31583,
+          "end": 34486
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a013",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "partatgèt son ben e ne fèt doas parts.",
+              "transl": {
+                "@value": "il partagea son bien et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 34486,
+          "end": 38616
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a014",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Quauques jorns après, lo missant se n’anèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 38616,
+          "end": 44342
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a015",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fent lo fièr",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 44342,
+          "end": 46549
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a016",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sans dire adieu a degús.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 46549,
+          "end": 49413
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a017",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Traversèt bravament de landas,",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 49413,
+          "end": 52341
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a018",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "de bòsses e de ribièidas.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 52341,
+          "end": 55440
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a019",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de quauques meses,",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 55440,
+          "end": 58439
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a020",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "digèt vendre sos abilhaments a una vièlha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 58439,
+          "end": 63018
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a021",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèt per èstre vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 63018,
+          "end": 67477
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a022",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièron dins los camps per gardar los ases e los buòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 67477,
+          "end": 73720
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a023",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alara sièt plan malurós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 73720,
+          "end": 76769
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a024",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèt pas pus de lièch per dormir la nuèch",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 76769,
+          "end": 80542
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a025",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fuòc per se caufar quand aviá freg.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 80542,
+          "end": 84386
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a026",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aviá quauque còp talament taren",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 84386,
+          "end": 87067
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a027",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’auriá plan manjat aquelas fuelhas de caule",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 87067,
+          "end": 90586
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a028",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquela frucha poirida que manjan los pòrcs ;",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 90586,
+          "end": 94821
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a029",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "mès degús i donava pas res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 94821,
+          "end": 98036
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a030",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un ser lo ventre vide",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 98036,
+          "end": 101078
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a031",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se daissèt tombar sur una soca",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 101078,
+          "end": 104604
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a032",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e agachava per la fenèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 104604,
+          "end": 107876
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a033",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "los aucèls que volavan laugièirament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 107876,
+          "end": 111916
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a034",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E puèi vegèt paretre dins lo cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 111916,
+          "end": 115483
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a035",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estèlas",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 115483,
+          "end": 118261
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a036",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguèt en plorent :",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 118261,
+          "end": 121165
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a037",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Aval l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 121165,
+          "end": 124460
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a038",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 124460,
+          "end": 127289
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a039",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "que an de pan e de vin",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 127289,
+          "end": 130143
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a040",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "d’uòus e de fromatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 130143,
+          "end": 133160
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a041",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que ne vòlon.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 133160,
+          "end": 135426
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a042",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aquel temps ieu morissi de fam aicí.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 135426,
+          "end": 141130
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a043",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben me vau levar,",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 141130,
+          "end": 143461
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a044",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "anarai trobar mon paire",
+              "transl": {
+                "@value": "j'irai trouver mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 143461,
+          "end": 146153
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a045",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e i dirai :",
+              "transl": {
+                "@value": "et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 146153,
+          "end": 148887
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a046",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Fèri un pecat quand volguèri vos daissar",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 148887,
+          "end": 152762
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a047",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agèri grand tòrt",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 152762,
+          "end": 155122
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a048",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n puniguètz ;",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 155122,
+          "end": 158429
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a049",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "o sabi ben.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 158429,
+          "end": 160377
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a050",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apeletz pas pus vòstre enfant",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 160377,
+          "end": 163842
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a051",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tratatz-me coma lo darrièr de vòstres vailets ;",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 163842,
+          "end": 167248
+        },
+        {
+          "id": "11280.100/crdo-12-LACASSAGNE_SOUND_a052",
+          "media": "11280.100/crdo-12-LACASSAGNE_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "sièri copable mès me languissiái luènh de vos. »",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 167248,
+          "end": 173400.816327
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-LANUEJOULS_SOUND",
+    "transcript": {
+      "format": "http://advene.org/ns/cinelab/",
+      "@context": {
+        "dc": "http://purl.org/dc/elements/1.1/",
+        "corpus": "http://corpusdelaparole.huma-num.fr/ns/corpus#"
+      },
+      "meta": {
+        "dc:creator": "Corpus de la Parole",
+        "dc:contributor": "Corpus de la Parole",
+        "dc:created": "2016-06-01T23:47:59+00:00",
+        "dc:modified": "2016-06-01T23:47:59+00:00",
+        "dc:title": {
+          "@language": "fr",
+          "@value": "ALLOc : Lanuéjouls : Parabole"
+        }
+      },
+      "medias": [
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_m1",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/144812_12-LANUEJOULS_22km.wav",
+          "meta": {
+            "dc:duration": 154000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Lanuéjouls : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": false
+          }
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/masters/144812.wav",
+          "meta": {
+            "dc:duration": 154000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Lanuéjouls : Parabole"
+            },
+            "dc:format": "audio/x-wav",
+            "corpus:master": true
+          }
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_m3",
+          "origin": 0,
+          "unit": "ms",
+          "url": "http://cocoon.huma-num.fr/data/archi/mp3/144812_12-LANUEJOULS_44k.mp3",
+          "meta": {
+            "dc:duration": 154000,
+            "dc:title": {
+              "@language": "fr",
+              "@value": "ALLOc : Lanuéjouls : Parabole"
+            },
+            "dc:format": "audio/mpeg",
+            "corpus:master": false
+          }
+        }
+      ],
+      "resources": [],
+      "lists": [],
+      "annotation-types": [],
+      "annotations": [
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a001",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un òme aviá pas que dos enfants.",
+              "transl": {
+                "@value": "Un homme n'avait que deux fils.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 0,
+          "end": 3309
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a002",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Lo pus jove diguèt a son paire :",
+              "transl": {
+                "@value": "Le plus jeune dit à son père :",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 3309,
+          "end": 6394
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a003",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Aquò ei temps que siague mon mèstre",
+              "transl": {
+                "@value": "\" Il est temps que je sois mon maître",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 6394,
+          "end": 9356
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a004",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e qu’agi d’argent ;",
+              "transl": {
+                "@value": "et que j'aie de l'argent;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 9356,
+          "end": 11696
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a005",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "cal que pògui me n’anar",
+              "transl": {
+                "@value": "il faut que je puisse m'en aller",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 11696,
+          "end": 14759
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a006",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e que vegi de país.",
+              "transl": {
+                "@value": "et que je voie du pays.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 14759,
+          "end": 17572
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a007",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Partatjatz vòstre ben",
+              "transl": {
+                "@value": "Partagez votre bien",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 17572,
+          "end": 19785
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a008",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e donatz-me çò que divi avure. »",
+              "transl": {
+                "@value": "et donnez-moi ce que je dois avoir\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 19785,
+          "end": 23254
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a009",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Ò mon enfant, diguèt lo paire,",
+              "transl": {
+                "@value": "\"O mon fils, dit le père,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 23254,
+          "end": 26114
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a010",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "coma voràs ;",
+              "transl": {
+                "@value": "comme tu voudras;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 26114,
+          "end": 27959
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a011",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "siás un missant e seràs punit. »",
+              "transl": {
+                "@value": "tu es méchant et tu seras puni\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 27959,
+          "end": 31089
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a012",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E après durbiguèt un tirador",
+              "transl": {
+                "@value": "Et ensuite il ouvrit un tiroir,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 31089,
+          "end": 34152
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a013",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "partatgèt son ben",
+              "transl": {
+                "@value": "il partagea son bien ",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 34152,
+          "end": 36796
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a014",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e ne fèt doas parts ;",
+              "transl": {
+                "@value": "et il en fit deux parts.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 36796,
+          "end": 39398
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a015",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Quauques jorns après, lo missant se n’anèt del vilatge",
+              "transl": {
+                "@value": "Quelques jours après, le méchant s'en alla du village",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 39398,
+          "end": 44397
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a016",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "en fent lo fièr",
+              "transl": {
+                "@value": "en faisant le fier",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 44397,
+          "end": 46391
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a017",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e sans dire al reveire a degús.",
+              "transl": {
+                "@value": "et sans dire adieu à personne.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 46391,
+          "end": 49434
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a018",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Traversèt plasses landas",
+              "transl": {
+                "@value": "Il traversa beaucoup de landes,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 49434,
+          "end": 51560
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a019",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "plasses bòsses e plasses ribièidas.",
+              "transl": {
+                "@value": "de bois, de rivières.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 51560,
+          "end": 54643
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a020",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Al cap de quauques meses",
+              "transl": {
+                "@value": "Au bout de quelques mois,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 54643,
+          "end": 56981
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a021",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "digèt vendre sos abilhaments a una vièlha femna",
+              "transl": {
+                "@value": "il dut vendre ses habits à une vieille femme",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 56981,
+          "end": 61024
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a022",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se loèt per èstre vailet.",
+              "transl": {
+                "@value": "et il se loua pour être valet.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 61024,
+          "end": 63900
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a023",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "L’envoièron dins los camps per gardar los ases e los buòus.",
+              "transl": {
+                "@value": "On l'envoya dans les champs pour garder les ânes et les boeufs.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 63900,
+          "end": 69741
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a024",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Alèra sièt plan malurós.",
+              "transl": {
+                "@value": "Alors il fut bien malheureux.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 69741,
+          "end": 72376
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a025",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Agèt pas mai de lièch per dormir la nuèch",
+              "transl": {
+                "@value": "Il n'eut plus de lit pour dormir la nuit",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 72376,
+          "end": 75667
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a026",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "ni de fuòc per se caufar quand aviá freg.",
+              "transl": {
+                "@value": "ni de feu pour se chauffer quand il avait froid.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 75667,
+          "end": 79003
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a027",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Aviá quauques còps talament talent",
+              "transl": {
+                "@value": "Il avait quelquefois tellement faim",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 79003,
+          "end": 82497
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a028",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "qu’auriá plan manjat aquelas fuèlhas de caule",
+              "transl": {
+                "@value": "qu'il aurait bien mangé ces feuilles de chou",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 82497,
+          "end": 85697
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a029",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e aquelas fruchas poiridas que manjan los pòrcs ;",
+              "transl": {
+                "@value": "et ces fruits pourris que mangent les porcs;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 85697,
+          "end": 89004
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a030",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "mès degús li donava pas res.",
+              "transl": {
+                "@value": "mais personne ne lui donnait rien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 89004,
+          "end": 91691
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a031",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Un ser lo ventre cròie",
+              "transl": {
+                "@value": "Un soir, ventre vide,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 91691,
+          "end": 94581
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a032",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "se daissèt tombar sur una soca",
+              "transl": {
+                "@value": "il se laissa tomber sur un tronc,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 94581,
+          "end": 97605
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a033",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e agachava per la fenèstra",
+              "transl": {
+                "@value": "et il regardait par la fenêtre",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 97605,
+          "end": 100226
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a034",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "los aucèls que volavan laugièirament.",
+              "transl": {
+                "@value": "les oiseaux qui volaient légèrement.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 100226,
+          "end": 103180
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a035",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E puèi vegèt paretre dins lo cèl",
+              "transl": {
+                "@value": "Et puis il vit paraître dans le ciel",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 103180,
+          "end": 105993
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a036",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "la luna e las estèlas",
+              "transl": {
+                "@value": "la lune et les étoiles,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 105993,
+          "end": 108679
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a037",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e se diguèt en plorent",
+              "transl": {
+                "@value": "et il se dit en pleurant:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 108679,
+          "end": 111429
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a038",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Aval, l’ostal de mon paire",
+              "transl": {
+                "@value": "\"Là-bas, la maison de mon père",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 111429,
+          "end": 114090
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a039",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "es plen de vailets",
+              "transl": {
+                "@value": "est pleine de valets",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 114090,
+          "end": 116193
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a040",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "que an de pan e de vin",
+              "transl": {
+                "@value": "qui ont du pain et du vin,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 116193,
+          "end": 118834
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a041",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "dels uòus e de fromatge",
+              "transl": {
+                "@value": "des oeufs et du fromage",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 118834,
+          "end": 121307
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a042",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tant que ne vòlon.",
+              "transl": {
+                "@value": "tant qu'ils en veulent.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 121307,
+          "end": 123479
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a043",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Pendent aquel temps ieu morissi de fam aicí.",
+              "transl": {
+                "@value": "Pendant ce temps, moi je meurs de faim, ici.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 123479,
+          "end": 128592
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a044",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "E ben me vau levar",
+              "transl": {
+                "@value": "Eh bien, je vais me lever,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 128592,
+          "end": 130596
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a045",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "Anarai trobar mon paire e li dirai :",
+              "transl": {
+                "@value": "j'irai trouver mon père et je lui dirai:",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 130596,
+          "end": 133948
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a046",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "« Fèri un pecat quand volguèri vos daissar",
+              "transl": {
+                "@value": "\" je fis un péché quand je voulus vous quitter;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 133948,
+          "end": 137024
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a047",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "agèri plan tòrt",
+              "transl": {
+                "@value": "j'eus grand tort,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 137024,
+          "end": 139121
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a048",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "e cal que me’n puniguètz ;",
+              "transl": {
+                "@value": "et il faut que vous m'en punissiez,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 139121,
+          "end": 141746
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a049",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "zo sabi ben.",
+              "transl": {
+                "@value": "je le sais bien.",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 141746,
+          "end": 143836
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a050",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "M’apelètz pas plus vòstre enfant,",
+              "transl": {
+                "@value": "Ne m'appelez plus votre fils,",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 143836,
+          "end": 146609
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a051",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "tretatz-me coma lo darrèr de vòstres vailets ;",
+              "transl": {
+                "@value": "traitez-moi comme le dernier de vos valets;",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 146609,
+          "end": 150015
+        },
+        {
+          "id": "11280.100/crdo-12-LANUEJOULS_SOUND_a052",
+          "media": "11280.100/crdo-12-LANUEJOULS_SOUND_m2",
+          "content": {
+            "mimetype": "application/json",
+            "data": {
+              "content": "sièri copable mès languissiái luènh de vos.",
+              "transl": {
+                "@value": "je fus coupable, mais je m'ennuyais loin de vous\".",
+                "@language": "fr"
+              }
+            }
+          },
+          "begin": 150015,
+          "end": 155742.040816
+        }
+      ]
+    }
+  },
+  {
+    "id": "11280.100/crdo-12-MARNAC1LEX_SOUND"
+  },
+  {
+    "id": "11280.100/crdo-12-MARNAC2LEX_SOUND"
+  },
+  {
+    "id": "11280.100/crdo-12-MARNAC3LEX_SOUND"
+  },
+  {
+    "id": "11280.100/crdo-12-MARNAC4MORPHO_SOUND"
+  },
+  {
+    "id": "11280.100/crdo-12-MARNAC5MORPHO_SOUND"
+  },
+  {
+    "id": "11280.100/crdo-12-MAYRAN1LEX_SOUND"
+  },
+  {
+    "id": "11280.100/crdo-12-MAYRAN2LEX_SOUND"
+  },
+  {
+    "id": "11280.100/crdo-12-MAYRAN3LEX_SOUND"
+  },
+  {
+    "id": "11280.100/crdo-12-MAYRAN4LEX_SOUND"
+  }
+];
\ No newline at end of file
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/models/bnf.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,4 @@
+import { Model } from 'ember-cli-mirage';
+
+export default Model.extend({
+});
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/models/discourse.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,4 @@
+import { Model } from 'ember-cli-mirage';
+
+export default Model.extend({
+});
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/models/document.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,4 @@
+import { Model } from 'ember-cli-mirage';
+
+export default Model.extend({
+});
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/models/language.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,4 @@
+import { Model } from 'ember-cli-mirage';
+
+export default Model.extend({
+});
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/models/lexvo.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,4 @@
+import { Model } from 'ember-cli-mirage';
+
+export default Model.extend({
+});
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/models/theme.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,4 @@
+import { Model } from 'ember-cli-mirage';
+
+export default Model.extend({
+});
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/models/transcript.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,4 @@
+import { Model } from 'ember-cli-mirage';
+
+export default Model.extend({
+});
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/serializers/application.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,4 @@
+// mirage/serializers/application.js
+import { Serializer } from 'ember-cli-mirage';
+
+export default Serializer;
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/serializers/application.js.old	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,3 @@
+import { RestSerializer } from 'ember-cli-mirage';
+
+export default RestSerializer;
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/serializers/discourse.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,9 @@
+import { JSONAPISerializer } from 'ember-cli-mirage';
+
+import _ from 'lodash/lodash';
+
+export default JSONAPISerializer.extend({
+    serialize(response) {
+        return _(response.models).map((discourse) => { return [discourse.id, {count: discourse.count, label: discourse.label}];}).object().value();
+    }
+});
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/serializers/language.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,10 @@
+import { JSONAPISerializer } from 'ember-cli-mirage';
+
+import _ from 'lodash/lodash';
+
+
+export default JSONAPISerializer.extend({
+    serialize(response) {
+        return _(response.models).map((lang) => { return [lang.id, lang.count];}).object().value();
+    }
+});
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/serializers/sparse-document.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,6 @@
+// mirage/serializers/blog-post.js
+import BaseSerializer from './application';
+
+export default BaseSerializer.extend({
+    attrs: ['id', 'title', 'language', 'url', 'issued', 'modified']
+});
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cms/app-client/mirage/serializers/theme.js	Tue Jun 07 01:16:31 2016 +0200
@@ -0,0 +1,9 @@
+import { JSONAPISerializer } from 'ember-cli-mirage';
+
+import _ from 'lodash/lodash';
+
+export default JSONAPISerializer.extend({
+    serialize(response) {
+        return _(response.models).map((theme) => { return [theme.id, {count: theme.count, label: theme.label}];}).object().value();
+    }
+});
--- a/cms/app-client/package.json	Tue Jun 07 01:11:44 2016 +0200
+++ b/cms/app-client/package.json	Tue Jun 07 01:16:31 2016 +0200
@@ -11,10 +11,10 @@
         "build": "ember build",
         "start": "ember server",
         "test": "ember test",
-        "dl-documents": "ember dl-fixtures -u http://127.0.0.1:8000/api/v1/documents/ -d app/mirage/fixtures/documents.js -t documents -e \"11280.100/crdo-UVE_MOCIKA_SOUND,11280.100/crdo-CFPP2000_11_SOUND,11280.100/crdo-FRA_PK_IV_10_SOUND,11280.100/crdo-FSL-CUC023_SOUND,11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND,11280.100/crdo-ESLO1_ENT_047\" -p 2 -f es6",
-        "dl-transcripts": "ember dl-fixtures -u http://127.0.0.1:8000/api/v1/documents/ -d app/mirage/fixtures/transcripts.js -t transcripts -e \"11280.100/crdo-UVE_MOCIKA_SOUND,11280.100/crdo-CFPP2000_11_SOUND,11280.100/crdo-FRA_PK_IV_10_SOUND,11280.100/crdo-FSL-CUC023_SOUND,11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND,11280.100/crdo-ESLO1_ENT_047\" -p 2 -f es6",
-        "dl-themes": "ember dl-fixtures -u http://127.0.0.1:8000/api/v1/themes/ -d app/mirage/fixtures/themes.js -t themes -f es6",
-        "dl-discourses": "ember dl-fixtures -u http://127.0.0.1:8000/api/v1/discourses/ -d app/mirage/fixtures/discourses.js -t discourses -f es6"
+        "dl-documents": "ember dl-fixtures -u http://127.0.0.1:8000/api/v1/documents/ -d mirage/fixtures/documents.js -t documents -e \"11280.100/crdo-UVE_MOCIKA_SOUND,11280.100/crdo-CFPP2000_11_SOUND,11280.100/crdo-FRA_PK_IV_10_SOUND,11280.100/crdo-FSL-CUC023_SOUND,11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND,11280.100/crdo-ESLO1_ENT_047\" -p 2 -f es6",
+        "dl-transcripts": "ember dl-fixtures -u http://127.0.0.1:8000/api/v1/documents/ -d mirage/fixtures/transcripts.js -t transcripts -e \"11280.100/crdo-UVE_MOCIKA_SOUND,11280.100/crdo-CFPP2000_11_SOUND,11280.100/crdo-FRA_PK_IV_10_SOUND,11280.100/crdo-FSL-CUC023_SOUND,11280.100/crdo-NEE_KHIAAK_KO_AK_SOUND,11280.100/crdo-ESLO1_ENT_047\" -p 2 -f es6",
+        "dl-themes": "ember dl-fixtures -u http://127.0.0.1:8000/api/v1/themes/ -d mirage/fixtures/themes.js -t themes -f es6",
+        "dl-discourses": "ember dl-fixtures -u http://127.0.0.1:8000/api/v1/discourses/ -d mirage/fixtures/discourses.js -t discourses -f es6"
     },
     "repository": "",
     "engines": {
@@ -39,7 +39,7 @@
         "ember-cli-htmlbars-inline-precompile": "^0.3.1",
         "ember-cli-inject-live-reload": "^1.4.0",
         "ember-cli-jshint": "^1.0.0",
-        "ember-cli-mirage": "0.1.13",
+        "ember-cli-mirage": "0.2.0",
         "ember-cli-qunit": "^1.4.0",
         "ember-cli-release": "1.0.0-beta.1",
         "ember-cli-sass": "5.3.1",
--- a/cms/app-client/tests/.jshintrc	Tue Jun 07 01:11:44 2016 +0200
+++ b/cms/app-client/tests/.jshintrc	Tue Jun 07 01:16:31 2016 +0200
@@ -1,5 +1,6 @@
 {
   "predef": [
+    "server",
     "document",
     "window",
     "location",
--- a/cms/app-client/tests/helpers/destroy-app.js	Tue Jun 07 01:11:44 2016 +0200
+++ b/cms/app-client/tests/helpers/destroy-app.js	Tue Jun 07 01:16:31 2016 +0200
@@ -2,4 +2,5 @@
 
 export default function destroyApp(application) {
   Ember.run(application, 'destroy');
+  server.shutdown();
 }
--- a/common/corpus-common-addon/lib/commands/dl-fixtures.js	Tue Jun 07 01:11:44 2016 +0200
+++ b/common/corpus-common-addon/lib/commands/dl-fixtures.js	Tue Jun 07 01:16:31 2016 +0200
@@ -153,8 +153,7 @@
     dl_documents: function(commandOptions, rawArgs, ui) { // eslint-disable-line no-unused-vars
 
         var destFiles = {
-            docs: path.join(path.dirname(this.dest), 'details_'+path.basename(this.dest)),
-            list: this.dest
+            docs: this.dest
         };
 
         return this.dl_documents_ids(commandOptions, rawArgs, ui).then(function(docs) {
@@ -219,15 +218,19 @@
         }).then(function(resList) {
             var format = this.format;
             return Q.all(_.map(resList, function(res, key) {
-                ui.writeLine(chalk.green('Writing ' + key + ' in file ' + destFiles[key]));
                 var deferred = Q.defer();
-                var prefix = (format==='es6')?'export default ':'module.exports = ';
-                fs.writeFile(destFiles[key], prefix + JSON.stringify(res,null,2) + ';', function(err) {
-                    if(err) {
-                        return deferred.reject(err);
-                    }
+                if(key in destFiles) {
+                    ui.writeLine(chalk.green('Writing ' + key + ' in file ' + destFiles[key]));
+                    var prefix = (format==='es6')?'export default ':'module.exports = ';
+                    fs.writeFile(destFiles[key], prefix + JSON.stringify(res,null,2) + ';', function(err) {
+                        if(err) {
+                            return deferred.reject(err);
+                        }
+                        deferred.resolve();
+                    });
+                } else {
                     deferred.resolve();
-                });
+                }
                 return deferred.promise;
             }));
         }.bind(this));
--- a/server/bo_client/server/fixtures/details_documents.js	Tue Jun 07 01:11:44 2016 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,3070 +0,0 @@
-module.exports = [
-  {
-    "id": "11280.100/crdo-09-CAYCHAX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-CAYCHAX_SOUND",
-    "title": "ALLOc : Caychax : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:16:38+02:00",
-    "issued": "2010-10-25T18:16:38+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Alazet, Pierre",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-CAYCHAX.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144792_09-CAYCHAX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144792_09-CAYCHAX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M18S",
-        "extent_ms": 198000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144792.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144792.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M18S",
-        "extent_ms": 198000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144792_09-CAYCHAX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144792_09-CAYCHAX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT03M18S",
-        "extent_ms": 198000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-DUN_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-DUN_SOUND",
-    "title": "ALLOc : Dun : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:18:23+02:00",
-    "issued": "2010-10-25T18:18:23+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Tricoire, Raymonde",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-DUN.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144793_09-DUN_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144793_09-DUN_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M07S",
-        "extent_ms": 187000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144793.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144793.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M07S",
-        "extent_ms": 187000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144793_09-DUN_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144793_09-DUN_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT03M07S",
-        "extent_ms": 187000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND",
-    "title": "ALLOc : La Bastide-de-Lordat : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:20:08+02:00",
-    "issued": "2010-10-25T18:20:08+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Roumieu, Berthe",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-LABASTIDE-DE-LORDAT.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144794_09-LABASTIDE-DE-LORDAT_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144794_09-LABASTIDE-DE-LORDAT_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M46S",
-        "extent_ms": 166000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144794.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144794.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M46S",
-        "extent_ms": 166000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144794_09-LABASTIDE-DE-LORDAT_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144794_09-LABASTIDE-DE-LORDAT_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M46S",
-        "extent_ms": 166000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-LOUBENS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-LOUBENS_SOUND",
-    "title": "ALLOc : Loubens : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:21:23+02:00",
-    "issued": "2010-10-25T18:21:23+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Faure, Antoinette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-LOUBENS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144795_09-LOUBENS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144795_09-LOUBENS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M28S",
-        "extent_ms": 148000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144795.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144795.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M28S",
-        "extent_ms": 148000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144795_09-LOUBENS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144795_09-LOUBENS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M28S",
-        "extent_ms": 148000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-MERENS-LES-VALS_SOUND",
-    "title": "ALLOc : Mérens-les-Vals : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:22:24+02:00",
-    "issued": "2010-10-25T18:22:24+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Laurens, François",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-MERENS-LES-VALS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144796_09-MERENS-LES-VALS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144796_09-MERENS-LES-VALS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M45S",
-        "extent_ms": 165000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144796.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144796.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M45S",
-        "extent_ms": 165000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144796_09-MERENS-LES-VALS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144796_09-MERENS-LES-VALS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M45S",
-        "extent_ms": 165000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-MONTSEGUR_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-MONTSEGUR_SOUND",
-    "title": "ALLOc : Montségur : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:23:14+02:00",
-    "issued": "2010-10-25T18:23:14+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Couquet, Marius",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-MONTSEGUR.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144797_09-MONTSEGUR_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144797_09-MONTSEGUR_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M50S",
-        "extent_ms": 170000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144797.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144797.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M50S",
-        "extent_ms": 170000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144797_09-MONTSEGUR_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144797_09-MONTSEGUR_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M50S",
-        "extent_ms": 170000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-PRAYOLS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-PRAYOLS_SOUND",
-    "title": "ALLOc : Prayols : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:24:06+02:00",
-    "issued": "2010-10-25T18:24:06+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Laguerre, Aimé",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-PRAYOLS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144798_09-PRAYOLS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144798_09-PRAYOLS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M02S",
-        "extent_ms": 182000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144798.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144798.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M02S",
-        "extent_ms": 182000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144798_09-PRAYOLS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144798_09-PRAYOLS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT03M02S",
-        "extent_ms": 182000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-QUERIGUT_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-QUERIGUT_SOUND",
-    "title": "ALLOc : Quérigut : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:24:56+02:00",
-    "issued": "2010-10-25T18:24:56+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Tichadou, Joseph",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-QUERIGUT.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144799_09-QUERIGUT_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144799_09-QUERIGUT_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M51S",
-        "extent_ms": 171000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144799.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144799.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M51S",
-        "extent_ms": 171000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144799_09-QUERIGUT_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144799_09-QUERIGUT_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M51S",
-        "extent_ms": 171000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-SIGUER_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-SIGUER_SOUND",
-    "title": "ALLOc : Siguer : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:25:51+02:00",
-    "issued": "2010-10-25T18:25:51+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Caujolle, Joseph",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-SIGUER.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144800_09-SIGUER_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144800_09-SIGUER_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M57S",
-        "extent_ms": 177000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144800.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144800.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M57S",
-        "extent_ms": 177000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144800_09-SIGUER_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144800_09-SIGUER_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M57S",
-        "extent_ms": 177000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND",
-    "title": "ALLOc : Saint-Martin-d'Oydes : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:26:22+02:00",
-    "issued": "2010-10-25T18:26:22+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Ferriès, Marcel",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-ST-MARTIN-D-OYDES.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144801_09-ST-MARTIN-D-OYDES_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144801_09-ST-MARTIN-D-OYDES_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M05S",
-        "extent_ms": 185000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144801.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144801.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M05S",
-        "extent_ms": 185000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144801_09-ST-MARTIN-D-OYDES_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144801_09-ST-MARTIN-D-OYDES_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT03M05S",
-        "extent_ms": 185000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-09-SURBA_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-09-SURBA_SOUND",
-    "title": "ALLOc : Surba : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:26:42+02:00",
-    "issued": "2010-10-25T18:26:42+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Roques, Camille",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Del Duca, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-SURBA.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144802_09-SURBA_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144802_09-SURBA_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M39S",
-        "extent_ms": 159000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144802.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144802.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M39S",
-        "extent_ms": 159000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144802_09-SURBA_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144802_09-SURBA_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M39S",
-        "extent_ms": 159000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-GRAMAZIE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-GRAMAZIE_SOUND",
-    "title": "ALLOc : Gramazie : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:27:39+02:00",
-    "issued": "2010-10-25T18:27:39+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Léger, Clémence",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "De Lorenzo, Linda",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-GRAMAZIE.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144803_11-GRAMAZIE_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144803_11-GRAMAZIE_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M27S",
-        "extent_ms": 147000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144803.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144803.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M27S",
-        "extent_ms": 147000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144803_11-GRAMAZIE_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144803_11-GRAMAZIE_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M27S",
-        "extent_ms": 147000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-MOLLEVILLE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-MOLLEVILLE_SOUND",
-    "title": "ALLOc : Molleville : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:28:06+02:00",
-    "issued": "2010-10-25T18:28:06+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Cathala, Auguste",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "De Lorenzo, Linda",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-MOLLEVILLE.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144804_11-MOLLEVILLE_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144804_11-MOLLEVILLE_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M53S",
-        "extent_ms": 173000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144804.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144804.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M53S",
-        "extent_ms": 173000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144804_11-MOLLEVILLE_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144804_11-MOLLEVILLE_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M53S",
-        "extent_ms": 173000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-PUIVERT_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-PUIVERT_SOUND",
-    "title": "ALLOc : Puivert : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:28:40+02:00",
-    "issued": "2010-10-25T18:28:40+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Maugard, Marie",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "De Lorenzo, Linda",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-PUIVERT.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144805_11-PUIVERT_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144805_11-PUIVERT_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M35S",
-        "extent_ms": 155000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144805.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144805.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M35S",
-        "extent_ms": 155000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144805_11-PUIVERT_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144805_11-PUIVERT_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M35S",
-        "extent_ms": 155000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-RIBOUISSE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-RIBOUISSE_SOUND",
-    "title": "ALLOc : Ribouisse : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:29:32+02:00",
-    "issued": "2010-10-25T18:29:32+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Dournès, Lucien",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "De Lorenzo, Linda",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-RIBOUISSE.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144806_11-RIBOUISSE_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144806_11-RIBOUISSE_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M11S",
-        "extent_ms": 191000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144806.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144806.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M11S",
-        "extent_ms": 191000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144806_11-RIBOUISSE_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144806_11-RIBOUISSE_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT03M11S",
-        "extent_ms": 191000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND",
-    "title": "ALLOc : Sonnac-sur-l'Hers : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:29:56+02:00",
-    "issued": "2010-10-25T18:29:56+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Dumons, Marcellin",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "De Lorenzo, Linda",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112"
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-SONNAC-SUR-L-HERS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144807_11-SONNAC-SUR-L-HERS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144807_11-SONNAC-SUR-L-HERS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M27S",
-        "extent_ms": 147000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144807.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144807.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M27S",
-        "extent_ms": 147000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144807_11-SONNAC-SUR-L-HERS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144807_11-SONNAC-SUR-L-HERS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M27S",
-        "extent_ms": 147000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND",
-    "title": "ALLOc : Saint-Martin-Lalande : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:30:27+02:00",
-    "issued": "2010-10-25T18:30:27+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Hugonnet, Pierre",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "De Lorenzo, Linda",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-ST-MARTIN-LALANDE.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144808_11-ST-MARTIN-LALANDE_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144808_11-ST-MARTIN-LALANDE_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01M59S",
-        "extent_ms": 119000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144808.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144808.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01M59S",
-        "extent_ms": 119000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144808_11-ST-MARTIN-LALANDE_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144808_11-ST-MARTIN-LALANDE_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT01M59S",
-        "extent_ms": 119000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-AUZITS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-AUZITS_SOUND",
-    "title": "ALLOc : Auzits : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:31:22+02:00",
-    "issued": "2010-10-25T18:31:22+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Constans, André",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Bosc, Marie-Sophie",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-AUZITS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144810_12-AUZITS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144810_12-AUZITS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M19S",
-        "extent_ms": 199000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144810.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144810.wav",
-        "format": "audio/x-wav",
-        "extent": "PT03M19S",
-        "extent_ms": 199000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144810_12-AUZITS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144810_12-AUZITS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT03M19S",
-        "extent_ms": 199000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-JOUELS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-JOUELS_SOUND",
-    "title": "ALLOc : Jouels : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:31:21+02:00",
-    "issued": "2010-10-25T18:31:21+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Bayol, Maria",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Bosc, Marie-Sophie",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-JOUELS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144809_12-JOUELS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144809_12-JOUELS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M33S",
-        "extent_ms": 153000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144809.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144809.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M33S",
-        "extent_ms": 153000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144809_12-JOUELS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144809_12-JOUELS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M33S",
-        "extent_ms": 153000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-LACASSAGNE_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-LACASSAGNE_SOUND",
-    "title": "ALLOc : Lacassagne : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:31:43+02:00",
-    "issued": "2010-10-25T18:31:43+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Andrieu, Honoré",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Bosc, Marie-Sophie",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-LACASSAGNE.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144811_12-LACASSAGNE_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144811_12-LACASSAGNE_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M52S",
-        "extent_ms": 172000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144811.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144811.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M52S",
-        "extent_ms": 172000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144811_12-LACASSAGNE_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144811_12-LACASSAGNE_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M52S",
-        "extent_ms": 172000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-LANUEJOULS_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-LANUEJOULS_SOUND",
-    "title": "ALLOc : Lanuéjouls : Parabole",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:32:16+02:00",
-    "issued": "2010-10-25T18:32:16+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/56666014",
-        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
-      },
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/51700729",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Garric, Raymond",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Bosc, Marie-Sophie",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
-      }
-    ],
-    "subjects": [
-      "http://ark.bnf.fr/ark:/12148/cb11946662b",
-      "http://ark.bnf.fr/ark:/12148/cb11965628b",
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      },
-      "http://ark.bnf.fr/ark:/12148/cb11970755h",
-      "http://ark.bnf.fr/ark:/12148/cb119766112",
-      {
-        "value": "translating_and_interpreting",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      }
-    ],
-    "transcript": {
-      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-LANUEJOULS.xml",
-      "format": "application/xml",
-      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
-    },
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144812_12-LANUEJOULS_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144812_12-LANUEJOULS_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M34S",
-        "extent_ms": 154000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144812.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144812.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02M34S",
-        "extent_ms": 154000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144812_12-LANUEJOULS_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144812_12-LANUEJOULS_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02M34S",
-        "extent_ms": 154000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC1LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC1LEX_SOUND",
-    "title": "ALLOc : Marnac",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:33:17+02:00",
-    "issued": "2010-10-25T18:33:17+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/17256845",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Gibily, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Rouchy, Armand",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144813_12-MARNAC1LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144813_12-MARNAC1LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H05M27S",
-        "extent_ms": 3927000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144813.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144813.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H05M27S",
-        "extent_ms": 3927000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144813_12-MARNAC1LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144813_12-MARNAC1LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT01H05M27S",
-        "extent_ms": 3927000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC2LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC2LEX_SOUND",
-    "title": "ALLOc : Marnac-2",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:33:43+02:00",
-    "issued": "2010-10-25T18:33:43+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/17256845",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Gibily, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Rouchy, Armand",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144814_12-MARNAC2LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144814_12-MARNAC2LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H08M08S",
-        "extent_ms": 7688000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144814.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144814.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H08M08S",
-        "extent_ms": 7688000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144814_12-MARNAC2LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144814_12-MARNAC2LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02H08M08S",
-        "extent_ms": 7688000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC3LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC3LEX_SOUND",
-    "title": "ALLOc : Marnac-3",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:33:51+02:00",
-    "issued": "2010-10-25T18:33:51+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/17256845",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Gibily, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Rouchy, Armand",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144815_12-MARNAC3LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144815_12-MARNAC3LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H56M35S",
-        "extent_ms": 6995000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144815.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144815.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H56M35S",
-        "extent_ms": 6995000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144815_12-MARNAC3LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144815_12-MARNAC3LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT01H56M35S",
-        "extent_ms": 6995000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC4MORPHO_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC4MORPHO_SOUND",
-    "title": "ALLOc : Marnac-4",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:34:19+02:00",
-    "issued": "2010-10-25T18:34:19+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/17256845",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Gibily, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Rouchy, Armand",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144816_12-MARNAC4MORPHO_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144816_12-MARNAC4MORPHO_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT11M23S",
-        "extent_ms": 683000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144816.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144816.wav",
-        "format": "audio/x-wav",
-        "extent": "PT11M23S",
-        "extent_ms": 683000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144816_12-MARNAC4MORPHO_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144816_12-MARNAC4MORPHO_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT11M23S",
-        "extent_ms": 683000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MARNAC5MORPHO_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MARNAC5MORPHO_SOUND",
-    "title": "ALLOc : Marnac-5",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:35:45+02:00",
-    "issued": "2010-10-25T18:35:45+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/17256845",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Gibily, Jeanne",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Rouchy, Armand",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "morphology",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144817_12-MARNAC5MORPHO_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144817_12-MARNAC5MORPHO_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H02M25S",
-        "extent_ms": 3745000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144817.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144817.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H02M25S",
-        "extent_ms": 3745000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144817_12-MARNAC5MORPHO_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144817_12-MARNAC5MORPHO_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT01H02M25S",
-        "extent_ms": 3745000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN1LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN1LEX_SOUND",
-    "title": "ALLOc : Mayran",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:36:22+02:00",
-    "issued": "2010-10-25T18:36:22+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Boutary Jeannette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Boutary Simon",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Lacombe Ruben",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Clément",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Léa",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Pierre",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144818_12-MAYRAN1LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144818_12-MAYRAN1LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H26M21S",
-        "extent_ms": 5181000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144818.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144818.wav",
-        "format": "audio/x-wav",
-        "extent": "PT01H26M21S",
-        "extent_ms": 5181000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144818_12-MAYRAN1LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144818_12-MAYRAN1LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT01H26M21S",
-        "extent_ms": 5181000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN2LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN2LEX_SOUND",
-    "title": "ALLOc : Mayran",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:36:52+02:00",
-    "issued": "2010-10-25T18:36:52+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Boutary Jeannette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Boutary Simon",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Lacombe Ruben",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Clément",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Léa",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Pierre",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144819_12-MAYRAN2LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144819_12-MAYRAN2LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H06M51S",
-        "extent_ms": 7611000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144819.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144819.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H06M51S",
-        "extent_ms": 7611000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144819_12-MAYRAN2LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144819_12-MAYRAN2LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02H06M51S",
-        "extent_ms": 7611000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN3LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN3LEX_SOUND",
-    "title": "ALLOc : Mayran-3",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:36:54+02:00",
-    "issued": "2010-10-25T18:36:54+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Boutary Jeannette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Boutary Simon",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Lacombe Ruben",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Clément",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Léa",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Pierre",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144820_12-MAYRAN3LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144820_12-MAYRAN3LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H06M57S",
-        "extent_ms": 7617000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144820.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144820.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H06M57S",
-        "extent_ms": 7617000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144820_12-MAYRAN3LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144820_12-MAYRAN3LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02H06M57S",
-        "extent_ms": 7617000,
-        "master": false
-      }
-    }
-  },
-  {
-    "id": "11280.100/crdo-12-MAYRAN4LEX_SOUND",
-    "uri": "https://hdl.handle.net/11280.100/crdo-12-MAYRAN4LEX_SOUND",
-    "title": "ALLOc : Mayran-4",
-    "language": "http://lexvo.org/id/iso639-3/oci",
-    "modified": "2010-10-25T18:37:07+02:00",
-    "issued": "2010-10-25T18:37:07+02:00",
-    "publishers": [
-      "Équipe de Recherche en Syntaxe et Sémantique",
-      "Bases, corpus, langage"
-    ],
-    "contributors": [
-      {
-        "name": "LDOR",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Thésaurus Occitan",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
-      },
-      {
-        "name": "Équipe de Recherche en Syntaxe et Sémantique",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": "Bases, corpus, langage",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/editor"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
-      },
-      {
-        "name": null,
-        "url": "http://viaf.org/viaf/91792187",
-        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
-      },
-      {
-        "name": "Boutary Jeannette",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Boutary Simon",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Lacombe Ruben",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Clément",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Léa",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      },
-      {
-        "name": "Solignac Pierre",
-        "url": null,
-        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
-      }
-    ],
-    "subjects": [
-      {
-        "value": "lexicography",
-        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
-        "lang": null
-      },
-      "http://lexvo.org/id/iso639-3/oci",
-      {
-        "value": "Occitan/Languedocien",
-        "datatype": null,
-        "lang": "fr"
-      }
-    ],
-    "transcript": null,
-    "mediaArray": {
-      "http://cocoon.huma-num.fr/data/archi/144821_12-MAYRAN4LEX_22km.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/144821_12-MAYRAN4LEX_22km.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H06M55S",
-        "extent_ms": 7615000,
-        "master": false
-      },
-      "http://cocoon.huma-num.fr/data/archi/masters/144821.wav": {
-        "url": "http://cocoon.huma-num.fr/data/archi/masters/144821.wav",
-        "format": "audio/x-wav",
-        "extent": "PT02H06M55S",
-        "extent_ms": 7615000,
-        "master": true
-      },
-      "http://cocoon.huma-num.fr/data/archi/mp3/144821_12-MAYRAN4LEX_44k.mp3": {
-        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144821_12-MAYRAN4LEX_44k.mp3",
-        "format": "audio/mpeg",
-        "extent": "PT02H06M55S",
-        "extent_ms": 7615000,
-        "master": false
-      }
-    }
-  }
-];
\ No newline at end of file
--- a/server/bo_client/server/fixtures/documents.js	Tue Jun 07 01:11:44 2016 +0200
+++ b/server/bo_client/server/fixtures/documents.js	Tue Jun 07 01:16:31 2016 +0200
@@ -5,7 +5,121 @@
     "title": "ALLOc : Caychax : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:16:38+02:00",
-    "issued": "2010-10-25T18:16:38+02:00"
+    "issued": "2010-10-25T18:16:38+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Alazet, Pierre",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-CAYCHAX.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144792_09-CAYCHAX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144792_09-CAYCHAX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M18S",
+        "extent_ms": 198000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144792.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144792.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M18S",
+        "extent_ms": 198000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144792_09-CAYCHAX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144792_09-CAYCHAX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT03M18S",
+        "extent_ms": 198000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Caychax",
+        "http://sws.geonames.org/6446897/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Caychax",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-09-DUN_SOUND",
@@ -13,7 +127,121 @@
     "title": "ALLOc : Dun : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:18:23+02:00",
-    "issued": "2010-10-25T18:18:23+02:00"
+    "issued": "2010-10-25T18:18:23+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Tricoire, Raymonde",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-DUN.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144793_09-DUN_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144793_09-DUN_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M07S",
+        "extent_ms": 187000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144793.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144793.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M07S",
+        "extent_ms": 187000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144793_09-DUN_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144793_09-DUN_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT03M07S",
+        "extent_ms": 187000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Dun_(Ariège)",
+        "http://sws.geonames.org/6426188/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Dun",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-09-LABASTIDE-DE-LORDAT_SOUND",
@@ -21,7 +249,121 @@
     "title": "ALLOc : La Bastide-de-Lordat : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:20:08+02:00",
-    "issued": "2010-10-25T18:20:08+02:00"
+    "issued": "2010-10-25T18:20:08+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Roumieu, Berthe",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-LABASTIDE-DE-LORDAT.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144794_09-LABASTIDE-DE-LORDAT_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144794_09-LABASTIDE-DE-LORDAT_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M46S",
+        "extent_ms": 166000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144794.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144794.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M46S",
+        "extent_ms": 166000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144794_09-LABASTIDE-DE-LORDAT_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144794_09-LABASTIDE-DE-LORDAT_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M46S",
+        "extent_ms": 166000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/La_Bastide-de-Lordat",
+        "http://sws.geonames.org/6618238/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, La Bastide-de-Lordat",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-09-LOUBENS_SOUND",
@@ -29,7 +371,121 @@
     "title": "ALLOc : Loubens : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:21:23+02:00",
-    "issued": "2010-10-25T18:21:23+02:00"
+    "issued": "2010-10-25T18:21:23+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Faure, Antoinette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-LOUBENS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144795_09-LOUBENS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144795_09-LOUBENS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M28S",
+        "extent_ms": 148000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144795.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144795.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M28S",
+        "extent_ms": 148000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144795_09-LOUBENS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144795_09-LOUBENS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M28S",
+        "extent_ms": 148000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Loubens_(Ariège)",
+        "http://sws.geonames.org/6453612/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Loubens",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-09-MERENS-LES-VALS_SOUND",
@@ -37,7 +493,121 @@
     "title": "ALLOc : Mérens-les-Vals : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:22:24+02:00",
-    "issued": "2010-10-25T18:22:24+02:00"
+    "issued": "2010-10-25T18:22:24+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Laurens, François",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-MERENS-LES-VALS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144796_09-MERENS-LES-VALS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144796_09-MERENS-LES-VALS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M45S",
+        "extent_ms": 165000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144796.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144796.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M45S",
+        "extent_ms": 165000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144796_09-MERENS-LES-VALS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144796_09-MERENS-LES-VALS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M45S",
+        "extent_ms": 165000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Mérens-les-Vals",
+        "http://sws.geonames.org/6615269/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Mérens-les-Vals",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-09-MONTSEGUR_SOUND",
@@ -45,7 +615,121 @@
     "title": "ALLOc : Montségur : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:23:14+02:00",
-    "issued": "2010-10-25T18:23:14+02:00"
+    "issued": "2010-10-25T18:23:14+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Couquet, Marius",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-MONTSEGUR.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144797_09-MONTSEGUR_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144797_09-MONTSEGUR_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M50S",
+        "extent_ms": 170000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144797.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144797.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M50S",
+        "extent_ms": 170000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144797_09-MONTSEGUR_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144797_09-MONTSEGUR_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M50S",
+        "extent_ms": 170000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Montségur",
+        "http://sws.geonames.org/6426260/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Montségur",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-09-PRAYOLS_SOUND",
@@ -53,7 +737,111 @@
     "title": "ALLOc : Prayols : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:24:06+02:00",
-    "issued": "2010-10-25T18:24:06+02:00"
+    "issued": "2010-10-25T18:24:06+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Laguerre, Aimé",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-PRAYOLS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144798_09-PRAYOLS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144798_09-PRAYOLS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M02S",
+        "extent_ms": 182000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144798.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144798.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M02S",
+        "extent_ms": 182000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144798_09-PRAYOLS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144798_09-PRAYOLS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT03M02S",
+        "extent_ms": 182000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Prayols",
+        "http://sws.geonames.org/6426277/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Prayols",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-09-QUERIGUT_SOUND",
@@ -61,7 +849,121 @@
     "title": "ALLOc : Quérigut : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:24:56+02:00",
-    "issued": "2010-10-25T18:24:56+02:00"
+    "issued": "2010-10-25T18:24:56+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Tichadou, Joseph",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-QUERIGUT.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144799_09-QUERIGUT_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144799_09-QUERIGUT_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M51S",
+        "extent_ms": 171000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144799.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144799.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M51S",
+        "extent_ms": 171000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144799_09-QUERIGUT_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144799_09-QUERIGUT_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M51S",
+        "extent_ms": 171000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Quérigut",
+        "http://sws.geonames.org/6618205/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Quérigut",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-09-SIGUER_SOUND",
@@ -69,7 +971,121 @@
     "title": "ALLOc : Siguer : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:25:51+02:00",
-    "issued": "2010-10-25T18:25:51+02:00"
+    "issued": "2010-10-25T18:25:51+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Caujolle, Joseph",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-SIGUER.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144800_09-SIGUER_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144800_09-SIGUER_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M57S",
+        "extent_ms": 177000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144800.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144800.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M57S",
+        "extent_ms": 177000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144800_09-SIGUER_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144800_09-SIGUER_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M57S",
+        "extent_ms": 177000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Siguer",
+        "http://sws.geonames.org/6426323/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Siguer",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-09-ST-MARTIN-D-OYDES_SOUND",
@@ -77,7 +1093,121 @@
     "title": "ALLOc : Saint-Martin-d'Oydes : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:26:22+02:00",
-    "issued": "2010-10-25T18:26:22+02:00"
+    "issued": "2010-10-25T18:26:22+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Ferriès, Marcel",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-ST-MARTIN-D-OYDES.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144801_09-ST-MARTIN-D-OYDES_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144801_09-ST-MARTIN-D-OYDES_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M05S",
+        "extent_ms": 185000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144801.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144801.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M05S",
+        "extent_ms": 185000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144801_09-ST-MARTIN-D-OYDES_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144801_09-ST-MARTIN-D-OYDES_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT03M05S",
+        "extent_ms": 185000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Saint-Martin-d'Oydes",
+        "http://sws.geonames.org/6426302/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Saint-Martin-d'Oydes",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-09-SURBA_SOUND",
@@ -85,7 +1215,121 @@
     "title": "ALLOc : Surba : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:26:42+02:00",
-    "issued": "2010-10-25T18:26:42+02:00"
+    "issued": "2010-10-25T18:26:42+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Roques, Camille",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Del Duca, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-09-SURBA.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144802_09-SURBA_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144802_09-SURBA_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M39S",
+        "extent_ms": 159000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144802.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144802.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M39S",
+        "extent_ms": 159000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144802_09-SURBA_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144802_09-SURBA_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M39S",
+        "extent_ms": 159000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Surba",
+        "http://sws.geonames.org/6426328/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Ariège, Surba",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-11-GRAMAZIE_SOUND",
@@ -93,7 +1337,121 @@
     "title": "ALLOc : Gramazie : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:27:39+02:00",
-    "issued": "2010-10-25T18:27:39+02:00"
+    "issued": "2010-10-25T18:27:39+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Léger, Clémence",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "De Lorenzo, Linda",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-GRAMAZIE.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144803_11-GRAMAZIE_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144803_11-GRAMAZIE_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M27S",
+        "extent_ms": 147000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144803.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144803.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M27S",
+        "extent_ms": 147000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144803_11-GRAMAZIE_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144803_11-GRAMAZIE_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M27S",
+        "extent_ms": 147000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Gramazie",
+        "http://sws.geonames.org/6426695/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aude, Gramazie",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-11-MOLLEVILLE_SOUND",
@@ -101,7 +1459,121 @@
     "title": "ALLOc : Molleville : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:28:06+02:00",
-    "issued": "2010-10-25T18:28:06+02:00"
+    "issued": "2010-10-25T18:28:06+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Cathala, Auguste",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "De Lorenzo, Linda",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-MOLLEVILLE.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144804_11-MOLLEVILLE_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144804_11-MOLLEVILLE_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M53S",
+        "extent_ms": 173000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144804.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144804.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M53S",
+        "extent_ms": 173000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144804_11-MOLLEVILLE_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144804_11-MOLLEVILLE_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M53S",
+        "extent_ms": 173000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Molleville",
+        "http://sws.geonames.org/6426753/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aude, Molleville",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-11-PUIVERT_SOUND",
@@ -109,7 +1581,121 @@
     "title": "ALLOc : Puivert : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:28:40+02:00",
-    "issued": "2010-10-25T18:28:40+02:00"
+    "issued": "2010-10-25T18:28:40+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Maugard, Marie",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "De Lorenzo, Linda",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-PUIVERT.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144805_11-PUIVERT_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144805_11-PUIVERT_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M35S",
+        "extent_ms": 155000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144805.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144805.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M35S",
+        "extent_ms": 155000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144805_11-PUIVERT_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144805_11-PUIVERT_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M35S",
+        "extent_ms": 155000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Puivert",
+        "http://sws.geonames.org/6426809/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aude, Puivert",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-11-RIBOUISSE_SOUND",
@@ -117,7 +1703,121 @@
     "title": "ALLOc : Ribouisse : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:29:32+02:00",
-    "issued": "2010-10-25T18:29:32+02:00"
+    "issued": "2010-10-25T18:29:32+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Dournès, Lucien",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "De Lorenzo, Linda",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-RIBOUISSE.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144806_11-RIBOUISSE_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144806_11-RIBOUISSE_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M11S",
+        "extent_ms": 191000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144806.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144806.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M11S",
+        "extent_ms": 191000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144806_11-RIBOUISSE_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144806_11-RIBOUISSE_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT03M11S",
+        "extent_ms": 191000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Ribouisse",
+        "http://sws.geonames.org/6426816/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aude, Ribouisse",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-11-SONNAC-SUR-L-HERS_SOUND",
@@ -125,7 +1825,116 @@
     "title": "ALLOc : Sonnac-sur-l'Hers : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:29:56+02:00",
-    "issued": "2010-10-25T18:29:56+02:00"
+    "issued": "2010-10-25T18:29:56+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Dumons, Marcellin",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "De Lorenzo, Linda",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112"
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-SONNAC-SUR-L-HERS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144807_11-SONNAC-SUR-L-HERS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144807_11-SONNAC-SUR-L-HERS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M27S",
+        "extent_ms": 147000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144807.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144807.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M27S",
+        "extent_ms": 147000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144807_11-SONNAC-SUR-L-HERS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144807_11-SONNAC-SUR-L-HERS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M27S",
+        "extent_ms": 147000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Sonnac-sur-l'Hers",
+        "http://sws.geonames.org/6426874/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aude, Sonnac-sur-l'Hers",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-11-ST-MARTIN-LALANDE_SOUND",
@@ -133,7 +1942,121 @@
     "title": "ALLOc : Saint-Martin-Lalande : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:30:27+02:00",
-    "issued": "2010-10-25T18:30:27+02:00"
+    "issued": "2010-10-25T18:30:27+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Hugonnet, Pierre",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "De Lorenzo, Linda",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-11-ST-MARTIN-LALANDE.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144808_11-ST-MARTIN-LALANDE_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144808_11-ST-MARTIN-LALANDE_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01M59S",
+        "extent_ms": 119000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144808.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144808.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01M59S",
+        "extent_ms": 119000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144808_11-ST-MARTIN-LALANDE_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144808_11-ST-MARTIN-LALANDE_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT01M59S",
+        "extent_ms": 119000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Saint-Martin-Lalande",
+        "http://sws.geonames.org/6426853/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aude, Saint-Martin-Lalande",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-AUZITS_SOUND",
@@ -141,7 +2064,121 @@
     "title": "ALLOc : Auzits : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:31:22+02:00",
-    "issued": "2010-10-25T18:31:22+02:00"
+    "issued": "2010-10-25T18:31:22+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Constans, André",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Bosc, Marie-Sophie",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-AUZITS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144810_12-AUZITS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144810_12-AUZITS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M19S",
+        "extent_ms": 199000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144810.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144810.wav",
+        "format": "audio/x-wav",
+        "extent": "PT03M19S",
+        "extent_ms": 199000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144810_12-AUZITS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144810_12-AUZITS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT03M19S",
+        "extent_ms": 199000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Auzits",
+        "http://sws.geonames.org/6447048/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Auzits",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-JOUELS_SOUND",
@@ -149,7 +2186,121 @@
     "title": "ALLOc : Jouels : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:31:21+02:00",
-    "issued": "2010-10-25T18:31:21+02:00"
+    "issued": "2010-10-25T18:31:21+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Bayol, Maria",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Bosc, Marie-Sophie",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-JOUELS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144809_12-JOUELS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144809_12-JOUELS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M33S",
+        "extent_ms": 153000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144809.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144809.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M33S",
+        "extent_ms": 153000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144809_12-JOUELS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144809_12-JOUELS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M33S",
+        "extent_ms": 153000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Sauveterre-de-Rouergue",
+        "http://sws.geonames.org/6427053/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Sauveterre-de-Rouergue (Jouels)",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-LACASSAGNE_SOUND",
@@ -157,7 +2308,123 @@
     "title": "ALLOc : Lacassagne : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:31:43+02:00",
-    "issued": "2010-10-25T18:31:43+02:00"
+    "issued": "2010-10-25T18:31:43+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Andrieu, Honoré",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Bosc, Marie-Sophie",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-LACASSAGNE.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144811_12-LACASSAGNE_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144811_12-LACASSAGNE_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M52S",
+        "extent_ms": 172000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144811.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144811.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M52S",
+        "extent_ms": 172000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144811_12-LACASSAGNE_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144811_12-LACASSAGNE_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M52S",
+        "extent_ms": 172000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "southlimit=41.371582; northlimit=51.092804; eastlimit=9.561556; westlimit=-5.142222",
+          "datatype": "http://purl.org/dc/terms/Box",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Lacassagne",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-LANUEJOULS_SOUND",
@@ -165,7 +2432,121 @@
     "title": "ALLOc : Lanuéjouls : Parabole",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:32:16+02:00",
-    "issued": "2010-10-25T18:32:16+02:00"
+    "issued": "2010-10-25T18:32:16+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/56666014",
+        "role": "http://www.language-archives.org/OLAC/1.1/data_inputter"
+      },
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/51700729",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Garric, Raymond",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Bosc, Marie-Sophie",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/transcriber"
+      }
+    ],
+    "subjects": [
+      "http://ark.bnf.fr/ark:/12148/cb11946662b",
+      "http://ark.bnf.fr/ark:/12148/cb11965628b",
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      },
+      "http://ark.bnf.fr/ark:/12148/cb11970755h",
+      "http://ark.bnf.fr/ark:/12148/cb119766112",
+      {
+        "value": "translating_and_interpreting",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      }
+    ],
+    "transcript": {
+      "url": "http://cocoon.huma-num.fr/exist/crdo/thesoc/oc/crdo-12-LANUEJOULS.xml",
+      "format": "application/xml",
+      "conforms-to": "http://purl.org/poi/crdo.vjf.cnrs.fr/crdo-dtd_archive"
+    },
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144812_12-LANUEJOULS_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144812_12-LANUEJOULS_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M34S",
+        "extent_ms": 154000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144812.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144812.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02M34S",
+        "extent_ms": 154000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144812_12-LANUEJOULS_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144812_12-LANUEJOULS_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02M34S",
+        "extent_ms": 154000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Lanuéjouls",
+        "http://sws.geonames.org/6615868/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Lanuéjouls",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-MARNAC1LEX_SOUND",
@@ -173,7 +2554,108 @@
     "title": "ALLOc : Marnac",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:33:17+02:00",
-    "issued": "2010-10-25T18:33:17+02:00"
+    "issued": "2010-10-25T18:33:17+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/17256845",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Gibily, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Rouchy, Armand",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144813_12-MARNAC1LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144813_12-MARNAC1LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H05M27S",
+        "extent_ms": 3927000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144813.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144813.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H05M27S",
+        "extent_ms": 3927000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144813_12-MARNAC1LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144813_12-MARNAC1LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT01H05M27S",
+        "extent_ms": 3927000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Marnac",
+        "http://sws.geonames.org/6429427/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Dordogne, Marnac",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-MARNAC2LEX_SOUND",
@@ -181,7 +2663,108 @@
     "title": "ALLOc : Marnac-2",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:33:43+02:00",
-    "issued": "2010-10-25T18:33:43+02:00"
+    "issued": "2010-10-25T18:33:43+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/17256845",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Gibily, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Rouchy, Armand",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144814_12-MARNAC2LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144814_12-MARNAC2LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H08M08S",
+        "extent_ms": 7688000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144814.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144814.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H08M08S",
+        "extent_ms": 7688000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144814_12-MARNAC2LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144814_12-MARNAC2LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02H08M08S",
+        "extent_ms": 7688000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Marnac",
+        "http://sws.geonames.org/6429427/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Dordogne, Marnac",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-MARNAC3LEX_SOUND",
@@ -189,7 +2772,108 @@
     "title": "ALLOc : Marnac-3",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:33:51+02:00",
-    "issued": "2010-10-25T18:33:51+02:00"
+    "issued": "2010-10-25T18:33:51+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/17256845",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Gibily, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Rouchy, Armand",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144815_12-MARNAC3LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144815_12-MARNAC3LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H56M35S",
+        "extent_ms": 6995000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144815.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144815.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H56M35S",
+        "extent_ms": 6995000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144815_12-MARNAC3LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144815_12-MARNAC3LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT01H56M35S",
+        "extent_ms": 6995000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Marnac",
+        "http://sws.geonames.org/6429427/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Dordogne, Marnac",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-MARNAC4MORPHO_SOUND",
@@ -197,7 +2881,108 @@
     "title": "ALLOc : Marnac-4",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:34:19+02:00",
-    "issued": "2010-10-25T18:34:19+02:00"
+    "issued": "2010-10-25T18:34:19+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/17256845",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Gibily, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Rouchy, Armand",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144816_12-MARNAC4MORPHO_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144816_12-MARNAC4MORPHO_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT11M23S",
+        "extent_ms": 683000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144816.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144816.wav",
+        "format": "audio/x-wav",
+        "extent": "PT11M23S",
+        "extent_ms": 683000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144816_12-MARNAC4MORPHO_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144816_12-MARNAC4MORPHO_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT11M23S",
+        "extent_ms": 683000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Marnac",
+        "http://sws.geonames.org/6429427/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Dordogne, Marnac",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-MARNAC5MORPHO_SOUND",
@@ -205,7 +2990,108 @@
     "title": "ALLOc : Marnac-5",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:35:45+02:00",
-    "issued": "2010-10-25T18:35:45+02:00"
+    "issued": "2010-10-25T18:35:45+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/17256845",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Gibily, Jeanne",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Rouchy, Armand",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "morphology",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144817_12-MARNAC5MORPHO_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144817_12-MARNAC5MORPHO_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H02M25S",
+        "extent_ms": 3745000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144817.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144817.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H02M25S",
+        "extent_ms": 3745000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144817_12-MARNAC5MORPHO_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144817_12-MARNAC5MORPHO_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT01H02M25S",
+        "extent_ms": 3745000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Marnac",
+        "http://sws.geonames.org/6429427/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Dordogne, Marnac",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-MAYRAN1LEX_SOUND",
@@ -213,7 +3099,128 @@
     "title": "ALLOc : Mayran",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:36:22+02:00",
-    "issued": "2010-10-25T18:36:22+02:00"
+    "issued": "2010-10-25T18:36:22+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Boutary Jeannette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Boutary Simon",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Lacombe Ruben",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Clément",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Léa",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Pierre",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144818_12-MAYRAN1LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144818_12-MAYRAN1LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H26M21S",
+        "extent_ms": 5181000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144818.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144818.wav",
+        "format": "audio/x-wav",
+        "extent": "PT01H26M21S",
+        "extent_ms": 5181000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144818_12-MAYRAN1LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144818_12-MAYRAN1LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT01H26M21S",
+        "extent_ms": 5181000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Mayran",
+        "http://sws.geonames.org/6426959/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Mayran",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-MAYRAN2LEX_SOUND",
@@ -221,7 +3228,128 @@
     "title": "ALLOc : Mayran",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:36:52+02:00",
-    "issued": "2010-10-25T18:36:52+02:00"
+    "issued": "2010-10-25T18:36:52+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Boutary Jeannette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Boutary Simon",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Lacombe Ruben",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Clément",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Léa",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Pierre",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144819_12-MAYRAN2LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144819_12-MAYRAN2LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H06M51S",
+        "extent_ms": 7611000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144819.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144819.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H06M51S",
+        "extent_ms": 7611000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144819_12-MAYRAN2LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144819_12-MAYRAN2LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02H06M51S",
+        "extent_ms": 7611000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Mayran",
+        "http://sws.geonames.org/6426959/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Mayran",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-MAYRAN3LEX_SOUND",
@@ -229,7 +3357,128 @@
     "title": "ALLOc : Mayran-3",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:36:54+02:00",
-    "issued": "2010-10-25T18:36:54+02:00"
+    "issued": "2010-10-25T18:36:54+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Boutary Jeannette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Boutary Simon",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Lacombe Ruben",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Clément",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Léa",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Pierre",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144820_12-MAYRAN3LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144820_12-MAYRAN3LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H06M57S",
+        "extent_ms": 7617000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144820.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144820.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H06M57S",
+        "extent_ms": 7617000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144820_12-MAYRAN3LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144820_12-MAYRAN3LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02H06M57S",
+        "extent_ms": 7617000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Mayran",
+        "http://sws.geonames.org/6426959/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Mayran",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   },
   {
     "id": "11280.100/crdo-12-MAYRAN4LEX_SOUND",
@@ -237,6 +3486,127 @@
     "title": "ALLOc : Mayran-4",
     "language": "http://lexvo.org/id/iso639-3/oci",
     "modified": "2010-10-25T18:37:07+02:00",
-    "issued": "2010-10-25T18:37:07+02:00"
+    "issued": "2010-10-25T18:37:07+02:00",
+    "publishers": [
+      "Équipe de Recherche en Syntaxe et Sémantique",
+      "Bases, corpus, langage"
+    ],
+    "contributors": [
+      {
+        "name": "LDOR",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Thésaurus Occitan",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/depositor"
+      },
+      {
+        "name": "Équipe de Recherche en Syntaxe et Sémantique",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": "Bases, corpus, langage",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/editor"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/interviewer"
+      },
+      {
+        "name": null,
+        "url": "http://viaf.org/viaf/91792187",
+        "role": "http://www.language-archives.org/OLAC/1.1/researcher"
+      },
+      {
+        "name": "Boutary Jeannette",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Boutary Simon",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Lacombe Ruben",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Clément",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Léa",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      },
+      {
+        "name": "Solignac Pierre",
+        "url": null,
+        "role": "http://www.language-archives.org/OLAC/1.1/speaker"
+      }
+    ],
+    "subjects": [
+      {
+        "value": "lexicography",
+        "datatype": "http://www.language-archives.org/OLAC/1.1/linguistic-field",
+        "lang": null
+      },
+      "http://lexvo.org/id/iso639-3/oci",
+      {
+        "value": "Occitan/Languedocien",
+        "datatype": null,
+        "lang": "fr"
+      }
+    ],
+    "transcript": null,
+    "mediaArray": {
+      "http://cocoon.huma-num.fr/data/archi/144821_12-MAYRAN4LEX_22km.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/144821_12-MAYRAN4LEX_22km.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H06M55S",
+        "extent_ms": 7615000,
+        "master": false
+      },
+      "http://cocoon.huma-num.fr/data/archi/masters/144821.wav": {
+        "url": "http://cocoon.huma-num.fr/data/archi/masters/144821.wav",
+        "format": "audio/x-wav",
+        "extent": "PT02H06M55S",
+        "extent_ms": 7615000,
+        "master": true
+      },
+      "http://cocoon.huma-num.fr/data/archi/mp3/144821_12-MAYRAN4LEX_44k.mp3": {
+        "url": "http://cocoon.huma-num.fr/data/archi/mp3/144821_12-MAYRAN4LEX_44k.mp3",
+        "format": "audio/mpeg",
+        "extent": "PT02H06M55S",
+        "extent_ms": 7615000,
+        "master": false
+      }
+    },
+    "geoInfo": {
+      "ref-locs": [
+        "http://fr.dbpedia.org/resource/Mayran",
+        "http://sws.geonames.org/6426959/"
+      ],
+      "notes": [
+        {
+          "value": "FR",
+          "datatype": "http://purl.org/dc/terms/ISO3166",
+          "lang": null
+        },
+        {
+          "value": "France, Aveyron, Mayran",
+          "datatype": null,
+          "lang": "fr"
+        }
+      ]
+    }
   }
 ];
\ No newline at end of file
--- a/server/bo_client/server/index.js	Tue Jun 07 01:11:44 2016 +0200
+++ b/server/bo_client/server/index.js	Tue Jun 07 01:16:31 2016 +0200
@@ -10,15 +10,15 @@
 // };
 
 module.exports = function(app) {
-  var globSync   = require('glob').sync;
-  var mocks      = globSync('./mocks/**/*.js', { cwd: __dirname }).map(require);
-  var proxies    = globSync('./proxies/**/*.js', { cwd: __dirname }).map(require);
+    var globSync   = require('glob').sync;
+    var mocks      = globSync('./mocks/**/*.js', { cwd: __dirname }).map(require);
+    var proxies    = globSync('./proxies/**/*.js', { cwd: __dirname }).map(require);
 
-  // Log proxy requests
-  var morgan  = require('morgan');
-  app.use(morgan('dev'));
+    // Log proxy requests
+    var morgan  = require('morgan');
+    app.use(morgan('dev'));
 
-  mocks.forEach(function(route) { route(app); });
-  proxies.forEach(function(route) { route(app); });
+    mocks.forEach(function(route) { route(app); });
+    proxies.forEach(function(route) { route(app); });
 
 };
--- a/server/bo_client/server/mocks/documents.js	Tue Jun 07 01:11:44 2016 +0200
+++ b/server/bo_client/server/mocks/documents.js	Tue Jun 07 01:16:31 2016 +0200
@@ -1,46 +1,51 @@
 module.exports = function(app) {
-  var express = require('express');
-  var _ = require('lodash');
+    var express = require('express');
+    var _ = require('lodash');
 
-  var documentsRouter = express.Router();
-
-
-  var documentList = require('../fixtures/documents');
-  var detailsDocumentList = require('../fixtures/details_documents');
+    var documentsRouter = express.Router();
 
 
-  documentsRouter.get('/', function(req, res) {
-    res.send({
-      'documents': documentList,
-    });
-  });
+    var documentList = require('../fixtures/documents');
 
-  documentsRouter.post('/', function(req, res) {
-    res.status(201).end();
-  });
+    documentsRouter.get('/', function(req, res) {
+        res.send({'documents': _.map(documentList, function(doc) {
+            return {
+                'id': doc.id,
+                'uri': doc.uri,
+                'title': doc.title,
+                'language': doc.language,
+                'modified': doc.modified,
+                'issued': doc.issued
+            };
+        })});
+    });
 
-  documentsRouter.get('/:id', function(req, res) {
+    documentsRouter.post('/', function(req, res) {
+        res.status(201).end();
+    });
+
+    documentsRouter.get('/:id', function(req, res) {
 
-    var docRes = _.find(detailsDocumentList, 'id', req.params.id);
-    if(docRes) {
-      res.send({'document': docRes});
-    } else {
-      res.status(404).send('Not found');
-    }
+        var docRes = _.find(documentList, 'id', req.params.id);
+        if(docRes) {
+            res.send({'document': docRes});
+        } else {
+            res.status(404).send('Not found');
+        }
 
-  });
+    });
 
-  documentsRouter.put('/:id', function(req, res) {
-    res.send({
-      'document': {
-        id: req.params.id
-      }
+    documentsRouter.put('/:id', function(req, res) {
+        res.send({
+            'document': {
+                id: req.params.id
+            }
+        });
     });
-  });
 
-  documentsRouter.delete('/:id', function(req, res) {
-    res.status(204).end();
-  });
+    documentsRouter.delete('/:id', function(req, res) {
+        res.status(204).end();
+    });
 
-  app.use('/api/v1/documents', documentsRouter);
+    app.use('/api/v1/documents', documentsRouter);
 };